-[Runner.AppDelegate application:continueUserActivity:restorationHandler:] <NSUserActivity:> has an interaction attached but it is not handled

Viewed 15

This is my swift code.

import UIKit
import Flutter

@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
  override func application(
    _ application: UIApplication,
    didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
  ) -> Bool {
    GeneratedPluginRegistrant.register(with: self)
    
    return super.application(application, didFinishLaunchingWithOptions: launchOptions)
  }
}

Getting error on Xcode on iPhone 11 to upper but not getting this error on iPhone X and below.

-[Runner.AppDelegate application:continueUserActivity:restorationHandler:] <NSUserActivity:> has an interaction attached but it is not handled.
0 Answers
Related