in order to pull a database or other such files from a device, adb needs to use the run-as option. This gives your commands the same permissions as if the app was running them. It also allows you to run shell commands so that you can see/change your app’s Documents directory.
The problem is that the APK has to be seen as debuggable by adb. I’ve built the apk with the debug keystore, but adb fails with the error: APK is not debuggable.
Any suggestions? I am using the live-build option and would prefer not having to do a new build, as it would require uninstalling and reinstalling a new configuarion - as I am trying to track down a specific, not easily reproducible error.
thanks