已Root的Android手机依然无法在DDMS里的File Explorer中访问data目录的解决方案

一些设备上即时已经root了,也无法正常的访问/data/data目录,因为原生(设备制造商的)内核,一般会让adb以“安全”模式来运行,即使已经ROOT。
有一款adbd Insecure 的应用能够解决这个问题,此软件在google play上是付费软件,但是这里提供了免费的版本下载。 http://forum.xda-developers.com/showthread.php?t=1687590

在没有安装adbd Insecure的机器上,使用adb root
C:\Users\hero>adb root
adbd cannot run as root in production builds
在没有安装adbd Insecure的机器上,使用adb shell su
C:\Users\hero>adb shell
$ su
su
Permission denied
$
安装adbd Insecure并启用adbd后
C:\Users\hero>adb root
adbd is already running as root
使用adb shell查看data目录
C:\Users\hero>adb shell
root @android :/ # su
su
root @android :/ # cd /data/data
cd /data/data
root @android :/data/data # ls
ls
com.alawar.treasuresofmontezuma3
com.android.JrdSdcardUpgrade
com.android.backupconfirm
...

你可能感兴趣的:(android,shell,sdk)