简体   繁体   中英

How to protect my app files being read/ write by other apps, in non-root device?

I was wondering, what is a good way, to prevent my app files from being read/ write to other apps, in non-root devices

Currently, I'm storing my data (images, audio, ...) in getExternalFilesDir

But, some of my users complain that, they are still able to see images in 3rd party gallery app.

I am not sure whether they are using root phone. So far, I cannot access my app getExternalFilesDir from Google Photo app.

Based on https://developer.android.com/training/data-storage , it seems that only getFilesDir will prevent other apps from accessing the files.

But, is it appropriate for an app to store user data file in getFilesDir ? (My app is a note taking app which needs to store user attachment images, audio, ...)

From discussion of Android getExternalFilesDir vs getFilesDir() for big files , it seems like getFilesDir is not designed to store user data files?

I was wondering, what is a good way, to prevent my app files from being read/ write to other apps, in non-root devices

Store your data in internal storage (mostly getFilesDir() and getCacheDir() ).

Currently, I'm storing my data (images, audio, ...) in getExternalFilesDir

The only reason to use that location is if you want the user to be able to use your content from outside of your app, whether via other apps or via an attached desktop computer.

In the long term, getExternalFilesDir() and getExternalCacheDir() will be off-limits to other apps — you will start seeing this on Android 11 in particular. However, it will take years for Android 11+ to dominate the Android device ecosystem.

But, some of my users complain that, they are still able to see images in 3rd party gallery app.

Such apps might be augmenting the MediaStore by scanning external storage for images.

But, is it appropriate for an app to store user data file in getFilesDir?

Yes. Everything should be in internal storage, unless there is a specific need for the user to be able to use the content outside of your app. Internal storage should be your default choice, with external storage or the Storage Access Framework being explicit choices made to go against that default.

From discussion of Android getExternalFilesDir vs getFilesDir() for big files, it seems like getFilesDir is not designed to store user data files?

Um, no.

A decade ago, internal storage and external storage were separate partitions, in part because external storage typically was implemented as removable storage (micro SD card). Since Android 3.0 in 2011, though, internal storage and external storage are almost always separate directories on the same partition. The primary distinction between the two is what processes could access the files, with your portion of internal storage being locked down to just your app, and external storage being accessible by anything.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM