J.su
J.su

Reputation: 301

App install failed (INSTALL_FAILED_CONFLICTING_PROVIDER)

I had an old project, but I wanted to rename it, so I made a duplicate of the old project then renamed the new project's gradle applicationId and created a new signing file for it. But now why can't the new project and the old project be installed on the same device together?

Error:

image

Upvotes: 0

Views: 6547

Answers (2)

mir
mir

Reputation: 381

The reason is that you are using the same provider name/id in two different apps. See this stack overflow post

Basically make sure your provider ids are based on the app id.

Upvotes: 4

Sakura Fukuyoshi
Sakura Fukuyoshi

Reputation: 1471

Check your package name in build.gradle and in your manifest.. and check if you are using something like facebook or anything that is connected to your old project or package name.

Upvotes: 0

Related Questions