Location of the .db file on different Android phones

when we use the sqlLite database for our projects, the path to the .db file is /data/data/com.yourpackage.name/databases. stays the same for every Android phone. or does the .db file storage path differ on Android phones?

+5
source share
1 answer

It does not matter. You will learn the path to the application database throughgetDatabasePath() , which will be resolved to the right place for a particular device.

+5
source

All Articles