1
0

More than 3 years have passed since last update.

adb connectでmissing port in specificationとなる場合

Last updated at Posted at 2020-08-30

はじめに

adbのバージョンによるのか、adb connectで接続できない場合があったため備忘録

コマンド

C:\Users\hoge>adb tcpip 5555
restarting in TCP mode port: 5555

rem 接続に失敗する
C:\Users\hoge>adb connect 192.168.XXX.XXX
missing port in specification: tcp:192.168.XXX.XXX

rem ポート番号を末尾に追加すると接続できる
C:\Users\hoge>adb connect 192.168.XXX.XXX:5555
connected to 192.168.XXX.XXX:5555

C:\Users\hoge>adb devices
List of devices attached
192.168.XXX.XXX:5555       device

確認したバージョン

C:\Users\hoge>adb version
Android Debug Bridge version 1.0.41
Version 29.0.1-5644136

参考サイト

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0