Reputation: 6296
I'm creating an app for android and would like to show some pictures to my users. Pictures may change in number and names so I want to be able to get a listing of the files and the file content but without authorizing the user/app. I have been playing with this a bit without any luck. Is there any way to do this making the folder public or something?.
Thanks in advance.
Upvotes: 0
Views: 253
Reputation: 41657
If the folder is not public, there is no way you can view it or list it without authorizing. This is the whole purpose of the permission system.
Authorization on Android is pretty easy though, please check the Android quickstart for more details.
Upvotes: 1