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

@@ -1,6 +1,7 @@
# adb
> 安卓调试桥:与 Android 模拟器或已连接的 Android 设备通信.
> 详见: <https://developer.android.com/studio/command-line/adb>.
- 检查 adb server 进程的是否在运行,并开启它:
@@ -16,15 +17,15 @@
- 将 Android 应用程序推送到模拟器 / 设备 :
`adb install -r {{本地 APK 的路径}}`
`adb install -r {{路径/到/应用.apk}}`
- 从目标设备上拷贝一个文件 / 目录到本地:
`adb pull {{被拷贝的目标设备的文件或目录}} {{要保存到本地的文件或目录}}`
`adb pull {{路径/到/设备的文件或目录}} {{路径/到/本地上的目录}}`
- 从本地拷贝一个文件 / 目录到目标设备:
`adb push {{被拷贝的本地文件或目录}} {{要保存到目标设备的文件或目录}}`
`adb push {{路径/到/本地文件或目录}} {{路径/到/设备上的目录}}`
- 列出已连接的设备: