Android: fastboot 没有找到虚拟设备/模拟器
Android: fastboot does not find virtual device / emulator
我想使用 adb 和 fastboot 将特殊磁盘映像刷入 Android 模拟器(Google Pixel 2)。虚拟设备只能被 adb 检测到,不能被 fastboot 检测到。我已经尝试过(cmd 作为管理员):
C:\windows\system32>adb devices
List of devices attached
emulator-5554 device
C:\windows\system32>adb reboot bootloader
C:\windows\system32>fastboot devices
C:\windows\system32>
我正在 Android Studio(Android SDK 和 Google USB 驱动程序安装正确,我还在模拟器中启用了 USB 调试)Windows 10。是否可以(原则上)将 fastboot 与模拟器一起使用?如果是,您知道为什么它在这里不起作用吗?
不,您不能将 fastboot 与 Android Studio 模拟器一起使用。 AVD 没有引导加载程序,它只是引导系统和 ramdisk 映像。
如果你想使用 fastboot,你需要一个支持它的真实设备(大多数人,除了三星的)。
您可以在此 post 中找到更多信息:how to reboot the emulator into recovery mode
我想使用 adb 和 fastboot 将特殊磁盘映像刷入 Android 模拟器(Google Pixel 2)。虚拟设备只能被 adb 检测到,不能被 fastboot 检测到。我已经尝试过(cmd 作为管理员):
C:\windows\system32>adb devices
List of devices attached
emulator-5554 device
C:\windows\system32>adb reboot bootloader
C:\windows\system32>fastboot devices
C:\windows\system32>
我正在 Android Studio(Android SDK 和 Google USB 驱动程序安装正确,我还在模拟器中启用了 USB 调试)Windows 10。是否可以(原则上)将 fastboot 与模拟器一起使用?如果是,您知道为什么它在这里不起作用吗?
不,您不能将 fastboot 与 Android Studio 模拟器一起使用。 AVD 没有引导加载程序,它只是引导系统和 ramdisk 映像。
如果你想使用 fastboot,你需要一个支持它的真实设备(大多数人,除了三星的)。
您可以在此 post 中找到更多信息:how to reboot the emulator into recovery mode