• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

What permission should be declared in app manifest?

James_Watson

Android Enthusiast
You know, as developers, we should declare READ_EXTERNAL_STORAGE permission in manifest file if we want an app to read files from SD card.
But, if I hope an app can enable users to browse and select a file from internal storage/Pictures folder when running, what permission should I declare in manifest then?

Thank you in advance.
 
There's no permission needed to allow an app to access internal storage. Every app has its own internal storage area, and can access this by default, but nothing outside this area.
 
There's no permission needed to allow an app to access internal storage. Every app has its own internal storage area, and can access this by default, but nothing outside this area.
Thanks for your reply.
If so, is it impossible for my app to read folders, such as \Pictures, \Downloads,...and so on, which are other than its private data folder, in internal storage? :oops:
 
Thanks for your reply.
If so, is it impossible for my app to read folders, such as \Pictures, \Downloads,...and so on, which are other than its private data folder, in internal storage? :oops:

To read from those folders, your phone would need to be rooted.
 
Back
Top Bottom