How To See SQLite Database in my Chrome / Firefox Browser?

Viewed 3405

I am Using SQLite database in my Android App. I want to See the database in my chrome or Firefox browser .

To See the Database , normally i Open Logcat in android Studio and select verbose and write http in serach box then it provides me a Link to Open Database in my browser

Like : D/DebugDB: Open http://192.168.2.116:8083 in your browser

But in my new project it is not showing the link . What should i do?

3 Answers

you need to use Stetho library, which will show you your db via ur browser. you can track network request as well. see this here -> Stetho

Related