react-native-callkeep
react-native-callkeep copied to clipboard
Fix warning in the ios documentation
When following the iOS installation doc, I got a warning at this step:
Conflicting parameter types in implementation of 'application:continueUserActivity:restorationHandler:': 'void (^ _Nonnull __strong)(NSArray<id<UIUserActivityRestoring>> * _Nullable __strong)' vs 'void (^__strong _Nonnull)(NSArray * _Nullable __strong)'
I fixed by replacing NSArray with NSArray<id<UIUserActivityRestoring>>.