android root

添加 Android root 支持,这里指的是应用程序可以获得 root 。而不是终端可以获取 root。

资源:

首先系统需要 su 程序,因为应用都是通过执行 su 提高自己的权限,然后需要通知系统获取 root

需要 superuser apk : https://github.com/koush/Superuser

测试发现这个应用无法在 4.2 里面编译,采用 cm 10.1 里面的可以正确编译:

https://github.com/CyanogenMod/Superuser

注意 su 的权限位,必须添加 s 位的支持:


1
2
jxdong@ubuntu-server: /media/android/jiangxd/workspace/Miura/code/update ls  -l  /home/Atmel_android/nfs/root-hl/system/xbin/su
-rwsr-sr-x 1 root root 365292 Aug  8 09:32  /home/Atmel_android/nfs/root-hl/system/xbin/su


还有一种可以集成 root 到 Settings 的方法,参看 https://github.com/koush/Superuser 的 Readme


你可能感兴趣的:(android)