Google I/O 2019 is the current talk of the town, as everyone looks to dive deeper into all the announcements that Google made across its product and service portfolio. At the event, we got introduced to Android Q Beta 3 with changes and features like dark mode, new navigation gestures, improvements to Digital Wellbeing, notification channel suggestions, Project Mainline for quicker security updates, Bubbles, Live Caption, and so much more. These announcements just scratch the surface, as more interesting tidbits are to be found within the new resources that Google has revealed at the event. For instance, Google is now testing a car crash detection functionality for its Pixel devices.

An APK teardown can often predict features that may arrive in a future update of an application, but it is possible that any of the features we mention here may not make it in a future release. This is because these features are currently unimplemented in the live build and may be pulled at any time by Google in a future build.

Android Q Beta 3 features a new Google app called "Safety Hub" with the package name com.google.android.apps.safetyhub. The functionality from this app is Pixel-exclusive, as is made evident with the Manifest declaration:

        <uses-feature android:name="com.google.android.feature.PIXEL_EXPERIENCE" android:required="true"/>
    

Strings present within the app hint that Google is working on a feature that will detect when you are in a car crash:

        <string name="car_crash_alert_icon_description">Car crash icon</string>
<string name="car_crash_detection_dogfood_title_text">Car Crash Detection Dogfood</string>
<string name="car_crash_dogfood_app_name">Car Crash Dogfood</string>
<string name="car_crash_permission_preference_title">@string/car_crash_permissions_menu_item_text</string>
<string name="car_crash_permissions_menu_item_text">Car Crash Dogfood Permissions</string>
<string name="dogfood_welcome_text">\u0009Welcome to the car crash detection dogfood.

There are two graphic assets also included within the app for this feature:

While the strings hint towards automatic detection of a car crash, it is unclear how exactly such detection would be achieved. Google could resort to using data from the accelerometer and the microphone, but even this may not be fool-proof with its detection. The strings also do not reveal what happens once a crash is detected -- we're guessing the app could alert first responders or the listed emergency contacts on the phone. Hopefully, future Q Betas reveal more information on how this app would work and what it would do.


Thanks to XDA's Editor-in-chief Mishaal Rahman for finding this.

Thanks to PNF Software for providing us a license to use Decompiler, a professional-grade reverse engineering tool for Android applications.