How to find the path to the database file in Android Emulator?

I am executing some SQL query in Android emulator. I want to know which path are stored in database files. Pls give me some idea on how to find it. If u can provide me a piece of code.

Urs, s.kumaran.

+4
source share
2 answers

Databases are usually stored in

/data/data/your.applications.package/databases 

and you can use adb shell to cd in this directory and open db with sqlite3 .

+10
source

Name of your project \ app \ build \ intermediates \ assets \ debug Or: Project name \ application \ src \ main \ assets

+1
source

All Articles