tags:

views:

73

answers:

2

Somehow, I have deleted the code from for sample apps from workspace, but the apps still show up in android emulator. How do I delete them?

+3  A: 

Inside the emulator go to the Settings app, then Applications -> Manage Applications -- you can delete them from there.

Dre
Thanks ..that worked.
yogsma
+3  A: 

ADB lets you uninstall applications. Just go:

adb uninstall <package>

You can find ADB in the tools folder of the Android SDK.

Drew