2011-12-08 66 views
1

我已经在模拟器上安装了SQLite Editor应用程序,但它显示出来;应用程序没有root权限。尝试像超级用户这样的应用程序来提供root访问权限,bur无法做到这一点。Android SDK上的根访问(模拟器)

从模拟器本身获得root权限的最佳方式是什么?请发布一步一步的流程以获得Android SDK的根访问权限。

+0

这个答案确实在仿真器2.3上工作[链接](http://stackoverflow.com/questions/5095234/how-to-get-root-access-on-android-emulator) – shareef

回答

2

使用的shell,已经让你在模拟器上的root访问权限:

(on your computer) 
$ adb -e shell 
$ cd /data/data/org.myapp/databases 
$ sqlite3 mydb.db 

AFAIK,你不能给通过安装Superuser.apk给在仿真器上应用程序的超级用户访问。