From 17a2e198d44a8621903c2f71da7d785d9dbd9ddd Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Mon, 10 Jun 2019 18:46:52 +0200 Subject: [PATCH] fix(cordova): Add CDVHandleOpenURLWithAppSourceAndAnnotationNotification constant (#1650) --- ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.h | 1 + ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.m | 1 + 2 files changed, 2 insertions(+) diff --git a/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.h b/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.h index 63b12e946..04bbdb37c 100644 --- a/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.h +++ b/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.h @@ -32,6 +32,7 @@ extern NSString* const CDVPageDidLoadNotification; extern NSString* const CDVPluginHandleOpenURLNotification; +extern NSString* const CDVPluginHandleOpenURLWithAppSourceAndAnnotationNotification; extern NSString* const CDVPluginResetNotification; extern NSString* const CDVViewWillAppearNotification; extern NSString* const CDVViewDidAppearNotification; diff --git a/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.m b/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.m index 6910aa591..b053999eb 100644 --- a/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.m +++ b/ios/CapacitorCordova/CapacitorCordova/Classes/Public/CDVPlugin.m @@ -39,6 +39,7 @@ - (UIScrollView*)scrollView NSString* const CDVPageDidLoadNotification = @"CDVPageDidLoadNotification"; NSString* const CDVPluginHandleOpenURLNotification = @"CDVPluginHandleOpenURLNotification"; +NSString* const CDVPluginHandleOpenURLWithAppSourceAndAnnotationNotification = @"CDVPluginHandleOpenURLWithAppSourceAndAnnotationNotification"; NSString* const CDVPluginResetNotification = @"CDVPluginResetNotification"; NSString* const CDVLocalNotification = @"CDVLocalNotification"; NSString* const CDVRemoteNotification = @"CDVRemoteNotification";