Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to protect the folder with password?

Is there a way to programmatically protect the folder with password in Android ?

like image 444
zawhtut Avatar asked Sep 17 '10 09:09

zawhtut


1 Answers

By default, files saved to the internal storage are private to your application and other applications cannot access them (nor can the user).

http://developer.android.com/guide/topics/data/data-storage.html#filesInternal

like image 102
Jelmer Avatar answered Oct 11 '22 22:10

Jelmer