react-native-callkeep icon indicating copy to clipboard operation
react-native-callkeep copied to clipboard

Fix warning in the ios documentation

Open MrHertal opened this issue 3 years ago • 0 comments

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>>.

MrHertal avatar Aug 14 '22 10:08 MrHertal