I moved my Android project to a laptop and now I get this when I hit Debug. Sounds like this is a bug? This shouldn't happen via Eclipse as far as I know.

Re-installation failed due to different application signatures.

The weirdest thing is this happened after I upgraded sdk/adt and Eclipse to support SDK 2.2 It was working fine earlier, and now it doesn't, so it might be a bug.

link|improve this question

I sometimes had the same problem. I don't know exactly when it occurs, but I assume its when i use a different USB port to connect my cell phone. Nevertheless I think you have to uninstall the app manually on the phone/emulator. But I can't answer if its really a bug. I have already googled but its not really common I think. – Roflcoptr May 22 '10 at 8:27
I am just going to check it out, if I move to different USB port. After I removed the app it worked. I even moved to another USB port too, and it worked too, so it's not related to the USB port, I think. – Pentium10 May 22 '10 at 8:29
4  
This is happing for me on for same emulator running. I just created new AVD for froyo and launched application through eclipse. After that did some modification and relaunched application in the same emulator instance and got this error. – Tushar Jul 30 '10 at 12:44
feedback

6 Answers

It happens because keystores on your laptop and original pc are different. it's called debug.keystrore and located in %USER_HOME%/.android. TO be more specific it happens because eclipse tries to push apk with reinstall key. So you have two options

  1. Share debug.keystore between various development pc's
  2. Manually uninstall your apk from device ( using adb )
link|improve this answer
1  
I checked this when I arrived home, and it's not a fix, as still happens although I copied the debug keystore from laptop to PC, project was modified last time on laptop. – Pentium10 May 22 '10 at 22:36
1  
I wish there was a 3rd option to auto uninstall – Alex Apr 19 '11 at 19:18
3  
This worked great! I copied the debug.keystore from my laptop, did a Project/Clean, and walla, it worked! So...make sure you do a Clean after copying the file. – Steve Reed Sr May 19 '11 at 20:38
Thanks for making google give me what I was looking for :) – Lionleaf Sep 27 '11 at 19:32
feedback

I also got the same problem and fixed it. you should do the following to fix it,

  1. Uninstall the application from your mobile if you load it already.

  2. To uninstall goto settings->application->manage application.

  3. Run the application again and choose the mobile

Hope this will help you

link|improve this answer
great post buddy...keep it up. – himanshu Nov 29 '11 at 11:22
feedback

After you copy debug.keystore to your PC, you need to rebuild project on PC.

link|improve this answer
feedback

ah i think i found your answer:

http://stackoverflow.com/questions/2458931/why-does-the-app-signature-change-in-android-after-a-classpath-change

its changed if you change the classpath

link|improve this answer
1  
I have not changed the class path at all. Just coped the project over. – Pentium10 May 22 '10 at 22:39
feedback

I got the same problem and fixed it by just wiping the user data on the emulator. My guess is that the emulator keeps the project installed unless you wipe the data, so if your new project doesn't match some internal parameters it doesn't like it and won't reinstall it.

link|improve this answer
feedback

For me after I copied all of my keystore files from my machine at home, I had to do a Project->clean. After that it worked perfectly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.