在设备管理器 android studio bumblebee 中更改 运行 应用程序的默认设备
change default device for run app in device manager android studio bumblebee
每次启动时,我都会在 bumblebee android studio 中更换设备模拟器。如何设置默认模拟器?
默认情况下,android工作室会保存您最后使用的虚拟设备,但您可以手动更改。
在项目目录中,在.idea/deploymentTargetDropDown.xml
中设置你的默认设备
<targetSelectedWithDropDown>
<Target>
<type value="QUICK_BOOT_TARGET" />
<deviceKey>
<Key>
<type value="VIRTUAL_DEVICE_PATH" />
<!--edit this line-->
<value value="change-to-default-device.avd" />
</Key>
</deviceKey>
</Target>
</targetSelectedWithDropDown>
每次启动时,我都会在 bumblebee android studio 中更换设备模拟器。如何设置默认模拟器?
默认情况下,android工作室会保存您最后使用的虚拟设备,但您可以手动更改。
在项目目录中,在.idea/deploymentTargetDropDown.xml
<targetSelectedWithDropDown>
<Target>
<type value="QUICK_BOOT_TARGET" />
<deviceKey>
<Key>
<type value="VIRTUAL_DEVICE_PATH" />
<!--edit this line-->
<value value="change-to-default-device.avd" />
</Key>
</deviceKey>
</Target>
</targetSelectedWithDropDown>