Bryanyan
Bryanyan

Reputation: 677

How to delete the App in Android

I downloaded the app from the eclipse to my device and like to delete the app at the device. I tried from setting>Application Manager. But I can't find the app there. How can I delete the app? Thanks

Upvotes: 0

Views: 139

Answers (2)

iNFInite PosSibiLitiEs
iNFInite PosSibiLitiEs

Reputation: 597

you can do this by following steps on Android Device

setting->Manage applications->pressLong on the application (which you want to uninstall)

Then,finally click on the UNinstall button. YOU are Done!

Upvotes: 2

Raghav Sood
Raghav Sood

Reputation: 82533

You can do it via adb using:

adb uninstall PACKAGE_WRITTEN_IN_MANIFEST

However, going to Settings -> Application Manager -> Downloaded Apps should list your app and allow you to delete it.

Upvotes: 2

Related Questions