Max Eastman
Max Eastman

Reputation: 33

Different application signatures

I made a few updates to the code for my android app and tried to test it in my phone but Eclipse gives me an error saying Re-installation failed due to different application signatures. Now I understand by googling that I have to uninstall the package using adb but I don't know how to do it? I mean it asks me to use adb uninstall in a shell but I have no experience in developing android apps using command line.
Any help will be appreciated!

Upvotes: 1

Views: 937

Answers (2)

Eric Nordvik
Eric Nordvik

Reputation: 14746

You could also just delete the application from your phone going to "Settings" -> "Applications" -> "Manage applications". Find your app and delete it.

Upvotes: 3

Robby Pond
Robby Pond

Reputation: 73494

Connect the device and run

adb uninstall com.mypackagename.myappname

Upvotes: 1

Related Questions