0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Android】PCからWifiでスマホを接続する

Posted at

はじめに

今回はPCとスマホの接続をネットワーク(Wifi)経由で接続する方法を調べたので、それを記事にします

端末設定

Androidの設定から システム → 開発者向けオプション → Adb over networkをオンにします
その下に書かれたIPアドレスとポート番号をこの後使用します

9桁の数字がIPアドレス
4桁の5555~5585の番号がポート番号です

IPアドレス:ポート番号というように書かれています
例: 111.111.1.11:5555

また、接続したいPCと端末が同じ回線を使用していることを確認してください

接続

ターミナルで

$ adb pair 111.111.1.11:5555

adb pair の後に Adb over networkの下に書かれたIPアドレスとポート番号を入力しEnter

Enter pairing code: 
adb: No pairing code provided

と出てくるのでそのままもう一度Enter

続いて

$ adb connect 111.111.1.11:5555

と入力しEnter

これで端末とPCの接続ができたはずです!

$ adb devices

を入力しEnterで接続を確認してみましょう

111.111.1.11:5555	unauthorized

と 先ほど入力したIPアドレスとポート番号が表示されれば接続成功です!


切断時には

$ adb disconnect

とコマンドを入力することで接続済みのデバイスを切断することができます

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?