0

I can't find my test.db in the file manager in DDMS. Does someone know when we create a database, where it's installed ?

Gabriele Petrioli
  • 183,160
  • 33
  • 252
  • 304
Tsunaze
  • 3,144
  • 7
  • 43
  • 81

2 Answers2

1

If you are using a non-developer (or non-rooted) android device, the database will not be visible to you in DDMS. It's only visible to the parent application, as each application on android runs as a separate linux process.

However, if you are using the emulator or a developer/rooted device, the database file should be in /data/data/<package_name>/databases/ (link).

Igor
  • 787
  • 2
  • 8
  • 21
0
/data/data/package_name/databases

Taken from here

Community
  • 1
  • 1
blindstuff
  • 18,030
  • 10
  • 46
  • 47