View BD SQLite on Android Device Monitor

1

I'm trying to view my BD Sqlite in Android Device Monitor, but in the folder data , I do not see any files to export so I can not see my DB.

What can I do wrong?

    
asked by anonymous 08.01.2016 / 23:30

1 answer

1

You can only access the contents of the Data folder if the device is a * emulator .

The BD is located at:

  

data > date > your-package-name > databases > your-database-file.

The reason why sub-directories do not appear in the Data folder is adb not having permissions to read its contents.

If you are using Android Studio 3.0 or higher use Device File Explorer. It is possible to see the entire contents of the Data folder, since the device is an emulator.

View this response and / or the documentation for more details.

Or "rooted device"

    
08.01.2016 / 23:50