SQLite db error for Android

I am trying to get db out of my application, but I keep getting this error in eclipse-> DDMS-> FileExplorer

[2014-08-07 12:53:03 - ddms] transfer error: Permission denied
[2014-08-07 12:53:03] Failed to pull selection: Permission denied

I tried to do this from CMD using this command

C:\Android\sdk\platform-tools>adb -d shell
shell@android:/ $ run-as com.iqpandroid
run-as com.iqpandroid
run-as: Package 'com.iqpandroid' has corrupt installation

as you can see the message that the installation has the current installation. Can anyone help?

+4
source share
2 answers

As far as I know, you will need root access.

From terminal:

adb shell
su
chmod -R 777 /data/data/com.your.package
+2
source

Run this command from the terminal:

adb root - restarts the adb daemon as root

+4
source

All Articles