7
4

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 5 years have passed since last update.

複数のAndroidをつなげてadb installをする

Last updated at Posted at 2018-08-02

はじめに

Android開発で複数端末でのデバッグの際に、adb install ~~.apkでやろうとするとインストール出来なかったので、複数つなげた状態でも出来ないか調べてみた。
自分用のメモみたいな感じなんで簡単にまとめます

端末指定オプション

adbのオプションには端末を指定する-sがあります。
なのでこれを使えば出来ます。

何を指定するの?

-s のあとに入れる文字は adb devicesで出てくる文字列です。

adb devices
AAAAAA device

AAAAAAの部分

使用例

-s とデバイスのID?が分かればあとはadb installに追加するだけ。
adb -s AAAAAA install ~~.apk

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?