Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|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. – RoflcoptrException 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

12 Answers

up vote 61 down vote accepted

It happens because keystores on your laptop and original pc are different. it's called debug.keystrore and located in %USER_HOME%/.android/ folder. 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 )
share|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
5  
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
Thanks you ) This way is better ) – frops Feb 12 at 5:54

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

share|improve this answer
1  
great post buddy...keep it up. – himanshu Nov 29 '11 at 11:22
you can also uninstall via adb: adb uninstall my.application.package – Jason Robinson Apr 14 at 6:06

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

share|improve this answer

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.

share|improve this answer

I had the same issue using the Droid emulator. I solved it by uninstalling the package from the application settings in the emulator as you would a normal device. On the next run, it reinstalled and the error went away.

share|improve this answer

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

share|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

I had the same issue with the emulator and i ran the command "adb uninstall TheNameOfPackage". Of course you must first go to the directory where the adb.exe has been installed, usually C:\Program Files\Android\android-sdk\platform-tools, and then run the above command.

share|improve this answer

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.

share|improve this answer

After searching and checking the phone, i came to know that i am currently developing 2nd version of this application which is already downloaded from android market in my phone, now as this app is signed and having different signatures this is throwing the above error.

Now, to resolve this issue, i had just uninstalled the app from mobile and run/install the application again.

share|improve this answer

When i tried to uninstall the application from my device after this issue occurs, i cannot able to find the app in my device. I don know where it gone. Then i uninstalled using adb,

adb -d uninstall <app package name>

This is the answer who are facing the issue similar to my problem.

share|improve this answer

I also had the same problem and fixed it by uninstalling the app and reinstall it again.

share|improve this answer

I was with this problem too. In my case, I was trying to debug an application in my smartphone, but already had installed. I solved the problem uninstalling the app of the smartphone. This worked.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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