Sarimin
Sarimin

Reputation: 717

This application contains an app extension with a bundle identifier that conflicts with the bundle identifier of another app

When I try to build via xcode to my iPhone, it succeed but after that it show warning "This application contains an app extension with a bundle identifier that conflicts with the bundle identifier of another app or app extension already installed". what must i do to succeed build to my iPhone?

Upvotes: 2

Views: 4605

Answers (2)

Crazyrems
Crazyrems

Reputation: 2591

You can't have two applications with the same bundle id installed on your phone.

Your build did succeed, that's the installation process that failed. I have two suggestions:

  • Change the bundle identifier of your current app so it doesn't conflict with other apps
  • Delete the app with the same bundle identifier

Upvotes: 1

Gil Sand
Gil Sand

Reputation: 6040

The error seems self explanatory ; you have multiple apps extensions in your solution that have the same bundle identifier.

Check all your info.plist files, and try adding .ext (for example), after the bundle identifiers in the app extensions that have the same identifier as your main app.

Upvotes: 0

Related Questions