Android Dev
Android Dev

Reputation: 545

AppCenter "App not installed as package conflicts with an existing package"

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

Upvotes: 3

Views: 7887

Answers (3)

محسن عباسی
محسن عباسی

Reputation: 2444

You may keep its data! Install the same app again and then remove it without checking keep data!

Upvotes: 0

Robert S
Robert S

Reputation: 846

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.

Upvotes: -1

rjschnorenberg
rjschnorenberg

Reputation: 851

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.

Upvotes: 0

Related Questions