My emulator does not launch "process terminated"

Viewed 140

I'm trying to open an emulator from android studio and it keeps giving me this error:

dyld: Symbol not found: _vmnet_shared_interface_name_key Referenced from: /Users/[system_name]/Library/Android/sdk/emulator/qemu/darwin-x86_64/qemu-system-x86_64 (which was built for Mac OS X 11.1) Expected in: /System/Library/Frameworks/vmnet.framework/Versions/A/vmnet in /Users/[system_name]/Library/Android/sdk/emulator/qemu/darwin-x86_64/qemu-system-x86_64

2 Answers

This might be because of the Android studio version which you've installed. Please install version 2020.3.1 version.

I had the same problem and i fixed it by downgrading the Emulator:

    1. Download an old version of emulator (in my case i used emulator-darwin_x64-7425822 download from here)
    1. Replace the emulator folder you downloaded with the one in your sdk folder (sould normally be here ~/Library/Android/sdk)

You can also fix it by upgrading your macOS version to the latest one.

Related