怎么用ADB命令为Android系统安装APK?

请先 登录 后评论

1 个回答

BBelephant

#ADB设备端切换到root权限模式

C:\Users\aston> adb root


 #重新挂载文件系统,将设备改为可读可写

C:\Users\aston> adb remount


 #安装

C:\Users\aston> adb install “apk文件路径


#重新安装

C:\Users\aston> adb install –r “apk文件路径

请先 登录 后评论