5 Answers

You must have different bundleIds for your project and extension.

Example:

  • App bundleId: com.companyName.appName
  • Extension bundleId: com.companyName.appName.extensionName

I got this error when I set one configuration file for my project and notification service.

I changed the notification service configuration file to the correct one and this fixed my problem. enter image description here

Make sure you have properly set your bundle identifiers for your Main app target and extensions.

Making sure the configuration for Debug and Release mode is similar for both project and extension resolved this issue.enter image description here

Related