Issue
I change device emulator in bumblebee android studio every time I started. how to set default emulator?
Solution
By default, the android studio will save the last virtual device that you used, but you can change it manually.
In the project directory, set your default device in .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>
Answered By - Ehsan msz

0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.