I have a Voip app with callkit integrated. It worked fine in iOS 10 and now I seem to have issues with iOS 11 when calling from native recents (iOS recents).
- (BOOL)application:(UIApplication *)application willContinueUserActivityWithType:(nonnull NSString *)userActivityType {}
- (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(nonnull void (^)(NSArray * _Nullable))restorationHandler {}
Both these methods are not called and hence I am not able to process the NSUserActivity INStartAudioCallIntent. Am I missing something obvious that has changed in iOS 11?
Thanks in advance.