I am designing one Custom library, in that library to store the confidential data. For storing the data i have 2 options.
1) shared preferences.
2) Sqlite3 database.
If , i use SharedPreferences
with MODE_PRIVATE
. It can be accessed by the application developers those who are use my library.
Second option is Sqlite3 Database, Here i can store but still data can be used by the application developers by adding my library.
SO, i been looking for the answers that, Do we have option for setting password for the Database in Android.If yes please guide..
Thank you in advance for the answers.