1
1

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

adb コマンド - Android Debug Bridge

Last updated at Posted at 2020-08-01

はじめに

Android 開発に欠かせない adbコマンドについて基本的なことをまとめます。
Android の SDK には ADB(Android Debug Bridge)というツールが用意されており、
Android 開発をしていれば一度は使う機会があります。

adb とは

Android Debug Bridge は adb と省略されます。
これはAndroid SDK の platform-tools に含まれるツールです。
このツールを用いると、現在利用可能なデバイス・エミュレータの列挙、シェルコマンドの発行、ファイルの転送などが行えます。
Android 端末を adb コマンドで操作できます。

基本

バージョンを表示

コマンド
adb version
結果
Android Debug Bridge version 1.0.41
Version 30.0.3-6597393
Installed as {インストールディレクトリ}/adb.exe

端末の確認

コマンド
adb devices
結果
List of devices attached
emulator-5554   device

アプリのインストール

デバイスにインストール

コマンド
adb install xxxxx.apk

デバイスに上書きインストール

コマンド
adb install -r xxxxx.apk

複数のデバイスを接続している時は、端末を指定

コマンド
adb -s {デバイス} install -r xxxxx.apk
# 例 adb -s emulator-5554 install -r xxxxx.apk

ログ

コマンド
adb logcat

shell

コマンド
adb shell
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?