Conversation

Most developers don't care about privacy and security, especially when it comes to respecting user consent and giving them control over their information. If improving those takes any effort, they won't do it. Users will usually just authorize whatever is needed to run the app.
1
1
So, for example, Signal doesn't have this issue because it doesn't put media files in shared storage. It doesn't mean it isn't an OS issue though, because the OS shouldn't support a coarse access control model for shared data. It applies more broadly to things like contacts too.
1
1
The sad part is that it's another case where Android already supports a fine-grained alternative. Apps have the ability to request that the user take a picture, without the Camera permission. Similarly, they can request that the user pick a contact, without Contacts permissions.
1
1
In many cases, Android has 2 approaches: fine-grained access based on explicit case-by-case user consent using intents and bulk data access via permissions. Apps nearly always choose to request permissions for bulk data access. Storage, contacts, camera, etc. are all similar.
1
1
It's entirely possible to apply the Scoped Storage approach to other permissions. For example, remove the Contacts permission and instead provide a per-app contacts list. Apps using the approach of case-by-case user content for contacts would still be able to use global contacts.
2
2
developer.android.com/guide/componen is the API for taking a picture, based on the user taking a picture with their preferred camera app to share with the app. Android was designed to be used this way, but since it has the bulk access permissions, hardly anyone is going to bother with this.
1
1
Apps generally want to provide their own interface heavily integrated into the app and having the bulk access allows them to provide features that would not otherwise be possible, such as showing you a full list of your existing contacts with the same messaging app installed.
2
Similarly, with the camera, the case-by-case API for taking pictures doesn't allow defining their own user interface or features like dynamic filters / data analysis (like scanning a Snapchat ID). There are legitimate reasons to want the permission, but rarely to mandate it.
2
2
App developers won this battle. There is so little respect for privacy and user consent that users are completely unaware that there is even OS support for doing it any other way. Users aren't aware an app could support taking a picture without having the Camera permission, etc.
1
4
Show replies