Skip to content Skip to sidebar Skip to footer

Unable To Uninstall Applications From Android Emulator

I am not able to uninstall apps from android emulator. (Windows xp - OS) I know the process (settings->applications->manage applications). However in my android emulator when

Solution 1:

Your command for uninstall application is wrong you have to pass package name of your application instead of apk name as argument in adb uninstall command

Instead of

adb uninstall app.apk

try command,

adb uninstall <package_name_of_your_application>

ADB COMMAND:

adb uninstall [-k] <package> - remove this app package from the device

('-k' means keep the data and cache directories)

Solution 2:

  1. Go to the emulator and left-click the app icon and hold for several seconds until a new screen appears with the app icon by itself.

  2. Drag it to the "remove app" trash can icon.

  3. Wait until the screen says "app uninstalled".

  4. Go back to the app screen and check to see if it is really gone.

Post a Comment for "Unable To Uninstall Applications From Android Emulator"