All what we need is to make few steps:
- Add in our project this line to output in log current path to database
Log.d(TAG, "onCreate db: " + context.getDatabasePath("mydatabase.db")); - Create simple batch command to pull database (afik root is no needed)
adb pull "/data/data/com.example.app/databases/mydatabase.db" mydatabase_%date%.db.sqlite
- Download SQLiteManager to firefox, run it, open our sqlite database
Good luck!
