Skip to content
Tech News
← Back to articles

Google is working to add more granular privacy controls to Android’s Photo Picker

read original more articles
Why This Matters

Google is working to enhance Android’s Photo Picker API by allowing users to choose whether to share location data attached to photos. This development addresses privacy concerns while supporting app functionalities that rely on location information. The update could improve user control over privacy without compromising app performance.

Key Takeaways

Mishaal Rahman / Android Authority

TL;DR Android’s Photo Picker may soon allow users to share location data attached to photos.

Currently, any photos shared through the Photo Picker UI are stripped of location data for privacy reasons.

It’s unclear when this change could make its way to developers and users.

Google introduced Android’s Photo Picker API in Android 13. The API is a privacy measure, limiting apps’ access to your photos while also stripping location data from images you do choose to share with apps. That behavior has caused headaches for niche apps that rely on photo location data to function properly. Today, we’ve seen evidence that Google’s working to make the image-sharing workflow more flexible, allowing users to opt to include location data with shared images.

Removing location data from images accessed through the Photo Picker makes sense from a privacy perspective, but not long after the API’s introduction, developers took to Google’s Issue Tracker to explain how removing location EXIF data from images interferes with their apps’ (non-invasive) intended use cases. Google said back in 2022 that it would consider the option for users to share image location data as a feature request. It looks like that change may be coming soon.

You’re reading an Authority Insights story. Authority Insights brings you all the latest exclusive reports, app teardowns, leaks, and in-depth tech coverage from the Android Authority team that you won’t find anywhere else.

Looking at the most recent update to the system Photo Picker app delivered as part of the latest Google System Services update, we spotted code that explicitly refers to sharing location data through the Photo Picker interface:

Code Copy Text <string name="photopicker_location_include">Include location</string> <string name="photopicker_location_enabled_description">Location sharing enabled</string>

Code Copy Text <string name="photopicker_location_dont_include">"Don't include"</string> <string name="photopicker_location_disabled_description">Location sharing disabled</string>

... continue reading