Re-installation failed due to different application signatures

前端 未结 13 1640
自闭症患者
自闭症患者 2020-12-04 16:15

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.

R         


        
相关标签:
13条回答
  • 2020-12-04 17:02

    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.

    0 讨论(0)
  • 2020-12-04 17:04

    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.

    0 讨论(0)
  • 2020-12-04 17:04

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

    0 讨论(0)
  • 2020-12-04 17:05

    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.

    0 讨论(0)
  • 2020-12-04 17:06

    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

    0 讨论(0)
  • 2020-12-04 17:07

    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.

    0 讨论(0)
提交回复
热议问题