when we use sqlLite database for our projects does the path of .db file /data/data/com.yourpackage.name/databases. remains the same for each and every android phone??
or path of storage of .db file differ in android phones?
when we use sqlLite database for our projects does the path of .db file
Share
It does not matter. You find out the path for your app’s database via
getDatabasePath(), which will resolve to the correct spot for the particular device.