Conversation

I’ve never coded for android but dream in Linux ... How is it that android (based on Linux) does not run each app as a underprivileged user and set β€˜owner only read’ permissions on files it writes to external storage??? This seems bloody obvious and relatively easy to implement.
2
> set β€˜owner only read’ permissions on files it writes to external storage The usual storage location for apps is in their internal app sandbox. External means outside of the app sandbox and requesting access to external storage is a legacy approach to sharing data between apps.
1
2
Show replies