aapt to buku: add Chinese translation (#4846)

This commit is contained in:
zhouquan
2020-11-04 14:12:56 -06:00
committed by GitHub
parent 7820f75085
commit 8f73cca2e7
28 changed files with 597 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
# adb install
> 安卓调试桥-Install: 将应用安装包推送到Android模拟器或已连接的安卓设备.
> 更多信息: <https://developer.android.com/studio/command-line/adb>.
- 向模拟器/设备推送安卓app:
`adb install {{路径/到/应用.apk}}`
- 重装app, 保持原有数据:
`adb install -r {{路径/到/应用.apk}}`
- 授予app manifest中列举的所有权限许可:
`adb install -g {{路径/到/应用.apk}}`
- 快速部署模式仅更新APK更改过的部分:
`adb install --fastdeploy {{路径/到/应用.apk}}`