摘要: #### 1. 查看设备 > adb device #### 2. 安装APK > adb install 包名 # 可加入-t/-d/-r等参数 #### 3. 卸载APK > adb uninstall 包名 #### 4. 进入shell > adb shell #### 5. 清理APK缓存 阅读全文
posted @ 2022-08-02 11:49 First_ove 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 1. 查看设备 adb device 2. 安装APK adb install 包名 3. 卸载APK adb uninstall 包名 4. 进入shell adb shell 5. 清理APK缓存 adb shell pm clear 包名 6. 停止进程 adb shell am force- 阅读全文
posted @ 2022-08-02 11:46 First_ove 阅读(83) 评论(0) 推荐(0) 编辑