I need to view my SQLite db but I don't know how to do it. I've gone to http://www.sqlite.org/download.html and downloaded the command line shell for my OS, but when I run the program and type adb ...
I get errors.
Note: I'm using Android Studio so I'm assuming I don't need to install anything extra because I recall Android Studio said it had all the SDK tools needed.
You can use a very nice tool called
Stetho
by adding this tobuild.gradle
file:And initialized it inside your
Application
orActivity
onCreate()
method:Then you can view the db records in chrome in the address:
For more details you can read my post: How to view easily your db records