How to access data/data folder in Android device?

来源:互联网 发布:网络营销 seo 编辑:程序博客网 时间:2024/06/08 11:53

1.Without rooting you have 2 options:


If the application is debuggable you can use the run-as command in adb shell


adb shell
run-as com.your.packagename 

cp /data/data/com.your.pacakagename/
You can use Android's backup function.

adb backup -noapk com.your.packagename

http://stackoverflow.com/questions/7877891/sqlite3-not-found
0 0