skip to Main Content

Error message

I have seen a similar stack overflow question but none that was for AppCenter. You can see that I have completely different version number and version codes for each release. I downloaded release 332, then tried download release 333 and this error message happens. How do I fix this? Why does this not happen on iOS appcenters?

AppCenter

3

Answers


  1. Your old app has the same package name that the new app has. Whatever the version number maybe, you cannot install another app with same package name. Assuming, the old package name is com.demoapp New app will not accept its package name as the same as above. It should be something like com.demoappCopy.

    Login or Signup to reply.
  2. Are all of your builds signed with the same release signing config? If the builds are not signed with the same key then you will get this error because it treats them as two different applications instead of an upgrade to the existing application.

    Login or Signup to reply.
  3. You may keep its data!
    Install the same app again and then remove it without checking keep data!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search