コンテンツにスキップ

ADB (Android Debug Bridge)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
# デバイス一覧を確認する
$ adb devices
List of devices attached
**************  device

# シェル起動
$ adb shell

# デバイスが複数がある場合
$ adb -s ************** shell

# ログを取得する
$ adb logcat

# タップする
$ adb shell input touchscreen tap 0 0

# ファイルを転送する
$ adb push {PCのファイル} {端末のファイル}