The emulator in Android Studio keeps loading (Connecting to the emulator···)

Phenomenon: After upgrading the studio, the downloaded project cannot open the emulator.

Solution:

1. Check the startup mode. When it is checked, it will start in the window of the studio, and it keeps turning around, but it cannot be loaded. After canceling, the simulator will pop up.

2. Check whether the status of the simulator is normal, this is the problem I encountered. The emulator has a yellow exclamation mark. look at the tips

That's pretty straightforward, x86 is not supported. Just add it

ndk {
    abiFilters "armeabi-v7a", "armeabi", "arm64-v8a","x86"
}

Then check the status of the emulator is normal, run it, and the emulator starts normally. nice~ 

Guess you like

Origin blog.csdn.net/BigBingtang/article/details/126733508