Android 调试桥(adb)

Android 调试桥(adb)

您还可以使用 adb 发出命令,如下所示:
从 android_sdk/platform-tools/ 目录中运行 adb devices 命令,以验证您的设备是否已连接。如果已连接,您将看到该设备被列出。
发出任意包含 -d 标记的 adb 命令,以将您的设备设为目标设备。

Adb命令

   adb devices 

该命令会列出当前和计算机链接的Android 设备或者 模拟器

 adb devices -l 

您可以使用 devices 命令生成已连接设备的列表。

adb kill-server

在以下示例中,先获得了已连接设备的列表,然后使用其中一个设备的序列号在该设备上安装了 helloWorld.apk。

$ adb devices
List of devices attached
emulator-5554 device
emulator-5555 device
$ adb -s emulator-5555 install helloWorld.apk

你可能感兴趣的:(android,android)