I make an application which cannot run in emulator. So I use android debugging mode or live running. It is running well on my device. and in that application, I create a database for user login. I want to see the data on my database. I mean I want get the database file, and access using a tools like sqlite manager to see the inside. the question is, how to get the database file?
Generally, if I using emulator, it places in data/data/com.package/databases/namedatabase(.db or without it).But when I connect my device in pc and running it, actually there are 3 directories, data, mnt, and system. When I was try to check the subdirectories of data, it is none. There is not any directory in it. so I can't get the database file.
I use eclipse.