I developed and install an android application which create a sqlite database. If I uninstall this app the database will be automatically dropped?
|
|
YES.... Edit Suppose you want to store some value in Database(SQLite), For this you need to create one java class like |
||||
|
|
|
The database is a file in private storage ( /data/data/{package.name}/databases/db.file ) when you uninstall an app the /data/data/{package.name}/ is deleted, either the user associated to the app is. |
|||
|
|
|
I think so, database will be dropped with all files in your app's private folder :) |
|||
|
|