Android check SQLite database version via shell?
android, database, sqlite
Solution
To show the database file's user version number (which is the same as the user cookie), execute this SQL command:
PRAGMA user_version;
Problem
Following this question is there a way to check the app's current database version via adb shell? Also how do I check the `user cookie` field mentioned in the question?