In my Xcode project, I have 4 different schemes (prod, dev, staging, staging2) which changes the bundle identifier of the app that gets installed to the phone. That way I can have all 4 versions installed side by side, similar to this technique.
Now I'm building a Today Extension for iOS 8. It's a new Target requiring its own bundle identifier.
The Extension's Bundle Identifier must be prefixed with the Parent App's Bundle Identifier, or a warning is thrown:
error: Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier.
Embedded Binary Bundle Identifier: com.company.app.TodayExtension
Parent App Bundle Identifier: com.company.app.staging
In this case, the Embedded Binary Bundle Identifier must be com.company.app.staging.TodayExtension
.
Is there a way I can configure my Today Extension target to set its bundle identifier by first looking at the Parent target's bundle identifier? Perhaps through a custom Run Script Build Phase?