Sqlite browser for Android development
Get the SQLite DB file from Android studio
Below android studio 3.5
Tool window bar -> "
Device File explorer
"
Above Android 3.5
You can find "Device File Explorer" in the bottom right corner of the screen
open directory in
data/data/your-application-package/databases
In the new architecture, 3 files are created in the databases directory
database-namedatabase-name-shmdatabase-name-wal
You have to export all these 3 files in the same directory then open the first one file (that is with database-name only ) in any SQLite browser.
Offline SQLite browser
Download DB Browser for SQLite free software for as per your operating system then open the "DB Browser for SQLite.exe" executable file
You can import the database file and view the data as per the below sample screenshot
Download: https://sqlitebrowser.org/dl/
Stetho tool for Android debugging
http://gmariotti.blogspot.com/2015/07/a-first-glance-at-stetho-tool.html
Comments
Post a Comment