App crash by using scene delegate

Hey @Davidsports

Thanks for using the dev forum!

Unfortunately, the SDK does not support SceneDelegates currently. The SceneDelegate must be removed and disabled to be able to use the iOS native SDK.

If you decide to go this route:

  1. Remove the SceneDelegate.m file and SceneDelegate.h file.
  2. Remove the UISceneSession code in AppDelegate.
  3. Add a UIWindow property to the AppDelegate.

@property ( strong , nonatomic ) UIWindow *window;

Let me know if you have any other questions.

Thanks!
Michael