Reputation: 51
I cant start my emulators. I tried to start it from AVD manager but got this error.
Then I tried to launch it from Terminal but now I get this.
Upvotes: 4
Views: 3413
Reputation: 89
Simply follow the below steps specific to Fedora 34.
Go to:
/home/{username}/Android/sdk/emulator
./emulator -list-avds
./emulator @avdName
Upvotes: 0
Reputation: 7041
Just had the same problem. It turns out that now the good path emulator is in .../android_sdk/emulator
, not in .../android_sdk/tools
. In your case you need to run it like:
cd ~/Android/Sdk/emulator
./emulator -avd <name of your avd>
Upvotes: 6