I have multiple virtual devices, some of them can't be deleted.
Error message is
The android virtual device XXX is currently running in an emulator and cannot be deleted
when I just have restarted Ubuntu and only started Eclipse.
I have multiple virtual devices, some of them can't be deleted.
Error message is
The android virtual device XXX is currently running in an emulator and cannot be deleted
when I just have restarted Ubuntu and only started Eclipse.
In Linux/*nix and OSX:
$HOME
directory.I hope this helps...
In the /home/.android/[your device].avd folder sometimes are left behind *.lock files. This can be because of unexpected emulator termination. AVDM doesn't deal with this. Deleting manually a device folder or overriding it solves the problem.
Before trying to delete a virtual device in AVDM. Remove all *.lock files from the corresponding /home/.android/[your device].avd fodlers. You will then be able to delete without the 'device XXX is currently running' popup.
An alternative and much simpler solution that works from the AVD manager.
From the AVD manager click the New button. Set the name as the name of the device that you can't close, choose any settings, and tick the box that says Override the existing AVD with the same name.
This will kill the old one and overwrite with the new one. The new one isn't running and so can be deleted.
I've been looking for the java code and this error really mean you have an AVD running... Have you tried kill'em all with top or htop (which is way better).
// check if the AVD is running
if (avdInfo.isRunning()) {
display.asyncExec(new Runnable() {
public void run() {
Shell shell = display.getActiveShell();
MessageDialog.openError(shell,
"Delete Android Virtual Device",
String.format(
"The Android Virtual Device '%1$s' is currently running in an emulator and cannot be deleted.",
avdInfo.getName()));
}
});
return;
From Finder(OSX)OR Directory Explorer(Linux & Windows)
From Android Studio
After these steps it will allow you to delete from AVD Manager
I had this issue as well.. was not able to find/see the .android folder in $home. I do not know if it is hidden or what. If you double click a android device in AVD manager it will show you the path of the "running avd" which is exactly where everyone says it should be. Since I could not delete these files using the GUI I used CLI (terminal to do so). You can utilize the following commands [cd] for changing directory [rm -R] to remove a file. Step by step:
from terminal cli which will look something like this:
nameOfYourMac:~ MacUser$
type
cd .android/avd
(directory changes)
nameOfYourMac:avd MacUser$
Type
rm -R nameOfYourVirtualDevice.avd
Pretty easy. Now you should be able to delete the device in Eclipses' AVD Manager.