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 I click applications, its not going to the next window where I am supposed to select manage applications.
Also I tried from cmd line as ->
adb uninstall app.apk
I am not sure for cmd line whether the command is correct.
Thanks,
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
commandInstead of
try command,
ADB COMMAND:
adb uninstall [-k] <package>
- remove this app package from the device('-k' means keep the data and cache directories)
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.
Drag it to the "remove app" trash can icon.
Wait until the screen says "app uninstalled".
Go back to the app screen and check to see if it is really gone.