Problem: Unlike other Similar Questions, in my case the Button is NOT greyed out and IT IS clickable too but nothing happens when I click it, No message, no logs, nothing .... It just doesn't open. I tried opening just the emulator (from the drop down menu which says (NO DEVICE SELECTED) in the toolbar and it opens but It's frozen or Hanged, It's simply unresponsive.
What I have tried :
- I tried restarting my PC
- I tried Uninstalling (It had no Uninstall.exe so I installed Android Studio in other directory and even in that AVD was not working .... then I used it's uninstaller.exe to uninstall the older version, Then I reinstalled Android Studio in previous Directory ... yet didn't work).
What Should I do now? This problem started today itself after updating to the BEE update of Android Studio (25 Jan 2022 release)
CodePudding user response:
Update : I fixed it by installing older version of Android Studio, If anyone else is also having this issue, Roll Back to Artic Fox December Version
CodePudding user response:
If you don't want to downgrade android studio, you can run a emulator device by terminal.
First, Go to emulator folder in the android SDK (for example
/Users/janedoe/Library/Android/sdk/emulator/emulator), list all devices with the following command:./emulator -list-avdsThen, execute the following command with the name of the device you want to run:
./emulator -avd Nexus_6_API_24
For more info visit the android studio documentation: https://developer.android.com/studio/run/emulator-commandline
