Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio Unknown Emulator running and can't be terminated

I have one emulator actively running at the moment but I see two emulators running when I run the app. One of them is an Unknown Emulator.

When I choose the Unknown emulator, the console shows this error: Error: Could not access the Package Manager. Is the system running?

How do I terminate this Unknown Simulator? I think it's using my system's resources and degrading the performance.

Screenshot

like image 940
vin Avatar asked Dec 23 '14 06:12

vin


People also ask

How do I force shut down an Android Emulator?

Run and stop an emulator, and clear data To stop a running emulator, click Menu and select Stop. To clear the data for an emulator, select Wipe Data.

How do I fix the emulator process for AVD was killed?

Go to: Tools > Android > AVD Manager and Press the "edit" (pencil) icon next to your AVD , Change "Graphics" to "Software".


2 Answers

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.

like image 136
vin Avatar answered Nov 13 '22 17:11

vin


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

like image 33
Amit Thaper Avatar answered Nov 13 '22 18:11

Amit Thaper