吾生也有涯,而知也无涯。这篇文章主要讲述android 使用系统级别权限相关的知识,希望能为你提供帮助。
java.lang.SecurityException: Neither user 10027 nor current process has android.permission.MODIFY_PHONE_STATE
1、root手机,奇兔刷机助手
2、将app拷贝至/system/priv-app目录下
【android 使用系统级别权限】3、重启手机
附:
/**
* 应用程序运行命令获取 Root权限,设备必须已破解(获得ROOT权限)
*
* @return 应用程序是/否获取Root权限
*/
public static boolean upgradeRootPermission(String pkgCodePath) {
Process process = null;
DataOutputStream os = null;
try {
String cmd = "chmod 777 " + pkgCodePath;
process = Runtime.getRuntime().exec("su"); //切换到root帐号
os = new DataOutputStream(process.getOutputStream());
os.writeBytes(cmd + "\n");
os.writeBytes("exit\n");
os.flush();
process.waitFor();
} catch (Exception e) {
return false;
} finally {
try {
if (os != null) {
os.close();
}
process.destroy();
} catch (Exception e) {
}
}
return true;
}
推荐阅读
- 搭建Eclipse+ADT+Android SDK 安卓开发环境
- 安卓7.1 新特性Shortcut
- Android群英传笔记系列一view的介绍
- Android 进程通信机制之 AIDL
- Android单元测试与模拟测试详解
- 安卓 代码混淆与打包
- Android中JNI的使用方法
- Android平台安全概念篇
- Android activity和service的生命周期对比