Get SQLite database from Android app

android, sqlite

Solution

Steps from .../platform-tools of Android on cmd:

1) type `adb shell`

2) `run-as` com.your.package

3) type `ls`

cache

databases

lib

You can find Your `Database` Here...Also You didn't even have to `root` the Device

Hope this could helpful for you...

Problem

I need get SQLite database from Android app from Genesis device where user has populated by hand. How I can create another app or any other way to get this db and save in place where I can get? obs.: the device has root Thanks

Original source