I am making an app where I create the forms from the database, but nothing is appearing on my phone, I can only see it in AVD, how do I release it?
I am making an app where I create the forms from the database, but nothing is appearing on my phone, I can only see it in AVD, how do I release it?
For debug-mode and rootless applications 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 that you set when creating the project.
References: