In my Xcode project I have 2 schemes one for stage and one production with bundle Id's as: com.project.myproject and com.project.myproject.qa
now I added notification service extension with bundle id go created as: com.project.myproject.NotificationService
and application runs fine when I run in production , but when I change to stage target I get this error :
error: Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier.
Embedded Binary Bundle Identifier: com.project.myproject.NotificationService
Parent App Bundle Identifier: com.project.myproject.qa
what is the way to make it work in both scheme ?