我正在开发一个应用程序,我使用 sqllite3 数据库来存储值。我有 Nexus S 和 Nexus 7 都是无根设备。如何获取我的应用程序的数据库以进行调试。
我试过(1)我试过这里提到的所有方法
adb shell
run-as app.package.name \
cp /data/data/package.name/databases/application.sqlite /sdcard/
exit
adb pull /sdcard/application.sqlite ~/
这说cp没有找到..
(2) http://developer.android.com/tools/help/adb.html#sqlite
adb -s emulator-5554 shell
# sqlite3 /data/data/com.example.google.rss.rssexample/databases/rssitems.db
SQLite version 3.3.12
Enter ".help" for instructions
.... enter commands, then quit...
sqlite> .exit