Sid’s Blog

(life => life.make_it_better)

Where is SQLiteDatabase stored in a Android application?

| Comments

Recently I published an article to help my friend to understand how to store data using SQLiteDatabase in Android application.

I’m using Android Studio as my IDE. To view database, follow the steps below:

- Run your application either in emulator or physical device.
- In Android Studio, go to `Tools > Android > Android Device Monitor`. This will open in a separate window.
- Select your choice of device at the left side of window.
- Now select `File Explorer` tab from the right side of window.
- Inside the details area of tab, navigate to `data > data > {your app package name} > databases > {your database name}`

Comments