--- lang: ja-jp breaks: true --- # Android `SDK Platform-Tools` を導入して コマンドライン ツール を使用する。 2021-07-31 > SDK Platform-Tools リリースノート > https://developer.android.com/studio/releases/platform-tools > ただし、以下のコマンドライン ツールが必要な場合は、以下のリンクをご使用ください。 > SDK Platform-Tools for Windows をダウンロード ## ダウンロードしたファイルをCドライブ直下に解凍 ![](https://i.imgur.com/gzhP25G.png) ## `C:\platform-tools`を環境変数のPATHに登録 ![](https://i.imgur.com/iXDHM1E.png) ## adb コマンドの動作確認 ```shell= D:\>adb devices List of devices attached emulator-5554 device ``` ```shell= D:\>adb devices List of devices attached emulator-5554 device D:\>adb -s emulator-5554 shell generic_x86_arm:/ $ ls acct bugreports d debug_ramdisk etc linkerconfig mnt proc sdcard system apex cache data default.prop init lost+found odm product storage system_ext bin config data_mirror dev init.environ.rc metadata oem res sys vendor generic_x86_arm:/ $ pwd / generic_x86_arm:/ $ exit D:\> ``` ###### tags: `Android` `SDK Platform-Tools` `adb`