"All databases, SQLite and others, are stored on the device in / data / data / package _name / databases." here
You can use android Explorer to view / pull the file from the device.
1) You specified any path during the creation / opening of the database.
In my case, I used SQLiteDatabase.openOrCreateDatabase to create the database, and this requires the database path as the first parameter.
SQLiteDatabase sqldb = SQLiteDatabase.openOrCreateDatabase ( DATABASE_PATH + DATABASE_NAME , null);
2) If you use something like this
openOrCreateDatabase ("test.db", this.MODE_APPEND, null);
Your database will be in / data / data / package_name / databases
source share