Files
dnake/docs/src/pages/adb.mdx
2025-10-19 15:36:50 +08:00

36 lines
418 B
Plaintext

## ADB
这是关于 Android Debug Bridge 的文档。
### 常用命令
```bash
adb devices
```
### 安装应用
```bash
adb install app.apk
```
### 查看设备信息
```bash
adb shell getprop ro.product.model
```
### 暴露tcp 5555 端口
```bash
adb tcpip 5555
```
### 链接具体地址的 5555 端口
```bash
adb connect <ip_address>:5555
```
### 断开连接
```bash
adb disconnect <ip_address>:5555
```