1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

adb-install: update Chinese translation (#8516)

This commit is contained in:
Ethan Liu 2022-09-26 13:40:55 +08:00 committed by GitHub
parent ba109d5d30
commit 05e4c3e4d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,10 +7,18 @@
`adb install {{路径/到/应用.apk}}` `adb install {{路径/到/应用.apk}}`
- 向特定的模拟器/设备推送安卓 app(覆盖 `$ANDROID_SERIAL`):
`adb -s {{序列号}} install {{路径/到/应用.apk}}`
- 重装 app, 保持原有数据: - 重装 app, 保持原有数据:
`adb install -r {{路径/到/应用.apk}}` `adb install -r {{路径/到/应用.apk}}`
- 推送一个允许版本代码降级的安卓 app(仅适用于可调试的软件包):
`adb install -d {{路径/到/应用.apk}}`
- 授予 app manifest 中列举的所有权限许可: - 授予 app manifest 中列举的所有权限许可:
`adb install -g {{路径/到/应用.apk}}` `adb install -g {{路径/到/应用.apk}}`