Supported orientations has no common orientation with the application, and [GADFullScreenAdViewController shouldAutorotate] is returning YES
My Apps gets crash with following Crashlytics console description:
Fatal Exception: UIApplicationInvalidInterfaceOrientation
Supported orientations has no common orientation with the application, and [GADFullScreenAdViewController shouldAutorotate] is returning YES
App supports all orientations except when a user switches player in fullscreen mode. I use a method in AppDelegate to manage supported orientations:
var supportedOrientation = UIInterfaceOrientationMask.all func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask { return self.supportedOrientation }