Using widgetURL with AppDelegate and NSUserActivity

I'm trying to allow my iOS 14 WidgetKit to deep link to a specific ViewController in my app. The problem is that my app is built in UIKit and not SwiftUI, so I have an AppDelegate. Does that mean it's impossible?
Answered by Frameworks Engineer in 636468022
This configuration should work as expected. URLs from the widget should be passed to your AppDelegate's URL method. Or if you have a SceneDelegate, it will be passed to the openURLContexts method.
Accepted Answer
This configuration should work as expected. URLs from the widget should be passed to your AppDelegate's URL method. Or if you have a SceneDelegate, it will be passed to the openURLContexts method.
Using widgetURL with AppDelegate and NSUserActivity
 
 
Q