1
I’m making an app where I create the forms from database data, but nothing is appearing on my phone can only view in AVD, how do I release it?
1
I’m making an app where I create the forms from database data, but nothing is appearing on my phone can only view in AVD, how do I release it?
1
For applications in debug mode and rootless you can follow the commands to extract the AVD database:
adb shell "run-as com.app chmod 666 /data/data/com.app/databases/data.db"
adb pull /data/data/com.app/databases/data.db
Replace com.app according to the path of your application you set when creating the project.
References:
https://stackoverflow.com/questions/9997976/android-pulling-sqlite-database-android-device
Browser other questions tagged android sqlite avd
You are not signed in. Login or sign up in order to post.
Do you want access to your mobile bank? @daniel12345smith
– Wellington Avelino
Yes. Because without the root user, I am not able to display queries result, hence I am searching if I can release the database of a particular app at least.
– daniel12345smith
I answered a question of yours these days which is practically the same thing http://answall.com/a/73521/10315. Today if you have a while I see if I can play the backup in the bank without using root on mobile @daniel12345smith
– Wellington Avelino