Whatever is the android version, the path where a sqlite db is saved is always the same (/data/data/pack.name/databases/nameDb)?
If not, there’s a way to save the entire db on a different location?
thanks in advance!
Whatever is the android version, the path where a sqlite db is saved is
Share
Yes, you can choose where databases should be created, look at openOrCreate methods. You can pass path into this method
But when your db inside
/data/data/pack.name/databases/the Android system deals with security issues themselves and your db visible only for your app. Be carefull if you want to store your db on sdcard or at any other place.