views:

751

answers:

2

I recently uploaded my application to the android market however it's refusing to run when downloaded due to the error

Package file was not signed correctly

I first published the packet using eclipse, right click export, creating a keystore then publishing, however it refuses to work.

I then downloaded the keytool and jarsigner and used them to sign an upgrade which I posted instead. However this gives the same error.

I have no idea what I've done wrong, and since I cannot delete the application I cannot try and start again can anyone help me?

Thanks

+1  A: 

This error usually occurs because you are trying to push an update which was signed with a different key than you used in the initial submission. You need to find the key you used the first time you published the application and use this to sign the update.

jqpubliq
The error you are referring to is the error you get when uploading to the market. He's getting an error when he tries to run the app.
mbaird
+3  A: 

You have your debug copy still installed on your device most likely. Now you have downloaded a different copy of the same app and it's causing this error.

Uninstall the app completely from your device. Then download it from the market again and it should work.

Also, please work on that 0% accept rate you have.

mbaird
You can't have two instances of an app on the same device. If he had the debug copy with the same version number he would have to uninstall it before he could even download it. Installing a higher version over a debug version might be the culprit though.
jqpubliq