1. ターゲットdevice(Android端末)とホストPCをUSBで接続する
2. deviceとの接続を確認する
1 2 3 4 5 |
$ adb devices * daemon not running. starting it now on port 5037 * * daemon started successfully * List of devices attached CB5A1Qxxxx device |
3. adbをTCP/IPモードでポート5555を開く(再起動する)
1 2 |
$ adb tcpip 5555 restarting in TCP mode port: 5555 |
4. IPアドレスを指定して接続する
1 2 |
$ adb connect 192.168.0.123 connected to 192.168.0.123:5555 |
または
1 |
$ adb connect 192.168.0.123:5555 |
5. deviceとの接続を確認する
1 2 3 4 |
$ adb devices List of devices attached CB5A1Qxxxx device 192.168.0.123:5555 device |
### Android Studioを立ち上げてデバッグする ###
6. USBモードに戻す(TCP/IPモードを終了する)
12
$ adb usbrestarting in USB mode
1 2 |
$ adb usb restarting in USB mode |
コマンド
- adb
- Android Debug Bridge