Android SDK(模拟器)上的Root访问权限

时间:2011-12-08 02:20:24

标签: android sdk emulation

我在模拟器上安装了SQLite编辑器应用程序,但它显示了;该应用程序没有root权限。尝试像SuperUser这样的应用程序提供root访问权限无法做同样的事情。

从仿真器本身获取root访问权限的最佳方法是什么?请发布分步流程以获取Android SDK上的root访问权限。

1 个答案:

答案 0 :(得分:3)

使用已经在模拟器上提供root访问权限的shell:

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

AFAIK,您无法通过安装Superuser.apk给模拟器上的应用程序超级用户访问权限。