I explicitly set my app debuggable to true in the AndroidManifest.xml
and deployed it to my device through eclipse
, but I still get the
run-as: Package 'com.mypackage' is not debuggable
when I run the command:
adb -d shell 'run-as com.mypackage cat /data/data/com.mypackage/databases/mydb.db > /sdcard/mydb.db'
What do I need to change to be able to debug my application?