Android Studio Unknown Emulator running and can't be terminated

人走茶凉 提交于 2019-12-05 08:57:36

Well, it was the BlueStacks emulator running in the background. Android Studio automatically detects it. The unknown simulator was there because BlueStacks was running in the background at the Notification Tray in my windows 8.1
When I closed BlueStacks from the Notification Tray, the Unknown emulator vanished for good.

First reason if your emulator in offline. To resolve this you need to run command kill-server from adb.

Open Command prompt->navigate to android sdk-> go to platform-tools-> adb kill-server -> adb start-server

You need to run above command to remove unknown

Second reason if your project configuration not match with emulator configuration

Change your emulator configuration with your project requirement. May be your application version not match with emulator configuration

It was very simple to fix for my case :) Just need to type the following 2 commands using CMD:

adb kill-server
adb start-server

Make sure that the windows PATH variable contains "adb.exe" file's directory location. Normally, it should be:

YOUR_PATH_TO_SDK\platform-tools
//For example: D:\sdk\platform-tools
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!