How to see the Android application running on my phone

I install and run the Android application on my phone, and for some testing purposes, I want to see the databases of my application that is on my phone. now my question is how to get these databases and tables ???? please reply in advance thanks .....

+4
source share
2 answers

To view the contents of your local database, you need to download software called Sqlite Studio: http://sqlitestudio.one.pl/

1.) Download and install Sqlite Studio on your computer.

2.) Connect the phone to the computer, make sure that you enable USB debugging. USB debugging can be activated using Settings β†’ Applications β†’ USB Debugging (or Settings β†’ Developer Options β†’ USB Debugging if you use an ice cream sandwich).

3.) Open the DDMS view in Eclipse and open the Explorer tab in DDMS, and then go to the database β†’ data β†’ (your-name-of-application) β†’. Now pull the data file from the database folder to your computer.

4.) Open Sqlite Studio and import the data file that you just pulled from your Android phone.

5.) Browse the contents of your database!

Hope this helps. Feel free to check if you understand!

+8
source

The steps described by Vishwa are correct if we run the emulator. But for real devices, we don’t have access to the data folder using DDMS. To view the data folder on an Android phone, you must have a phone with root access. This means that you have a developer device (ADP1 or ION from Google I / O), or you find the root method of your phone differently.

+4
source

All Articles