Home > Blockchain >  How can I fix "Attach a Debugger or ESC to Cancel" error?
How can I fix "Attach a Debugger or ESC to Cancel" error?

Time:08-17

I use Android Studio Chipmunk | 2021.2.1 Patch 2. My OS is win 8.1 Pro. Emulator is Pixel XL API 25. I have JDK-18.0.2 Even there is not any connected phone to my computer I get "Attach a Debugger or ESC to Cancel" error. Emulator doesn't come online. It doesn't work. I have searched and almost tried every solution on stackoverflow. Still getting the same error.

Gradle Settings

Gradle User Home: C:\Users\UserName\.gradle

Use Gradle From: 'gradle-wrapper.properties' file

Gradle JDK: Android Studio Default JDK version 11.0.12

JAVA_HOME: C:\Program Files\Java\jdk-17.0.2\bin (also tried C:\Program Files\Java\jdk-18.0.2\bin)

What should I do?

Thank you for responses.

CodePudding user response:

Install newest update to android emulator 31.3.10 . Then restart computer and after showing window with "Attach a Debugger or ESC to Cancel" press ESC button ... Android emulator will start .

enter image description here

Second

Delete all android virtual devices and install them again

It's only a bug , probably will be solved by Google

CodePudding user response:

maybe you have 2 different versions of adb.exe
if you are a windows user, open task manager and find adb.exe in the process list, right-click on it and choose Open File Location, remove that folder or move it to a temporary place,(make sure you killed adb.exe using task manager before moving it).
then run the emulator again and see if it works or not.

  • Related