以普通用户登录linux,然后运行adb devices会提示权限不够: List of devices attached ???????????? no permissions 这是因为访问adb 设备需要root 权限. 解决方法一:在每次使用的时候运行 sudo adb devices,缺点太明显,每次都需要手动输入密码 解决方法二:为adb 设置权限,利用文件的set-user-id属性来解决这个问题,具体步骤为 which adb cd adb_path(我
开启User模式adb,取消授权,修改如下: 1. /build/core/main.mk 修改以下内容 ifeq (true,$(strip $(enable_target_debugging))) # Target is more debuggable and adbd is on by default ADDITIONAL_DEFAULT_PROPERTIES += ro.debuggable=1 # Include the debugging/testing OTA keys in t