AndroidStudio自带模拟器无法root的解决方案

问题:

-- 在控制台输入 adb shell 进入设备终端,然后输入 su, 发现报su命令找不到的错误
-- 直接输入adb root, 无反应,查看文件目录,依然无权限

分析问题:

模拟器的问题,当然去找谷歌问问了,经过查询发现了这句话:
	The play image has the Google Play store already installed and you can install apps, but there is no root access as it is a production build and not a debug build)
翻译过来就是:
	这是个带Google Play 商店的系统镜像,你可以安装app,但不能获取root权限,因为这是个生产版本而不是调试版本。
找到原因问题就好解决了

解决方案:

新建模拟器选择系统镜像的时候,会发现有的系统镜像Target会带有Google Play而有些不带Google Play,因此我们只需要选择不带Google Play的版本即可。

AndroidStudio自带模拟器无法root的解决方案_第1张图片

你可能感兴趣的:(安卓开发)