java - How does Dropbox app access my app-cache? (Android) -
I'm trying to implement a "share image" button in my Android app. Since the image can be private to the user, I did not want to save it publicly on the device, so I chose to use the cache.
Before I understood that the cache directory can only be accessed by the owner app, I found that sharing the image to Dropbox works fine (whereas other apps throw exceptions) The dropbox accesses the file that is located in my app cache? My share-bitmap method (exception handling is stripped): I think that's because it has specific permissions: I also find that this permission will allow a child of
System tool tests test for protected storage
WRITE_EXTERNAL_STORAGE is.
Comments
Post a Comment