Reputation: 717
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
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:
Upvotes: 1
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