How can I pull databases off my android onto my desktop?

前端 未结 3 2047
予麋鹿
予麋鹿 2020-12-28 23:45

I\'m trying this with my Nexus One. I have the android SDK and have used the command adb pull /data/data/com.myapp.android/databases C:\\pulls but all I get is pull: build

3条回答
  •  北海茫月
    2020-12-29 00:03

    Create a "pull.bat" file in your windows desktop.

    In the file put:

    db pull /data/com.APPNAME/databases/DBNAME.sqlite
    pause
    

提交回复
热议问题