Reputation: 33
I can't figure out how to enable snapshot function on virtual devices. The option is grayed out and there is no setting when creating or editing a virtual device. I'm using the latest version of the SDK Tools Revision 22.6.3
Heres what my window looks like: Create new Android Virtual Device
SOLVED: Creation window had to be manually expanded to reveal the hidden options
Upvotes: 2
Views: 684
Reputation: 11
if you can't find emulation options in the AVD manager but you want to use "Use Host GPU" option, you can run your emulator like this():
emulator -avd <avd_name> -gpu on
or modify your emulator config file( path: .android/avd/your_avd_name.avd/config.ini
)
add hw.gpu.enabled=yes
Upvotes: 1