-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Labels
Description
I have implemented CleverTap push notifications in a react native app, and am adding the additional config required for deep linking on iOS (as described here: https://developer.clevertap.com/docs/push-notifications-ios#custom-handling-deeplinkexternal-url)
When I add the suggested CleverTapURLDelegate method below, I get the following error in xcode and the project fails to build:
Conflicting parameter types in implementation of 'shouldHandleCleverTapURL:forChannel:': '__strong id' vs 'CleverTapChannel'
// CleverTapURLDelegate method
- (BOOL)shouldHandleCleverTapURL:(NSURL *)url forChannel:(CleverTapChannel)channel {
NSLog(@"Handling URL: \(%@) for channel: \(%d)", url, channel);
return YES;
}
I'm using version 2.2.1
Reactions are currently unavailable