The app fails to build

App Group is not configured

How to check

  1. Make sure you completed SDK initialization from the integration guide.
  2. Check the .entitlements extension — it shows the App Group value that was entered.

How to fix

Set the App Group exactly as specified in the integration guide.


Permission status update is not wrapped in async

How to check

Make sure the Mindbox.shared.notificationsRequestAuthorization call is wrapped in DispatchQueue.main.async.

How to fix

Update the method call following this guide.


SDK methods are called before didFinishLaunchingWithOptions completes

How to check

Check whether any Mindbox SDK methods are called before didFinishLaunchingWithOptions has finished executing.

How to fix

Remove any early SDK calls and make sure all Mindbox SDK methods are called strictly after didFinishLaunchingWithOptions completes.