We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce: singular_flutter_sdk: ^1.0.15
This is because of the following code in iOS
if ([SingularAppDelegate shared].launchOptions != nil) { config.launchOptions = [SingularAppDelegate shared].launchOptions; } else if ([SingularAppDelegate shared].userActivity != nil) { config.userActivity = [SingularAppDelegate shared].userActivity; } else if ([SingularAppDelegate shared].openURL != nil) { config.openUrl = [SingularAppDelegate shared].openURL; } else { NSLog(@"everything is null"); }
The text was updated successfully, but these errors were encountered:
Quick fix I found:
override func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool { if let singularAppDelegate = SingularAppDelegate.shared() { if let singularAppDelegate = SingularAppDelegate.shared() { singularAppDelegate.launchOptions = nil } singularAppDelegate.continueUserActivity(userActivity, restorationHandler:nil) } return super.application(application, continue: userActivity, restorationHandler: restorationHandler) }
Sorry, something went wrong.
I had the exact same issue. @arreshashikant solution fixed it though 😁
No branches or pull requests
Steps to reproduce:
singular_flutter_sdk: ^1.0.15
This is because of the following code in iOS
The text was updated successfully, but these errors were encountered: