LoginSignup
4
2

More than 3 years have passed since last update.

Oculus Go / Quest を、adbコマンドで操作する

Last updated at Posted at 2019-08-03

Oculus Go / Quest に、adbコマンドを使って接続し、色々と操作したいときのメモです。

無線で接続する

  1. Oculus Go / Quest を、USBケーブルでPCに接続
  2. adb shell ip addr show wlan0(192.168...から始まる番号が、Oculus Go / Quest のIPアドレス)
  3. adb tcpip 5555
  4. USBケーブルを抜く
  5. adb connect XXX.XXX.XXX.XX(先ほど調べた「192.168...」から始まる番号)
  6. adb devices で確認し、接続が確認できれば成功

アプリをインストールする

  1. adb install [apkファイルのパス](Windowsの場合、パスが分からないときは、apkファイルを「Shift + 右クリック」で、「パスとしてコピー(A)」を選択すれば取得できる)

アプリを削除する

  1. adb shell pm list package
  2. adb uninstall [パッケージ名] (パッケージ名は、Unity上で「Build Settings > Player Settings > Other Settings > Package Name」を確認)
4
2
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
4
2