Can android photo apps see all my photos? - Stack Overflow

All photo apps require permission to photos, to work properly.Does this mean a malicious developer can

All photo apps require permission to photos, to work properly. Does this mean a malicious developer can upload users' photos to cloud, so he can see? If that is possible, what prevents him from doing so?

All photo apps require permission to photos, to work properly. Does this mean a malicious developer can upload users' photos to cloud, so he can see? If that is possible, what prevents him from doing so?

Share Improve this question asked Jan 29 at 13:56 newnew 3871 gold badge3 silver badges14 bronze badges 1
  • 1 Security is enhanced now, but technically yes, if users provide all the permissions. – Samudra Ganguly Commented Jan 29 at 16:50
Add a comment  | 

1 Answer 1

Reset to default 1

Typically, the Android permission model requires developers to declare the permissions their apps need in the AndroidManifest.xml file. For accessing photos, these are used:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

Users must explicitly grant these permissions in Google Play Store during installation. Furthermore, from API 23 (Android 6.0) permissions can be also requested at runtime. This means users can make informed decisions about granting permissions based on the app's current context.
Since you're particularly interested in photos, there is another interesting security feature dedicated especially to images: from API 34 (Android 14) Android apps can use a new permission:

<uses-permission android:name="android.permission.READ_MEDIA_VISUAL_USER_SELECTED"/>

This allows users to pick specific photo/video directories rather than the entire library. Modern photo apps' developers are encouraged by Google to implement it (read more here).

The Android OS itself includes security features, such as Google Play Protect which scans apps after install for malicious code (read more here).
And last but not least: every developer must provide a privacy policy if they want to publish their permission-greedy app on Google Play.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745293445a4621000.html

相关推荐

  • Can android photo apps see all my photos? - Stack Overflow

    All photo apps require permission to photos, to work properly.Does this mean a malicious developer can

    9小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信