Created
December 14, 2023 21:34
-
-
Save darnfish/a93abf72fc1bacd453dad778dd149e7c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/customerio-expo-plugin/.DS_Store b/node_modules/customerio-expo-plugin/.DS_Store | |
new file mode 100644 | |
index 0000000..f5ec1db | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/.DS_Store b/node_modules/customerio-expo-plugin/lib/.DS_Store | |
new file mode 100644 | |
index 0000000..dd26f62 | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/lib/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/.DS_Store b/node_modules/customerio-expo-plugin/lib/commonjs/.DS_Store | |
new file mode 100644 | |
index 0000000..be53b7f | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/lib/commonjs/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/.DS_Store b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/.DS_Store | |
new file mode 100644 | |
index 0000000..8f97ff0 | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/constants/ios.js b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/constants/ios.js | |
index 5426e1f..5486469 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/constants/ios.js | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/constants/ios.js | |
@@ -50,7 +50,7 @@ const DEFAULT_BUNDLE_SHORT_VERSION = '1.0'; | |
exports.DEFAULT_BUNDLE_SHORT_VERSION = DEFAULT_BUNDLE_SHORT_VERSION; | |
const CIO_TARGET_NAME = 'CustomerIOSDK'; | |
exports.CIO_TARGET_NAME = CIO_TARGET_NAME; | |
-const CIO_NOTIFICATION_TARGET_NAME = 'NotificationService'; | |
+const CIO_NOTIFICATION_TARGET_NAME = 'CIONotificationService'; | |
exports.CIO_NOTIFICATION_TARGET_NAME = CIO_NOTIFICATION_TARGET_NAME; | |
const CIO_APPDELEGATEHEADER_IMPORT_SNIPPET = `#import <UserNotifications/UserNotifications.h>`; | |
exports.CIO_APPDELEGATEHEADER_IMPORT_SNIPPET = CIO_APPDELEGATEHEADER_IMPORT_SNIPPET; | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/constants/ios.js.map b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/constants/ios.js.map | |
index 0f7a70c..d8c495e 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/constants/ios.js.map | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/constants/ios.js.map | |
@@ -1 +1 @@ | |
-{"version":3,"names":["finder","require","path","f","__dirname","pluginPackageRoot","next","filename","dirname","LOCAL_PATH_TO_RN_SDK","join","exports","LOCAL_PATH_TO_CIO_NSE_FILES","getRelativePathToRNSDK","currentFile","relative","IOS_DEPLOYMENT_TARGET","GROUP_IDENTIFIER_TEMPLATE_REGEX","BUNDLE_SHORT_VERSION_TEMPLATE_REGEX","BUNDLE_VERSION_TEMPLATE_REGEX","CIO_DIDFINISHLAUNCHINGMETHOD_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERRORFULL_REGEX","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX","CIO_APPDELEGATEDECLARATION_REGEX","CIO_APPDELEGATEHEADER_REGEX","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_DEEPLINK_COMMENT_REGEX","DEFAULT_BUNDLE_VERSION","DEFAULT_BUNDLE_SHORT_VERSION","CIO_TARGET_NAME","CIO_NOTIFICATION_TARGET_NAME","CIO_APPDELEGATEHEADER_IMPORT_SNIPPET","CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET","CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET","CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET","CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET","CIO_CONFIGURECIOSDKUSERNOTIFICATIONCENTER_SNIPPET","CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET","CIO_DIDRECEIVENOTIFICATIONRESPONSEHANDLER_SNIPPET","CIO_WILLPRESENTNOTIFICATIONHANDLER_SNIPPET","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET"],"sources":["ios.ts"],"sourcesContent":["const finder = require('find-package-json');\nconst path = require('path');\n\nconst f = finder(__dirname);\nlet pluginPackageRoot = f.next().filename;\n// This is the path to the root of the customerio-expo-plugin package\npluginPackageRoot = path.dirname(pluginPackageRoot);\n\nexport const LOCAL_PATH_TO_RN_SDK = path.join(\n pluginPackageRoot,\n '../customerio-reactnative'\n)\n\nexport const LOCAL_PATH_TO_CIO_NSE_FILES = path.join(\n pluginPackageRoot,\n 'src/helpers/native-files/ios'\n);\n\nexport function getRelativePathToRNSDK(currentFile: string) {\n return path.relative(path.dirname(currentFile), LOCAL_PATH_TO_RN_SDK);\n}\n\nexport const IOS_DEPLOYMENT_TARGET = '13.0';\nexport const GROUP_IDENTIFIER_TEMPLATE_REGEX = /{{GROUP_IDENTIFIER}}/gm;\nexport const BUNDLE_SHORT_VERSION_TEMPLATE_REGEX = /{{BUNDLE_SHORT_VERSION}}/gm;\nexport const BUNDLE_VERSION_TEMPLATE_REGEX = /{{BUNDLE_VERSION}}/gm;\nexport const CIO_DIDFINISHLAUNCHINGMETHOD_REGEX =\n /.*\\[super(\\s)application:application(\\s)didFinishLaunchingWithOptions:launchOptions\\];/;\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX =\n /return \\[super application:application didFailToRegisterForRemoteNotificationsWithError:error\\];/;\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERRORFULL_REGEX =\n /(- \\(void\\)application:\\(UIApplication \\*\\)application didFailToRegisterForRemoteNotificationsWithError:\\(NSError \\*\\)error(\\s|\\n)*?\\{)(.|\\n){2}.*\\n\\}/;\n\nexport const CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX =\n /return \\[super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken\\];/;\n\nexport const CIO_APPDELEGATEDECLARATION_REGEX =\n /@implementation AppDelegate(.|\\n)/;\n\nexport const CIO_APPDELEGATEHEADER_REGEX =\n /(@interface AppDelegate\\s*:\\s*EXAppDelegateWrapper\\s*)(<([^>]+)>)?/;\n\nexport const CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX = \n/^\\s*RCTBridge\\s*\\*\\s*\\w+\\s*=\\s*\\[\\s*self\\.reactDelegate\\s+createBridgeWithDelegate:self\\s+launchOptions:launchOptions\\s*\\];\\s*$/gm;\n\nexport const CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX = \n/^\\s*return\\s\\[\\s*super\\s*application:\\s*application\\s*didFinishLaunchingWithOptions\\s*:\\s*launchOptions\\s*\\];/gm;\n\nexport const CIO_DEEPLINK_COMMENT_REGEX = /\\sDeep link workaround for app killed state start/gm;\nexport const DEFAULT_BUNDLE_VERSION = '1';\nexport const DEFAULT_BUNDLE_SHORT_VERSION = '1.0';\nexport const CIO_TARGET_NAME = 'CustomerIOSDK';\nexport const CIO_NOTIFICATION_TARGET_NAME = 'NotificationService';\n\nexport const CIO_APPDELEGATEHEADER_IMPORT_SNIPPET = `#import <UserNotifications/UserNotifications.h>`;\nexport const CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET = 'UNUserNotificationCenterDelegate';\nexport const CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET = `\nCIOAppPushNotificationsHandler* pnHandlerObj = [[CIOAppPushNotificationsHandler alloc] init];\n`;\nexport const CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET = `\nRCTBridge *bridge = [self.reactDelegate createBridgeWithDelegate:self launchOptions:modifiedLaunchOptions];\n`;\n\nexport const CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET = `\nreturn [super application:application didFinishLaunchingWithOptions:modifiedLaunchOptions];`\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET = `\n [super application:application didFailToRegisterForRemoteNotificationsWithError:error];\n [pnHandlerObj application:application error:error];\n`;\n\nexport const CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET = `\n [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];\n return [pnHandlerObj application:application deviceToken:deviceToken];\n`;\n\nexport const CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET = `\n // Register for push notifications\n [pnHandlerObj registerPushNotification];\n`;\n\nexport const CIO_CONFIGURECIOSDKUSERNOTIFICATIONCENTER_SNIPPET = `\n UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];\n center.delegate = self;\n`;\n\nexport const CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET = `\n// Deep link workaround for app killed state start\nNSMutableDictionary *modifiedLaunchOptions = [NSMutableDictionary dictionaryWithDictionary:launchOptions];\n if (launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey]) {\n NSDictionary *pushContent = launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey];\n if (pushContent[@\"CIO\"] && pushContent[@\"CIO\"][@\"push\"] && pushContent[@\"CIO\"][@\"push\"][@\"link\"]) {\n NSString *initialURL = pushContent[@\"CIO\"][@\"push\"][@\"link\"];\n if (!launchOptions[UIApplicationLaunchOptionsURLKey]) {\n modifiedLaunchOptions[UIApplicationLaunchOptionsURLKey] = [NSURL URLWithString:initialURL];\n }\n }\n }\n//Deep link workaround for app killed state ends\n`;\n\n// Enable push handling - notification response\nexport const CIO_DIDRECEIVENOTIFICATIONRESPONSEHANDLER_SNIPPET = `\n- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler {\n [pnHandlerObj userNotificationCenter:center didReceiveNotificationResponse:response withCompletionHandler:completionHandler];\n}`;\n\n// Foreground push handling\nexport const CIO_WILLPRESENTNOTIFICATIONHANDLER_SNIPPET = `\n// show push when the app is in foreground\n- (void)userNotificationCenter:(UNUserNotificationCenter* )center willPresentNotification:(UNNotification* )notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler {\n completionHandler( UNNotificationPresentationOptionAlert + UNNotificationPresentationOptionSound);\n}`;\nexport const CIO_REGISTER_PUSHNOTIFICATION_SNIPPET = `\n@objc(registerPushNotification)\n public func registerPushNotification() {\n\n let center = UNUserNotificationCenter.current()\n center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in\n if error == nil{\n DispatchQueue.main.async {\n UIApplication.shared.registerForRemoteNotifications()\n }\n }\n }\n }`;\n"],"mappings":"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"} | |
\ No newline at end of file | |
+{"version":3,"names":["finder","require","path","f","__dirname","pluginPackageRoot","next","filename","dirname","LOCAL_PATH_TO_RN_SDK","join","exports","LOCAL_PATH_TO_CIO_NSE_FILES","getRelativePathToRNSDK","currentFile","relative","IOS_DEPLOYMENT_TARGET","GROUP_IDENTIFIER_TEMPLATE_REGEX","BUNDLE_SHORT_VERSION_TEMPLATE_REGEX","BUNDLE_VERSION_TEMPLATE_REGEX","CIO_DIDFINISHLAUNCHINGMETHOD_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERRORFULL_REGEX","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX","CIO_APPDELEGATEDECLARATION_REGEX","CIO_APPDELEGATEHEADER_REGEX","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_DEEPLINK_COMMENT_REGEX","DEFAULT_BUNDLE_VERSION","DEFAULT_BUNDLE_SHORT_VERSION","CIO_TARGET_NAME","CIO_NOTIFICATION_TARGET_NAME","CIO_APPDELEGATEHEADER_IMPORT_SNIPPET","CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET","CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET","CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET","CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET","CIO_CONFIGURECIOSDKUSERNOTIFICATIONCENTER_SNIPPET","CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET","CIO_DIDRECEIVENOTIFICATIONRESPONSEHANDLER_SNIPPET","CIO_WILLPRESENTNOTIFICATIONHANDLER_SNIPPET","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET"],"sources":["ios.ts"],"sourcesContent":["const finder = require('find-package-json');\nconst path = require('path');\n\nconst f = finder(__dirname);\nlet pluginPackageRoot = f.next().filename;\n// This is the path to the root of the customerio-expo-plugin package\npluginPackageRoot = path.dirname(pluginPackageRoot);\n\nexport const LOCAL_PATH_TO_RN_SDK = path.join(\n pluginPackageRoot,\n '../customerio-reactnative'\n)\n\nexport const LOCAL_PATH_TO_CIO_NSE_FILES = path.join(\n pluginPackageRoot,\n 'src/helpers/native-files/ios'\n);\n\nexport function getRelativePathToRNSDK(currentFile: string) {\n return path.relative(path.dirname(currentFile), LOCAL_PATH_TO_RN_SDK);\n}\n\nexport const IOS_DEPLOYMENT_TARGET = '13.0';\nexport const GROUP_IDENTIFIER_TEMPLATE_REGEX = /{{GROUP_IDENTIFIER}}/gm;\nexport const BUNDLE_SHORT_VERSION_TEMPLATE_REGEX = /{{BUNDLE_SHORT_VERSION}}/gm;\nexport const BUNDLE_VERSION_TEMPLATE_REGEX = /{{BUNDLE_VERSION}}/gm;\nexport const CIO_DIDFINISHLAUNCHINGMETHOD_REGEX =\n /.*\\[super(\\s)application:application(\\s)didFinishLaunchingWithOptions:launchOptions\\];/;\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX =\n /return \\[super application:application didFailToRegisterForRemoteNotificationsWithError:error\\];/;\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERRORFULL_REGEX =\n /(- \\(void\\)application:\\(UIApplication \\*\\)application didFailToRegisterForRemoteNotificationsWithError:\\(NSError \\*\\)error(\\s|\\n)*?\\{)(.|\\n){2}.*\\n\\}/;\n\nexport const CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX =\n /return \\[super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken\\];/;\n\nexport const CIO_APPDELEGATEDECLARATION_REGEX =\n /@implementation AppDelegate(.|\\n)/;\n\nexport const CIO_APPDELEGATEHEADER_REGEX =\n /(@interface AppDelegate\\s*:\\s*EXAppDelegateWrapper\\s*)(<([^>]+)>)?/;\n\nexport const CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX = \n/^\\s*RCTBridge\\s*\\*\\s*\\w+\\s*=\\s*\\[\\s*self\\.reactDelegate\\s+createBridgeWithDelegate:self\\s+launchOptions:launchOptions\\s*\\];\\s*$/gm;\n\nexport const CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX = \n/^\\s*return\\s\\[\\s*super\\s*application:\\s*application\\s*didFinishLaunchingWithOptions\\s*:\\s*launchOptions\\s*\\];/gm;\n\nexport const CIO_DEEPLINK_COMMENT_REGEX = /\\sDeep link workaround for app killed state start/gm;\nexport const DEFAULT_BUNDLE_VERSION = '1';\nexport const DEFAULT_BUNDLE_SHORT_VERSION = '1.0';\nexport const CIO_TARGET_NAME = 'CustomerIOSDK';\nexport const CIO_NOTIFICATION_TARGET_NAME = 'CIONotificationService';\n\nexport const CIO_APPDELEGATEHEADER_IMPORT_SNIPPET = `#import <UserNotifications/UserNotifications.h>`;\nexport const CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET = 'UNUserNotificationCenterDelegate';\nexport const CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET = `\nCIOAppPushNotificationsHandler* pnHandlerObj = [[CIOAppPushNotificationsHandler alloc] init];\n`;\nexport const CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET = `\nRCTBridge *bridge = [self.reactDelegate createBridgeWithDelegate:self launchOptions:modifiedLaunchOptions];\n`;\n\nexport const CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET = `\nreturn [super application:application didFinishLaunchingWithOptions:modifiedLaunchOptions];`\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET = `\n [super application:application didFailToRegisterForRemoteNotificationsWithError:error];\n [pnHandlerObj application:application error:error];\n`;\n\nexport const CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET = `\n [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];\n return [pnHandlerObj application:application deviceToken:deviceToken];\n`;\n\nexport const CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET = `\n // Register for push notifications\n [pnHandlerObj registerPushNotification];\n`;\n\nexport const CIO_CONFIGURECIOSDKUSERNOTIFICATIONCENTER_SNIPPET = `\n UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];\n center.delegate = self;\n`;\n\nexport const CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET = `\n// Deep link workaround for app killed state start\nNSMutableDictionary *modifiedLaunchOptions = [NSMutableDictionary dictionaryWithDictionary:launchOptions];\n if (launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey]) {\n NSDictionary *pushContent = launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey];\n if (pushContent[@\"CIO\"] && pushContent[@\"CIO\"][@\"push\"] && pushContent[@\"CIO\"][@\"push\"][@\"link\"]) {\n NSString *initialURL = pushContent[@\"CIO\"][@\"push\"][@\"link\"];\n if (!launchOptions[UIApplicationLaunchOptionsURLKey]) {\n modifiedLaunchOptions[UIApplicationLaunchOptionsURLKey] = [NSURL URLWithString:initialURL];\n }\n }\n }\n//Deep link workaround for app killed state ends\n`;\n\n// Enable push handling - notification response\nexport const CIO_DIDRECEIVENOTIFICATIONRESPONSEHANDLER_SNIPPET = `\n- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler {\n [pnHandlerObj userNotificationCenter:center didReceiveNotificationResponse:response withCompletionHandler:completionHandler];\n}`;\n\n// Foreground push handling\nexport const CIO_WILLPRESENTNOTIFICATIONHANDLER_SNIPPET = `\n// show push when the app is in foreground\n- (void)userNotificationCenter:(UNUserNotificationCenter* )center willPresentNotification:(UNNotification* )notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler {\n completionHandler( UNNotificationPresentationOptionAlert + UNNotificationPresentationOptionSound);\n}`;\nexport const CIO_REGISTER_PUSHNOTIFICATION_SNIPPET = `\n@objc(registerPushNotification)\n public func registerPushNotification() {\n\n let center = UNUserNotificationCenter.current()\n center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in\n if error == nil{\n DispatchQueue.main.async {\n UIApplication.shared.registerForRemoteNotifications()\n }\n }\n }\n }`;\n"],"mappings":"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"} | |
\ No newline at end of file | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/.DS_Store b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/.DS_Store | |
new file mode 100644 | |
index 0000000..80587be | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService-Info.plist b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService-Info.plist | |
similarity index 91% | |
rename from node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService-Info.plist | |
rename to node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService-Info.plist | |
index cc44286..cdd1994 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService-Info.plist | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService-Info.plist | |
@@ -9,7 +9,7 @@ | |
<key>CFBundleDevelopmentRegion</key> | |
<string>$(DEVELOPMENT_LANGUAGE)</string> | |
<key>CFBundleDisplayName</key> | |
- <string>NotificationServiceExtension</string> | |
+ <string>CIONotificationServiceExtension</string> | |
<key>CFBundleExecutable</key> | |
<string>$(EXECUTABLE_NAME)</string> | |
<key>CFBundleIdentifier</key> | |
@@ -25,7 +25,7 @@ | |
<key>NSExtensionPointIdentifier</key> | |
<string>com.apple.usernotifications.service</string> | |
<key>NSExtensionPrincipalClass</key> | |
- <string>NotificationService</string> | |
+ <string>CIONotificationService</string> | |
</dict> | |
</dict> | |
</plist> | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService.h b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService.h | |
new file mode 100644 | |
index 0000000..f888bdd | |
--- /dev/null | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService.h | |
@@ -0,0 +1,5 @@ | |
+#import <UserNotifications/UserNotifications.h> | |
+ | |
+@interface CIONotificationService : UNNotificationServiceExtension | |
+ | |
+@end | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService.m b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService.m | |
similarity index 67% | |
rename from node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService.m | |
rename to node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService.m | |
index d684015..f83e911 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService.m | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService.m | |
@@ -1,25 +1,25 @@ | |
-#import "NotificationService.h" | |
-#import "NotificationService-Swift.h" | |
+#import "CIONotificationService.h" | |
+#import "CIONotificationService-Swift.h" | |
-@interface NotificationService () | |
+@interface CIONotificationService () | |
@property (nonatomic, strong) void (^contentHandler)(UNNotificationContent *contentToDeliver); | |
@property (nonatomic, strong) UNMutableNotificationContent *bestAttemptContent; | |
@end | |
-@implementation NotificationService | |
+@implementation CIONotificationService | |
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler { | |
- NotificationServiceCioManager* cioManagerObj = [[NotificationServiceCioManager alloc] init]; | |
+ CIONotificationServiceManager* cioManagerObj = [[CIONotificationServiceManager alloc] init]; | |
[cioManagerObj didReceive:request withContentHandler:contentHandler]; | |
} | |
- (void)serviceExtensionTimeWillExpire { | |
// Called just before the extension will be terminated by the system. | |
// Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used. | |
- NotificationServiceCioManager* cioManagerObj = [[NotificationServiceCioManager alloc] init]; | |
+ CIONotificationServiceManager* cioManagerObj = [[CIONotificationServiceManager alloc] init]; | |
[cioManagerObj serviceExtensionTimeWillExpire]; | |
} | |
diff --git a/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService.swift b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService.swift | |
similarity index 92% | |
rename from node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService.swift | |
rename to node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService.swift | |
index 0e30100..e920fde 100644 | |
--- a/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService.swift | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/CIONotificationService.swift | |
@@ -4,7 +4,7 @@ import CioTracking | |
import CioMessagingPushAPN | |
@objc | |
-public class NotificationServiceCioManager : NSObject { | |
+public class CIONotificationServiceManager : NSObject { | |
public override init() {} | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService.h b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService.h | |
deleted file mode 100644 | |
index 32d6298..0000000 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService.h | |
+++ /dev/null | |
@@ -1,5 +0,0 @@ | |
-#import <UserNotifications/UserNotifications.h> | |
- | |
-@interface NotificationService : UNNotificationServiceExtension | |
- | |
-@end | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/utils/injectCIOPodfileCode.js b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/utils/injectCIOPodfileCode.js | |
index e62b11b..90251b4 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/utils/injectCIOPodfileCode.js | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/utils/injectCIOPodfileCode.js | |
@@ -38,7 +38,7 @@ async function injectCIONotificationPodfileCode(iosPath, useFrameworks) { | |
if (!matches) { | |
const snippetToInjectInPodfile = ` | |
${blockStart} | |
-target 'NotificationService' do | |
+target 'CIONotificationService' do | |
${useFrameworks === 'static' ? 'use_frameworks! :linkage => :static' : ''} | |
pod 'customerio-reactnative-richpush/apn', :path => '${(0, _ios.getRelativePathToRNSDK)(filename)}' | |
end | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/utils/injectCIOPodfileCode.js.map b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/utils/injectCIOPodfileCode.js.map | |
index 960d8ec..a302a64 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/utils/injectCIOPodfileCode.js.map | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/helpers/utils/injectCIOPodfileCode.js.map | |
@@ -1 +1 @@ | |
-{"version":3,"names":["_ios","require","_codeInjection","_fileManagement","injectCIOPodfileCode","iosPath","blockStart","blockEnd","filename","podfile","FileManagement","read","matches","match","RegExp","lineInPodfileToInjectSnippetBefore","snippetToInjectInPodfile","getRelativePathToRNSDK","trim","write","injectCodeByRegex","join","console","log","injectCIONotificationPodfileCode","useFrameworks","append"],"sources":["injectCIOPodfileCode.ts"],"sourcesContent":["import type { CustomerIOPluginOptionsIOS } from '../../types/cio-types';\nimport { getRelativePathToRNSDK } from '../constants/ios';\nimport { injectCodeByRegex } from './codeInjection';\nimport { FileManagement } from './fileManagement';\n\nexport async function injectCIOPodfileCode(iosPath: string) {\n const blockStart = '# --- CustomerIO Host App START ---';\n const blockEnd = '# --- CustomerIO Host App END ---';\n\n const filename = `${iosPath}/Podfile`;\n const podfile = await FileManagement.read(filename);\n const matches = podfile.match(new RegExp(blockStart));\n\n if (!matches) {\n // We need to decide what line of code in the Podfile to insert our native code.\n // The \"post_install\" line is always present in an Expo project Podfile so it's reliable.\n // Find that line in the Podfile and then we will insert our code above that line.\n const lineInPodfileToInjectSnippetBefore = /post_install do \\|installer\\|/;\n\n const snippetToInjectInPodfile = `\n${blockStart}\n pod 'customerio-reactnative/apn', :path => '${getRelativePathToRNSDK(filename)}'\n${blockEnd}\n`.trim();\n\n FileManagement.write(\n filename,\n injectCodeByRegex(\n podfile,\n lineInPodfileToInjectSnippetBefore,\n snippetToInjectInPodfile\n ).join('\\n')\n );\n } else {\n console.log('CustomerIO Podfile snippets already exists. Skipping...');\n }\n}\n\nexport async function injectCIONotificationPodfileCode(\n iosPath: string,\n useFrameworks: CustomerIOPluginOptionsIOS['useFrameworks']\n) {\n const filename = `${iosPath}/Podfile`;\n const podfile = await FileManagement.read(filename);\n\n const blockStart = '# --- CustomerIO Notification START ---';\n const blockEnd = '# --- CustomerIO Notification END ---';\n\n const matches = podfile.match(new RegExp(blockStart));\n\n if (!matches) {\n const snippetToInjectInPodfile = `\n${blockStart}\ntarget 'NotificationService' do\n ${useFrameworks === 'static' ? 'use_frameworks! :linkage => :static' : ''}\n pod 'customerio-reactnative-richpush/apn', :path => '${getRelativePathToRNSDK(filename)}'\nend\n${blockEnd}\n`.trim();\n\n FileManagement.append(filename, snippetToInjectInPodfile);\n }\n}\n"],"mappings":";;;;;;;AACA,IAAAA,IAAA,GAAAC,OAAA;AACA,IAAAC,cAAA,GAAAD,OAAA;AACA,IAAAE,eAAA,GAAAF,OAAA;AAEO,eAAeG,oBAAoBA,CAACC,OAAe,EAAE;EAC1D,MAAMC,UAAU,GAAG,qCAAqC;EACxD,MAAMC,QAAQ,GAAG,mCAAmC;EAEpD,MAAMC,QAAQ,GAAI,GAAEH,OAAQ,UAAS;EACrC,MAAMI,OAAO,GAAG,MAAMC,8BAAc,CAACC,IAAI,CAACH,QAAQ,CAAC;EACnD,MAAMI,OAAO,GAAGH,OAAO,CAACI,KAAK,CAAC,IAAIC,MAAM,CAACR,UAAU,CAAC,CAAC;EAErD,IAAI,CAACM,OAAO,EAAE;IACZ;IACA;IACA;IACA,MAAMG,kCAAkC,GAAG,+BAA+B;IAE1E,MAAMC,wBAAwB,GAAI;AACtC,EAAEV,UAAW;AACb,gDAAgD,IAAAW,2BAAsB,EAACT,QAAQ,CAAE;AACjF,EAAED,QAAS;AACX,CAAC,CAACW,IAAI,CAAC,CAAC;IAEJR,8BAAc,CAACS,KAAK,CAClBX,QAAQ,EACR,IAAAY,gCAAiB,EACfX,OAAO,EACPM,kCAAkC,EAClCC,wBACF,CAAC,CAACK,IAAI,CAAC,IAAI,CACb,CAAC;EACH,CAAC,MAAM;IACLC,OAAO,CAACC,GAAG,CAAC,yDAAyD,CAAC;EACxE;AACF;AAEO,eAAeC,gCAAgCA,CACpDnB,OAAe,EACfoB,aAA0D,EAC1D;EACA,MAAMjB,QAAQ,GAAI,GAAEH,OAAQ,UAAS;EACrC,MAAMI,OAAO,GAAG,MAAMC,8BAAc,CAACC,IAAI,CAACH,QAAQ,CAAC;EAEnD,MAAMF,UAAU,GAAG,yCAAyC;EAC5D,MAAMC,QAAQ,GAAG,uCAAuC;EAExD,MAAMK,OAAO,GAAGH,OAAO,CAACI,KAAK,CAAC,IAAIC,MAAM,CAACR,UAAU,CAAC,CAAC;EAErD,IAAI,CAACM,OAAO,EAAE;IACZ,MAAMI,wBAAwB,GAAI;AACtC,EAAEV,UAAW;AACb;AACA,IAAImB,aAAa,KAAK,QAAQ,GAAG,qCAAqC,GAAG,EAAG;AAC5E,yDAAyD,IAAAR,2BAAsB,EAACT,QAAQ,CAAE;AAC1F;AACA,EAAED,QAAS;AACX,CAAC,CAACW,IAAI,CAAC,CAAC;IAEJR,8BAAc,CAACgB,MAAM,CAAClB,QAAQ,EAAEQ,wBAAwB,CAAC;EAC3D;AACF"} | |
\ No newline at end of file | |
+{"version":3,"names":["_ios","require","_codeInjection","_fileManagement","injectCIOPodfileCode","iosPath","blockStart","blockEnd","filename","podfile","FileManagement","read","matches","match","RegExp","lineInPodfileToInjectSnippetBefore","snippetToInjectInPodfile","getRelativePathToRNSDK","trim","write","injectCodeByRegex","join","console","log","injectCIONotificationPodfileCode","useFrameworks","append"],"sources":["injectCIOPodfileCode.ts"],"sourcesContent":["import type { CustomerIOPluginOptionsIOS } from '../../types/cio-types';\nimport { getRelativePathToRNSDK } from '../constants/ios';\nimport { injectCodeByRegex } from './codeInjection';\nimport { FileManagement } from './fileManagement';\n\nexport async function injectCIOPodfileCode(iosPath: string) {\n const blockStart = '# --- CustomerIO Host App START ---';\n const blockEnd = '# --- CustomerIO Host App END ---';\n\n const filename = `${iosPath}/Podfile`;\n const podfile = await FileManagement.read(filename);\n const matches = podfile.match(new RegExp(blockStart));\n\n if (!matches) {\n // We need to decide what line of code in the Podfile to insert our native code.\n // The \"post_install\" line is always present in an Expo project Podfile so it's reliable.\n // Find that line in the Podfile and then we will insert our code above that line.\n const lineInPodfileToInjectSnippetBefore = /post_install do \\|installer\\|/;\n\n const snippetToInjectInPodfile = `\n${blockStart}\n pod 'customerio-reactnative/apn', :path => '${getRelativePathToRNSDK(filename)}'\n${blockEnd}\n`.trim();\n\n FileManagement.write(\n filename,\n injectCodeByRegex(\n podfile,\n lineInPodfileToInjectSnippetBefore,\n snippetToInjectInPodfile\n ).join('\\n')\n );\n } else {\n console.log('CustomerIO Podfile snippets already exists. Skipping...');\n }\n}\n\nexport async function injectCIONotificationPodfileCode(\n iosPath: string,\n useFrameworks: CustomerIOPluginOptionsIOS['useFrameworks']\n) {\n const filename = `${iosPath}/Podfile`;\n const podfile = await FileManagement.read(filename);\n\n const blockStart = '# --- CustomerIO Notification START ---';\n const blockEnd = '# --- CustomerIO Notification END ---';\n\n const matches = podfile.match(new RegExp(blockStart));\n\n if (!matches) {\n const snippetToInjectInPodfile = `\n${blockStart}\ntarget 'CIONotificationService' do\n ${useFrameworks === 'static' ? 'use_frameworks! :linkage => :static' : ''}\n pod 'customerio-reactnative-richpush/apn', :path => '${getRelativePathToRNSDK(filename)}'\nend\n${blockEnd}\n`.trim();\n\n FileManagement.append(filename, snippetToInjectInPodfile);\n }\n}\n"],"mappings":";;;;;;;AACA,IAAAA,IAAA,GAAAC,OAAA;AACA,IAAAC,cAAA,GAAAD,OAAA;AACA,IAAAE,eAAA,GAAAF,OAAA;AAEO,eAAeG,oBAAoBA,CAACC,OAAe,EAAE;EAC1D,MAAMC,UAAU,GAAG,qCAAqC;EACxD,MAAMC,QAAQ,GAAG,mCAAmC;EAEpD,MAAMC,QAAQ,GAAI,GAAEH,OAAQ,UAAS;EACrC,MAAMI,OAAO,GAAG,MAAMC,8BAAc,CAACC,IAAI,CAACH,QAAQ,CAAC;EACnD,MAAMI,OAAO,GAAGH,OAAO,CAACI,KAAK,CAAC,IAAIC,MAAM,CAACR,UAAU,CAAC,CAAC;EAErD,IAAI,CAACM,OAAO,EAAE;IACZ;IACA;IACA;IACA,MAAMG,kCAAkC,GAAG,+BAA+B;IAE1E,MAAMC,wBAAwB,GAAI;AACtC,EAAEV,UAAW;AACb,gDAAgD,IAAAW,2BAAsB,EAACT,QAAQ,CAAE;AACjF,EAAED,QAAS;AACX,CAAC,CAACW,IAAI,CAAC,CAAC;IAEJR,8BAAc,CAACS,KAAK,CAClBX,QAAQ,EACR,IAAAY,gCAAiB,EACfX,OAAO,EACPM,kCAAkC,EAClCC,wBACF,CAAC,CAACK,IAAI,CAAC,IAAI,CACb,CAAC;EACH,CAAC,MAAM;IACLC,OAAO,CAACC,GAAG,CAAC,yDAAyD,CAAC;EACxE;AACF;AAEO,eAAeC,gCAAgCA,CACpDnB,OAAe,EACfoB,aAA0D,EAC1D;EACA,MAAMjB,QAAQ,GAAI,GAAEH,OAAQ,UAAS;EACrC,MAAMI,OAAO,GAAG,MAAMC,8BAAc,CAACC,IAAI,CAACH,QAAQ,CAAC;EAEnD,MAAMF,UAAU,GAAG,yCAAyC;EAC5D,MAAMC,QAAQ,GAAG,uCAAuC;EAExD,MAAMK,OAAO,GAAGH,OAAO,CAACI,KAAK,CAAC,IAAIC,MAAM,CAACR,UAAU,CAAC,CAAC;EAErD,IAAI,CAACM,OAAO,EAAE;IACZ,MAAMI,wBAAwB,GAAI;AACtC,EAAEV,UAAW;AACb;AACA,IAAImB,aAAa,KAAK,QAAQ,GAAG,qCAAqC,GAAG,EAAG;AAC5E,yDAAyD,IAAAR,2BAAsB,EAACT,QAAQ,CAAE;AAC1F;AACA,EAAED,QAAS;AACX,CAAC,CAACW,IAAI,CAAC,CAAC;IAEJR,8BAAc,CAACgB,MAAM,CAAClB,QAAQ,EAAEQ,wBAAwB,CAAC;EAC3D;AACF"} | |
\ No newline at end of file | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/ios/withNotificationsXcodeProject.js b/node_modules/customerio-expo-plugin/lib/commonjs/ios/withNotificationsXcodeProject.js | |
index 1c20031..1d6326e 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/ios/withNotificationsXcodeProject.js | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/ios/withNotificationsXcodeProject.js | |
@@ -12,7 +12,7 @@ var _fileManagement = require("./../helpers/utils/fileManagement"); | |
const PLIST_FILENAME = `${_ios.CIO_NOTIFICATION_TARGET_NAME}-Info.plist`; | |
const ENV_FILENAME = 'Env.swift'; | |
const TARGETED_DEVICE_FAMILY = `"1,2"`; | |
-const addNotificationServiceExtension = async (options, xcodeProject) => { | |
+const addCIONotificationServiceExtension = async (options, xcodeProject) => { | |
try { | |
var _options$pushNotifica; | |
if (options.pushNotification) { | |
@@ -40,9 +40,9 @@ const withCioNotificationsXcodeProject = (configOuter, props) => { | |
pushNotification, | |
useFrameworks | |
} = props; | |
- if (ios === undefined) throw new Error('Adding NotificationServiceExtension failed: ios config missing from app.config.js or app.json.'); | |
+ if (ios === undefined) throw new Error('Adding CIONotificationServiceExtension failed: ios config missing from app.config.js or app.json.'); | |
- // projectName and platformProjectRoot translates to appName and iosPath in addNotificationServiceExtension() | |
+ // projectName and platformProjectRoot translates to appName and iosPath in addCIONotificationServiceExtension() | |
const { | |
projectName, | |
platformProjectRoot | |
@@ -52,13 +52,13 @@ const withCioNotificationsXcodeProject = (configOuter, props) => { | |
buildNumber | |
} = ios; | |
if (bundleShortVersion === undefined) { | |
- throw new Error('Adding NotificationServiceExtension failed: version missing from app.config.js or app.json'); | |
+ throw new Error('Adding CIONotificationServiceExtension failed: version missing from app.config.js or app.json'); | |
} | |
if (bundleIdentifier === undefined) { | |
- throw new Error('Adding NotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'); | |
+ throw new Error('Adding CIONotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'); | |
} | |
if (projectName === undefined) { | |
- throw new Error('Adding NotificationServiceExtension failed: name missing from app.config.js or app.json'); | |
+ throw new Error('Adding CIONotificationServiceExtension failed: name missing from app.config.js or app.json'); | |
} | |
const options = { | |
...props, | |
@@ -72,7 +72,7 @@ const withCioNotificationsXcodeProject = (configOuter, props) => { | |
iosDeploymentTarget, | |
pushNotification | |
}; | |
- const modifiedProjectFile = await addNotificationServiceExtension(options, config.modResults); | |
+ const modifiedProjectFile = await addCIONotificationServiceExtension(options, config.modResults); | |
if (modifiedProjectFile) { | |
config.modResults = modifiedProjectFile; | |
} | |
@@ -102,7 +102,7 @@ const addRichPushXcodeProj = async (options, xcodeProject) => { | |
_fileManagement.FileManagement.mkdir(nsePath, { | |
recursive: true | |
}); | |
- const files = [PLIST_FILENAME, 'NotificationService.h', 'NotificationService.swift', 'NotificationService.m', ENV_FILENAME]; | |
+ const files = [PLIST_FILENAME, 'CIONotificationService.h', 'CIONotificationService.swift', 'CIONotificationService.m', ENV_FILENAME]; | |
const getTargetFile = filename => `${nsePath}/${filename}`; | |
files.forEach(filename => { | |
const targetFile = getTargetFile(filename); | |
@@ -147,7 +147,7 @@ const addRichPushXcodeProj = async (options, xcodeProject) => { | |
const nseTarget = xcodeProject.addTarget(_ios.CIO_NOTIFICATION_TARGET_NAME, 'app_extension', _ios.CIO_NOTIFICATION_TARGET_NAME, `${bundleIdentifier}.richpush`); | |
// Add build phases to the new target | |
- xcodeProject.addBuildPhase(['NotificationService.m', 'NotificationService.swift', 'Env.swift'], 'PBXSourcesBuildPhase', 'Sources', nseTarget.uuid); | |
+ xcodeProject.addBuildPhase(['CIONotificationService.m', 'CIONotificationService.swift', 'Env.swift'], 'PBXSourcesBuildPhase', 'Sources', nseTarget.uuid); | |
xcodeProject.addBuildPhase([], 'PBXResourcesBuildPhase', 'Resources', nseTarget.uuid); | |
xcodeProject.addBuildPhase([], 'PBXFrameworksBuildPhase', 'Frameworks', nseTarget.uuid); | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/ios/withNotificationsXcodeProject.js.map b/node_modules/customerio-expo-plugin/lib/commonjs/ios/withNotificationsXcodeProject.js.map | |
index 610aa75..aa4303a 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/ios/withNotificationsXcodeProject.js.map | |
+++ b/node_modules/customerio-expo-plugin/lib/commonjs/ios/withNotificationsXcodeProject.js.map | |
@@ -1 +1 @@ | |
-{"version":3,"names":["_configPlugins","require","_ios","_codeInjection","_injectCIOPodfileCode","_fileManagement","PLIST_FILENAME","CIO_NOTIFICATION_TARGET_NAME","ENV_FILENAME","TARGETED_DEVICE_FAMILY","addNotificationServiceExtension","options","xcodeProject","_options$pushNotifica","pushNotification","addPushNotificationFile","useRichPush","addRichPushXcodeProj","error","console","withCioNotificationsXcodeProject","configOuter","props","withXcodeProject","config","modRequest","ios","version","bundleShortVersion","appleTeamId","iosDeploymentTarget","useFrameworks","undefined","Error","projectName","platformProjectRoot","bundleIdentifier","buildNumber","bundleVersion","DEFAULT_BUNDLE_VERSION","iosPath","appName","modifiedProjectFile","modResults","exports","injectCIONotificationPodfileCode","pbxTargetByName","warn","nsePath","FileManagement","mkdir","recursive","files","getTargetFile","filename","forEach","targetFile","copyFile","LOCAL_PATH_TO_CIO_NSE_FILES","infoPlistTargetFile","updateNseInfoPlist","updateNseEnv","extGroup","addPbxGroup","groups","hash","project","objects","Object","keys","key","name","path","addToPbxGroup","uuid","projObjects","nseTarget","addTarget","addBuildPhase","configurations","pbxXCBuildConfigurationSection","buildSettings","PRODUCT_NAME","buildSettingsObj","DEVELOPMENT_TEAM","IPHONEOS_DEPLOYMENT_TARGET","CODE_SIGN_STYLE","SWIFT_VERSION","addTargetAttribute","payload","BUNDLE_SHORT_VERSION_RE","BUNDLE_VERSION_RE","plistFileString","readFile","replaceCodeByRegex","writeFile","envFileName","_options$pushNotifica2","_options$pushNotifica4","_options$pushNotifica6","SITE_ID_RE","API_KEY_RE","REGION_RE","envFileContent","env","siteId","_options$pushNotifica3","apiKey","_options$pushNotifica5","region","_options$pushNotifica7","regionMap","us","eu","toLowerCase","mappedRegion","_options$pushNotifica8","file","appPath","exists","log","updatePushFile","group","pbxCreateGroup","classesKey","findPBXGroupKey","addSourceFile","REGISTER_RE","snippet","disableNotificationRegistration","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET"],"sources":["withNotificationsXcodeProject.ts"],"sourcesContent":["import {\n ConfigPlugin,\n XcodeProject,\n withXcodeProject,\n} from '@expo/config-plugins';\n\nimport {\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_REGISTER_PUSHNOTIFICATION_SNIPPET,\n DEFAULT_BUNDLE_VERSION,\n LOCAL_PATH_TO_CIO_NSE_FILES,\n} from '../helpers/constants/ios';\nimport { replaceCodeByRegex } from '../helpers/utils/codeInjection';\nimport { injectCIONotificationPodfileCode } from '../helpers/utils/injectCIOPodfileCode';\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\nimport { FileManagement } from './../helpers/utils/fileManagement';\n\nconst PLIST_FILENAME = `${CIO_NOTIFICATION_TARGET_NAME}-Info.plist`;\nconst ENV_FILENAME = 'Env.swift';\n\nconst TARGETED_DEVICE_FAMILY = `\"1,2\"`;\n\nconst addNotificationServiceExtension = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: XcodeProject\n) => {\n try {\n if (options.pushNotification) {\n await addPushNotificationFile(options, xcodeProject);\n }\n\n if (options.pushNotification?.useRichPush) {\n await addRichPushXcodeProj(options, xcodeProject);\n }\n return xcodeProject;\n } catch (error: any) {\n console.error(error);\n return null;\n }\n};\n\nexport const withCioNotificationsXcodeProject: ConfigPlugin<\n CustomerIOPluginOptionsIOS\n> = (configOuter, props) => {\n return withXcodeProject(configOuter, async (config) => {\n const { modRequest, ios, version: bundleShortVersion } = config;\n const {\n appleTeamId,\n iosDeploymentTarget,\n pushNotification,\n useFrameworks,\n } = props;\n\n if (ios === undefined)\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios config missing from app.config.js or app.json.'\n );\n\n // projectName and platformProjectRoot translates to appName and iosPath in addNotificationServiceExtension()\n const { projectName, platformProjectRoot } = modRequest;\n const { bundleIdentifier, buildNumber } = ios;\n\n if (bundleShortVersion === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: version missing from app.config.js or app.json'\n );\n }\n\n if (bundleIdentifier === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'\n );\n }\n\n if (projectName === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: name missing from app.config.js or app.json'\n );\n }\n\n const options = {\n ...props,\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion: buildNumber || DEFAULT_BUNDLE_VERSION,\n iosPath: platformProjectRoot,\n appName: projectName,\n useFrameworks,\n iosDeploymentTarget,\n pushNotification,\n };\n\n const modifiedProjectFile = await addNotificationServiceExtension(\n options,\n config.modResults\n );\n\n if (modifiedProjectFile) {\n config.modResults = modifiedProjectFile;\n }\n\n return config;\n });\n};\n\nconst addRichPushXcodeProj = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) => {\n const {\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion,\n iosPath,\n iosDeploymentTarget,\n useFrameworks,\n } = options;\n\n await injectCIONotificationPodfileCode(iosPath, useFrameworks);\n\n // Check if `CIO_NOTIFICATION_TARGET_NAME` group already exist in the project\n // If true then skip creating a new group to avoid duplicate folders\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n const nsePath = `${iosPath}/${CIO_NOTIFICATION_TARGET_NAME}`;\n FileManagement.mkdir(nsePath, {\n recursive: true,\n });\n\n const files = [\n PLIST_FILENAME,\n 'NotificationService.h',\n 'NotificationService.swift',\n 'NotificationService.m',\n ENV_FILENAME,\n ];\n\n const getTargetFile = (filename: string) => `${nsePath}/${filename}`;\n\n files.forEach((filename) => {\n const targetFile = getTargetFile(filename);\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${filename}`,\n targetFile\n );\n });\n\n /* MODIFY COPIED EXTENSION FILES */\n const infoPlistTargetFile = getTargetFile(PLIST_FILENAME);\n updateNseInfoPlist({\n bundleVersion,\n bundleShortVersion,\n infoPlistTargetFile,\n });\n updateNseEnv(options, getTargetFile(ENV_FILENAME));\n\n // Create new PBXGroup for the extension\n const extGroup = xcodeProject.addPbxGroup(\n files,\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_NOTIFICATION_TARGET_NAME\n );\n\n // Add the new PBXGroup to the top level group. This makes the\n // files / folder appear in the file explorer in Xcode.\n const groups = xcodeProject.hash.project.objects['PBXGroup'];\n Object.keys(groups).forEach((key) => {\n if (groups[key].name === undefined && groups[key].path === undefined) {\n xcodeProject.addToPbxGroup(extGroup.uuid, key);\n }\n });\n\n // WORK AROUND for codeProject.addTarget BUG\n // Xcode projects don't contain these if there is only one target\n // An upstream fix should be made to the code referenced in this link:\n // - https://github.com/apache/cordova-node-xcode/blob/8b98cabc5978359db88dc9ff2d4c015cba40f150/lib/pbxProject.js#L860\n const projObjects = xcodeProject.hash.project.objects;\n projObjects['PBXTargetDependency'] = projObjects['PBXTargetDependency'] || {};\n projObjects['PBXContainerItemProxy'] =\n projObjects['PBXTargetDependency'] || {};\n\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n // Add the NSE target\n // This also adds PBXTargetDependency and PBXContainerItemProxy\n const nseTarget = xcodeProject.addTarget(\n CIO_NOTIFICATION_TARGET_NAME,\n 'app_extension',\n CIO_NOTIFICATION_TARGET_NAME,\n `${bundleIdentifier}.richpush`\n );\n\n // Add build phases to the new target\n xcodeProject.addBuildPhase(\n ['NotificationService.m', 'NotificationService.swift', 'Env.swift'],\n 'PBXSourcesBuildPhase',\n 'Sources',\n nseTarget.uuid\n );\n xcodeProject.addBuildPhase(\n [],\n 'PBXResourcesBuildPhase',\n 'Resources',\n nseTarget.uuid\n );\n\n xcodeProject.addBuildPhase(\n [],\n 'PBXFrameworksBuildPhase',\n 'Frameworks',\n nseTarget.uuid\n );\n\n // Edit the Deployment info of the target\n const configurations = xcodeProject.pbxXCBuildConfigurationSection();\n for (const key in configurations) {\n if (\n typeof configurations[key].buildSettings !== 'undefined' &&\n configurations[key].buildSettings.PRODUCT_NAME ===\n `\"${CIO_NOTIFICATION_TARGET_NAME}\"`\n ) {\n const buildSettingsObj = configurations[key].buildSettings;\n buildSettingsObj.DEVELOPMENT_TEAM = appleTeamId;\n buildSettingsObj.IPHONEOS_DEPLOYMENT_TARGET =\n iosDeploymentTarget || '13.0';\n buildSettingsObj.TARGETED_DEVICE_FAMILY = TARGETED_DEVICE_FAMILY;\n buildSettingsObj.CODE_SIGN_STYLE = 'Automatic';\n buildSettingsObj.SWIFT_VERSION = 4.2;\n }\n }\n\n // Add development team to the target & the main\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId, nseTarget);\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId);\n};\n\nconst updateNseInfoPlist = (payload: {\n bundleVersion?: string;\n bundleShortVersion?: string;\n infoPlistTargetFile: string;\n}) => {\n const BUNDLE_SHORT_VERSION_RE = /\\{\\{BUNDLE_SHORT_VERSION\\}\\}/;\n const BUNDLE_VERSION_RE = /\\{\\{BUNDLE_VERSION\\}\\}/;\n\n let plistFileString = FileManagement.readFile(payload.infoPlistTargetFile);\n\n if (payload.bundleVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_VERSION_RE,\n payload.bundleVersion\n );\n }\n\n if (payload.bundleShortVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_SHORT_VERSION_RE,\n payload.bundleShortVersion\n );\n }\n\n FileManagement.writeFile(payload.infoPlistTargetFile, plistFileString);\n};\n\nconst updateNseEnv = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const SITE_ID_RE = /\\{\\{SITE_ID\\}\\}/;\n const API_KEY_RE = /\\{\\{API_KEY\\}\\}/;\n const REGION_RE = /\\{\\{REGION\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n if (options.pushNotification?.env?.siteId) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n SITE_ID_RE,\n options.pushNotification?.env?.siteId\n );\n }\n\n if (options.pushNotification?.env?.apiKey) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n API_KEY_RE,\n options.pushNotification?.env?.apiKey\n );\n }\n\n if (options.pushNotification?.env?.region) {\n const regionMap = {\n us: 'Region.US',\n eu: 'Region.EU',\n };\n const region = options.pushNotification?.env?.region?.toLowerCase();\n const mappedRegion = (regionMap as any)[region] || '';\n if (!mappedRegion) {\n console.warn(\n `${options.pushNotification?.env?.region} is an invalid region. Please use the values from the docs: https://customer.io/docs/sdk/expo/getting-started/#configure-the-plugin`\n );\n } else {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n REGION_RE,\n mappedRegion\n );\n }\n }\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n\nasync function addPushNotificationFile(\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) {\n const { iosPath, appName } = options;\n const file = 'PushService.swift';\n const appPath = `${iosPath}/${appName}`;\n const getTargetFile = (filename: string) => `${appPath}/${filename}`;\n const targetFile = getTargetFile(file);\n\n // Check whether {file} exists in the project. If false, then add the file\n // If {file} exists then skip and return\n if (!FileManagement.exists(getTargetFile(file))) {\n FileManagement.mkdir(appPath, {\n recursive: true,\n });\n\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${file}`,\n targetFile\n );\n } else {\n console.log(`${getTargetFile(file)} already exists. Skipping...`);\n return;\n }\n\n updatePushFile(options, targetFile);\n\n const group = xcodeProject.pbxCreateGroup('CustomerIONotifications');\n const classesKey = xcodeProject.findPBXGroupKey({ name: `${appName}` });\n xcodeProject.addToPbxGroup(group, classesKey);\n\n xcodeProject.addSourceFile(`${appName}/${file}`, null, group);\n}\n\nconst updatePushFile = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const REGISTER_RE = /\\{\\{REGISTER_SNIPPET\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n let snippet = '';\n if (\n options.disableNotificationRegistration !== undefined &&\n options.disableNotificationRegistration === false\n ) {\n snippet = CIO_REGISTER_PUSHNOTIFICATION_SNIPPET;\n }\n\n envFileContent = replaceCodeByRegex(envFileContent, REGISTER_RE, snippet);\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n"],"mappings":";;;;;;AAAA,IAAAA,cAAA,GAAAC,OAAA;AAMA,IAAAC,IAAA,GAAAD,OAAA;AAMA,IAAAE,cAAA,GAAAF,OAAA;AACA,IAAAG,qBAAA,GAAAH,OAAA;AAEA,IAAAI,eAAA,GAAAJ,OAAA;AAEA,MAAMK,cAAc,GAAI,GAAEC,iCAA6B,aAAY;AACnE,MAAMC,YAAY,GAAG,WAAW;AAEhC,MAAMC,sBAAsB,GAAI,OAAM;AAEtC,MAAMC,+BAA+B,GAAG,MAAAA,CACtCC,OAAmC,EACnCC,YAA0B,KACvB;EACH,IAAI;IAAA,IAAAC,qBAAA;IACF,IAAIF,OAAO,CAACG,gBAAgB,EAAE;MAC5B,MAAMC,uBAAuB,CAACJ,OAAO,EAAEC,YAAY,CAAC;IACtD;IAEA,KAAAC,qBAAA,GAAIF,OAAO,CAACG,gBAAgB,cAAAD,qBAAA,eAAxBA,qBAAA,CAA0BG,WAAW,EAAE;MACzC,MAAMC,oBAAoB,CAACN,OAAO,EAAEC,YAAY,CAAC;IACnD;IACA,OAAOA,YAAY;EACrB,CAAC,CAAC,OAAOM,KAAU,EAAE;IACnBC,OAAO,CAACD,KAAK,CAACA,KAAK,CAAC;IACpB,OAAO,IAAI;EACb;AACF,CAAC;AAEM,MAAME,gCAEZ,GAAGA,CAACC,WAAW,EAAEC,KAAK,KAAK;EAC1B,OAAO,IAAAC,+BAAgB,EAACF,WAAW,EAAE,MAAOG,MAAM,IAAK;IACrD,MAAM;MAAEC,UAAU;MAAEC,GAAG;MAAEC,OAAO,EAAEC;IAAmB,CAAC,GAAGJ,MAAM;IAC/D,MAAM;MACJK,WAAW;MACXC,mBAAmB;MACnBhB,gBAAgB;MAChBiB;IACF,CAAC,GAAGT,KAAK;IAET,IAAII,GAAG,KAAKM,SAAS,EACnB,MAAM,IAAIC,KAAK,CACb,gGACF,CAAC;;IAEH;IACA,MAAM;MAAEC,WAAW;MAAEC;IAAoB,CAAC,GAAGV,UAAU;IACvD,MAAM;MAAEW,gBAAgB;MAAEC;IAAY,CAAC,GAAGX,GAAG;IAE7C,IAAIE,kBAAkB,KAAKI,SAAS,EAAE;MACpC,MAAM,IAAIC,KAAK,CACb,4FACF,CAAC;IACH;IAEA,IAAIG,gBAAgB,KAAKJ,SAAS,EAAE;MAClC,MAAM,IAAIC,KAAK,CACb,yGACF,CAAC;IACH;IAEA,IAAIC,WAAW,KAAKF,SAAS,EAAE;MAC7B,MAAM,IAAIC,KAAK,CACb,yFACF,CAAC;IACH;IAEA,MAAMtB,OAAO,GAAG;MACd,GAAGW,KAAK;MACRO,WAAW;MACXO,gBAAgB;MAChBR,kBAAkB;MAClBU,aAAa,EAAED,WAAW,IAAIE,2BAAsB;MACpDC,OAAO,EAAEL,mBAAmB;MAC5BM,OAAO,EAAEP,WAAW;MACpBH,aAAa;MACbD,mBAAmB;MACnBhB;IACF,CAAC;IAED,MAAM4B,mBAAmB,GAAG,MAAMhC,+BAA+B,CAC/DC,OAAO,EACPa,MAAM,CAACmB,UACT,CAAC;IAED,IAAID,mBAAmB,EAAE;MACvBlB,MAAM,CAACmB,UAAU,GAAGD,mBAAmB;IACzC;IAEA,OAAOlB,MAAM;EACf,CAAC,CAAC;AACJ,CAAC;AAACoB,OAAA,CAAAxB,gCAAA,GAAAA,gCAAA;AAEF,MAAMH,oBAAoB,GAAG,MAAAA,CAC3BN,OAAmC,EACnCC,YAAiB,KACd;EACH,MAAM;IACJiB,WAAW;IACXO,gBAAgB;IAChBR,kBAAkB;IAClBU,aAAa;IACbE,OAAO;IACPV,mBAAmB;IACnBC;EACF,CAAC,GAAGpB,OAAO;EAEX,MAAM,IAAAkC,sDAAgC,EAACL,OAAO,EAAET,aAAa,CAAC;;EAE9D;EACA;EACA,IAAInB,YAAY,CAACkC,eAAe,CAACvC,iCAA4B,CAAC,EAAE;IAC9DY,OAAO,CAAC4B,IAAI,CACT,GAAExC,iCAA6B,yCAClC,CAAC;IACD;EACF;EAEA,MAAMyC,OAAO,GAAI,GAAER,OAAQ,IAAGjC,iCAA6B,EAAC;EAC5D0C,8BAAc,CAACC,KAAK,CAACF,OAAO,EAAE;IAC5BG,SAAS,EAAE;EACb,CAAC,CAAC;EAEF,MAAMC,KAAK,GAAG,CACZ9C,cAAc,EACd,uBAAuB,EACvB,2BAA2B,EAC3B,uBAAuB,EACvBE,YAAY,CACb;EAED,MAAM6C,aAAa,GAAIC,QAAgB,IAAM,GAAEN,OAAQ,IAAGM,QAAS,EAAC;EAEpEF,KAAK,CAACG,OAAO,CAAED,QAAQ,IAAK;IAC1B,MAAME,UAAU,GAAGH,aAAa,CAACC,QAAQ,CAAC;IAC1CL,8BAAc,CAACQ,QAAQ,CACpB,GAAEC,gCAA4B,IAAGJ,QAAS,EAAC,EAC5CE,UACF,CAAC;EACH,CAAC,CAAC;;EAEF;EACA,MAAMG,mBAAmB,GAAGN,aAAa,CAAC/C,cAAc,CAAC;EACzDsD,kBAAkB,CAAC;IACjBtB,aAAa;IACbV,kBAAkB;IAClB+B;EACF,CAAC,CAAC;EACFE,YAAY,CAAClD,OAAO,EAAE0C,aAAa,CAAC7C,YAAY,CAAC,CAAC;;EAElD;EACA,MAAMsD,QAAQ,GAAGlD,YAAY,CAACmD,WAAW,CACvCX,KAAK,EACL7C,iCAA4B,EAC5BA,iCACF,CAAC;;EAED;EACA;EACA,MAAMyD,MAAM,GAAGpD,YAAY,CAACqD,IAAI,CAACC,OAAO,CAACC,OAAO,CAAC,UAAU,CAAC;EAC5DC,MAAM,CAACC,IAAI,CAACL,MAAM,CAAC,CAACT,OAAO,CAAEe,GAAG,IAAK;IACnC,IAAIN,MAAM,CAACM,GAAG,CAAC,CAACC,IAAI,KAAKvC,SAAS,IAAIgC,MAAM,CAACM,GAAG,CAAC,CAACE,IAAI,KAAKxC,SAAS,EAAE;MACpEpB,YAAY,CAAC6D,aAAa,CAACX,QAAQ,CAACY,IAAI,EAAEJ,GAAG,CAAC;IAChD;EACF,CAAC,CAAC;;EAEF;EACA;EACA;EACA;EACA,MAAMK,WAAW,GAAG/D,YAAY,CAACqD,IAAI,CAACC,OAAO,CAACC,OAAO;EACrDQ,WAAW,CAAC,qBAAqB,CAAC,GAAGA,WAAW,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;EAC7EA,WAAW,CAAC,uBAAuB,CAAC,GAClCA,WAAW,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;EAE1C,IAAI/D,YAAY,CAACkC,eAAe,CAACvC,iCAA4B,CAAC,EAAE;IAC9DY,OAAO,CAAC4B,IAAI,CACT,GAAExC,iCAA6B,yCAClC,CAAC;IACD;EACF;;EAEA;EACA;EACA,MAAMqE,SAAS,GAAGhE,YAAY,CAACiE,SAAS,CACtCtE,iCAA4B,EAC5B,eAAe,EACfA,iCAA4B,EAC3B,GAAE6B,gBAAiB,WACtB,CAAC;;EAED;EACAxB,YAAY,CAACkE,aAAa,CACxB,CAAC,uBAAuB,EAAE,2BAA2B,EAAE,WAAW,CAAC,EACnE,sBAAsB,EACtB,SAAS,EACTF,SAAS,CAACF,IACZ,CAAC;EACD9D,YAAY,CAACkE,aAAa,CACxB,EAAE,EACF,wBAAwB,EACxB,WAAW,EACXF,SAAS,CAACF,IACZ,CAAC;EAED9D,YAAY,CAACkE,aAAa,CACxB,EAAE,EACF,yBAAyB,EACzB,YAAY,EACZF,SAAS,CAACF,IACZ,CAAC;;EAED;EACA,MAAMK,cAAc,GAAGnE,YAAY,CAACoE,8BAA8B,CAAC,CAAC;EACpE,KAAK,MAAMV,GAAG,IAAIS,cAAc,EAAE;IAChC,IACE,OAAOA,cAAc,CAACT,GAAG,CAAC,CAACW,aAAa,KAAK,WAAW,IACxDF,cAAc,CAACT,GAAG,CAAC,CAACW,aAAa,CAACC,YAAY,KAC3C,IAAG3E,iCAA6B,GAAE,EACrC;MACA,MAAM4E,gBAAgB,GAAGJ,cAAc,CAACT,GAAG,CAAC,CAACW,aAAa;MAC1DE,gBAAgB,CAACC,gBAAgB,GAAGvD,WAAW;MAC/CsD,gBAAgB,CAACE,0BAA0B,GACzCvD,mBAAmB,IAAI,MAAM;MAC/BqD,gBAAgB,CAAC1E,sBAAsB,GAAGA,sBAAsB;MAChE0E,gBAAgB,CAACG,eAAe,GAAG,WAAW;MAC9CH,gBAAgB,CAACI,aAAa,GAAG,GAAG;IACtC;EACF;;EAEA;EACA3E,YAAY,CAAC4E,kBAAkB,CAAC,iBAAiB,EAAE3D,WAAW,EAAE+C,SAAS,CAAC;EAC1EhE,YAAY,CAAC4E,kBAAkB,CAAC,iBAAiB,EAAE3D,WAAW,CAAC;AACjE,CAAC;AAED,MAAM+B,kBAAkB,GAAI6B,OAI3B,IAAK;EACJ,MAAMC,uBAAuB,GAAG,8BAA8B;EAC9D,MAAMC,iBAAiB,GAAG,wBAAwB;EAElD,IAAIC,eAAe,GAAG3C,8BAAc,CAAC4C,QAAQ,CAACJ,OAAO,CAAC9B,mBAAmB,CAAC;EAE1E,IAAI8B,OAAO,CAACnD,aAAa,EAAE;IACzBsD,eAAe,GAAG,IAAAE,iCAAkB,EAClCF,eAAe,EACfD,iBAAiB,EACjBF,OAAO,CAACnD,aACV,CAAC;EACH;EAEA,IAAImD,OAAO,CAAC7D,kBAAkB,EAAE;IAC9BgE,eAAe,GAAG,IAAAE,iCAAkB,EAClCF,eAAe,EACfF,uBAAuB,EACvBD,OAAO,CAAC7D,kBACV,CAAC;EACH;EAEAqB,8BAAc,CAAC8C,SAAS,CAACN,OAAO,CAAC9B,mBAAmB,EAAEiC,eAAe,CAAC;AACxE,CAAC;AAED,MAAM/B,YAAY,GAAGA,CACnBlD,OAAmC,EACnCqF,WAAmB,KAChB;EAAA,IAAAC,sBAAA,EAAAC,sBAAA,EAAAC,sBAAA;EACH,MAAMC,UAAU,GAAG,iBAAiB;EACpC,MAAMC,UAAU,GAAG,iBAAiB;EACpC,MAAMC,SAAS,GAAG,gBAAgB;EAElC,IAAIC,cAAc,GAAGtD,8BAAc,CAAC4C,QAAQ,CAACG,WAAW,CAAC;EAEzD,KAAAC,sBAAA,GAAItF,OAAO,CAACG,gBAAgB,cAAAmF,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BO,GAAG,cAAAP,sBAAA,eAA7BA,sBAAA,CAA+BQ,MAAM,EAAE;IAAA,IAAAC,sBAAA;IACzCH,cAAc,GAAG,IAAAT,iCAAkB,EACjCS,cAAc,EACdH,UAAU,GAAAM,sBAAA,GACV/F,OAAO,CAACG,gBAAgB,cAAA4F,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BF,GAAG,cAAAE,sBAAA,uBAA7BA,sBAAA,CAA+BD,MACjC,CAAC;EACH;EAEA,KAAAP,sBAAA,GAAIvF,OAAO,CAACG,gBAAgB,cAAAoF,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BM,GAAG,cAAAN,sBAAA,eAA7BA,sBAAA,CAA+BS,MAAM,EAAE;IAAA,IAAAC,sBAAA;IACzCL,cAAc,GAAG,IAAAT,iCAAkB,EACjCS,cAAc,EACdF,UAAU,GAAAO,sBAAA,GACVjG,OAAO,CAACG,gBAAgB,cAAA8F,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BJ,GAAG,cAAAI,sBAAA,uBAA7BA,sBAAA,CAA+BD,MACjC,CAAC;EACH;EAEA,KAAAR,sBAAA,GAAIxF,OAAO,CAACG,gBAAgB,cAAAqF,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BK,GAAG,cAAAL,sBAAA,eAA7BA,sBAAA,CAA+BU,MAAM,EAAE;IAAA,IAAAC,sBAAA;IACzC,MAAMC,SAAS,GAAG;MAChBC,EAAE,EAAE,WAAW;MACfC,EAAE,EAAE;IACN,CAAC;IACD,MAAMJ,MAAM,IAAAC,sBAAA,GAAGnG,OAAO,CAACG,gBAAgB,cAAAgG,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BN,GAAG,cAAAM,sBAAA,gBAAAA,sBAAA,GAA7BA,sBAAA,CAA+BD,MAAM,cAAAC,sBAAA,uBAArCA,sBAAA,CAAuCI,WAAW,CAAC,CAAC;IACnE,MAAMC,YAAY,GAAIJ,SAAS,CAASF,MAAM,CAAC,IAAI,EAAE;IACrD,IAAI,CAACM,YAAY,EAAE;MAAA,IAAAC,sBAAA;MACjBjG,OAAO,CAAC4B,IAAI,CACT,IAAAqE,sBAAA,GAAEzG,OAAO,CAACG,gBAAgB,cAAAsG,sBAAA,gBAAAA,sBAAA,GAAxBA,sBAAA,CAA0BZ,GAAG,cAAAY,sBAAA,uBAA7BA,sBAAA,CAA+BP,MAAO,qIAC3C,CAAC;IACH,CAAC,MAAM;MACLN,cAAc,GAAG,IAAAT,iCAAkB,EACjCS,cAAc,EACdD,SAAS,EACTa,YACF,CAAC;IACH;EACF;EAEAlE,8BAAc,CAAC8C,SAAS,CAACC,WAAW,EAAEO,cAAc,CAAC;AACvD,CAAC;AAED,eAAexF,uBAAuBA,CACpCJ,OAAmC,EACnCC,YAAiB,EACjB;EACA,MAAM;IAAE4B,OAAO;IAAEC;EAAQ,CAAC,GAAG9B,OAAO;EACpC,MAAM0G,IAAI,GAAG,mBAAmB;EAChC,MAAMC,OAAO,GAAI,GAAE9E,OAAQ,IAAGC,OAAQ,EAAC;EACvC,MAAMY,aAAa,GAAIC,QAAgB,IAAM,GAAEgE,OAAQ,IAAGhE,QAAS,EAAC;EACpE,MAAME,UAAU,GAAGH,aAAa,CAACgE,IAAI,CAAC;;EAEtC;EACA;EACA,IAAI,CAACpE,8BAAc,CAACsE,MAAM,CAAClE,aAAa,CAACgE,IAAI,CAAC,CAAC,EAAE;IAC/CpE,8BAAc,CAACC,KAAK,CAACoE,OAAO,EAAE;MAC5BnE,SAAS,EAAE;IACb,CAAC,CAAC;IAEFF,8BAAc,CAACQ,QAAQ,CACpB,GAAEC,gCAA4B,IAAG2D,IAAK,EAAC,EACxC7D,UACF,CAAC;EACH,CAAC,MAAM;IACLrC,OAAO,CAACqG,GAAG,CAAE,GAAEnE,aAAa,CAACgE,IAAI,CAAE,8BAA6B,CAAC;IACjE;EACF;EAEAI,cAAc,CAAC9G,OAAO,EAAE6C,UAAU,CAAC;EAEnC,MAAMkE,KAAK,GAAG9G,YAAY,CAAC+G,cAAc,CAAC,yBAAyB,CAAC;EACpE,MAAMC,UAAU,GAAGhH,YAAY,CAACiH,eAAe,CAAC;IAAEtD,IAAI,EAAG,GAAE9B,OAAQ;EAAE,CAAC,CAAC;EACvE7B,YAAY,CAAC6D,aAAa,CAACiD,KAAK,EAAEE,UAAU,CAAC;EAE7ChH,YAAY,CAACkH,aAAa,CAAE,GAAErF,OAAQ,IAAG4E,IAAK,EAAC,EAAE,IAAI,EAAEK,KAAK,CAAC;AAC/D;AAEA,MAAMD,cAAc,GAAGA,CACrB9G,OAAmC,EACnCqF,WAAmB,KAChB;EACH,MAAM+B,WAAW,GAAG,0BAA0B;EAE9C,IAAIxB,cAAc,GAAGtD,8BAAc,CAAC4C,QAAQ,CAACG,WAAW,CAAC;EAEzD,IAAIgC,OAAO,GAAG,EAAE;EAChB,IACErH,OAAO,CAACsH,+BAA+B,KAAKjG,SAAS,IACrDrB,OAAO,CAACsH,+BAA+B,KAAK,KAAK,EACjD;IACAD,OAAO,GAAGE,0CAAqC;EACjD;EAEA3B,cAAc,GAAG,IAAAT,iCAAkB,EAACS,cAAc,EAAEwB,WAAW,EAAEC,OAAO,CAAC;EAEzE/E,8BAAc,CAAC8C,SAAS,CAACC,WAAW,EAAEO,cAAc,CAAC;AACvD,CAAC"} | |
\ No newline at end of file | |
+{"version":3,"names":["_configPlugins","require","_ios","_codeInjection","_injectCIOPodfileCode","_fileManagement","PLIST_FILENAME","CIO_NOTIFICATION_TARGET_NAME","ENV_FILENAME","TARGETED_DEVICE_FAMILY","addCIONotificationServiceExtension","options","xcodeProject","_options$pushNotifica","pushNotification","addPushNotificationFile","useRichPush","addRichPushXcodeProj","error","console","withCioNotificationsXcodeProject","configOuter","props","withXcodeProject","config","modRequest","ios","version","bundleShortVersion","appleTeamId","iosDeploymentTarget","useFrameworks","undefined","Error","projectName","platformProjectRoot","bundleIdentifier","buildNumber","bundleVersion","DEFAULT_BUNDLE_VERSION","iosPath","appName","modifiedProjectFile","modResults","exports","injectCIONotificationPodfileCode","pbxTargetByName","warn","nsePath","FileManagement","mkdir","recursive","files","getTargetFile","filename","forEach","targetFile","copyFile","LOCAL_PATH_TO_CIO_NSE_FILES","infoPlistTargetFile","updateNseInfoPlist","updateNseEnv","extGroup","addPbxGroup","groups","hash","project","objects","Object","keys","key","name","path","addToPbxGroup","uuid","projObjects","nseTarget","addTarget","addBuildPhase","configurations","pbxXCBuildConfigurationSection","buildSettings","PRODUCT_NAME","buildSettingsObj","DEVELOPMENT_TEAM","IPHONEOS_DEPLOYMENT_TARGET","CODE_SIGN_STYLE","SWIFT_VERSION","addTargetAttribute","payload","BUNDLE_SHORT_VERSION_RE","BUNDLE_VERSION_RE","plistFileString","readFile","replaceCodeByRegex","writeFile","envFileName","_options$pushNotifica2","_options$pushNotifica4","_options$pushNotifica6","SITE_ID_RE","API_KEY_RE","REGION_RE","envFileContent","env","siteId","_options$pushNotifica3","apiKey","_options$pushNotifica5","region","_options$pushNotifica7","regionMap","us","eu","toLowerCase","mappedRegion","_options$pushNotifica8","file","appPath","exists","log","updatePushFile","group","pbxCreateGroup","classesKey","findPBXGroupKey","addSourceFile","REGISTER_RE","snippet","disableNotificationRegistration","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET"],"sources":["withNotificationsXcodeProject.ts"],"sourcesContent":["import {\n ConfigPlugin,\n XcodeProject,\n withXcodeProject,\n} from '@expo/config-plugins';\n\nimport {\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_REGISTER_PUSHNOTIFICATION_SNIPPET,\n DEFAULT_BUNDLE_VERSION,\n LOCAL_PATH_TO_CIO_NSE_FILES,\n} from '../helpers/constants/ios';\nimport { replaceCodeByRegex } from '../helpers/utils/codeInjection';\nimport { injectCIONotificationPodfileCode } from '../helpers/utils/injectCIOPodfileCode';\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\nimport { FileManagement } from './../helpers/utils/fileManagement';\n\nconst PLIST_FILENAME = `${CIO_NOTIFICATION_TARGET_NAME}-Info.plist`;\nconst ENV_FILENAME = 'Env.swift';\n\nconst TARGETED_DEVICE_FAMILY = `\"1,2\"`;\n\nconst addCIONotificationServiceExtension = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: XcodeProject\n) => {\n try {\n if (options.pushNotification) {\n await addPushNotificationFile(options, xcodeProject);\n }\n\n if (options.pushNotification?.useRichPush) {\n await addRichPushXcodeProj(options, xcodeProject);\n }\n return xcodeProject;\n } catch (error: any) {\n console.error(error);\n return null;\n }\n};\n\nexport const withCioNotificationsXcodeProject: ConfigPlugin<\n CustomerIOPluginOptionsIOS\n> = (configOuter, props) => {\n return withXcodeProject(configOuter, async (config) => {\n const { modRequest, ios, version: bundleShortVersion } = config;\n const {\n appleTeamId,\n iosDeploymentTarget,\n pushNotification,\n useFrameworks,\n } = props;\n\n if (ios === undefined)\n throw new Error(\n 'Adding CIONotificationServiceExtension failed: ios config missing from app.config.js or app.json.'\n );\n\n // projectName and platformProjectRoot translates to appName and iosPath in addCIONotificationServiceExtension()\n const { projectName, platformProjectRoot } = modRequest;\n const { bundleIdentifier, buildNumber } = ios;\n\n if (bundleShortVersion === undefined) {\n throw new Error(\n 'Adding CIONotificationServiceExtension failed: version missing from app.config.js or app.json'\n );\n }\n\n if (bundleIdentifier === undefined) {\n throw new Error(\n 'Adding CIONotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'\n );\n }\n\n if (projectName === undefined) {\n throw new Error(\n 'Adding CIONotificationServiceExtension failed: name missing from app.config.js or app.json'\n );\n }\n\n const options = {\n ...props,\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion: buildNumber || DEFAULT_BUNDLE_VERSION,\n iosPath: platformProjectRoot,\n appName: projectName,\n useFrameworks,\n iosDeploymentTarget,\n pushNotification,\n };\n\n const modifiedProjectFile = await addCIONotificationServiceExtension(\n options,\n config.modResults\n );\n\n if (modifiedProjectFile) {\n config.modResults = modifiedProjectFile;\n }\n\n return config;\n });\n};\n\nconst addRichPushXcodeProj = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) => {\n const {\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion,\n iosPath,\n iosDeploymentTarget,\n useFrameworks,\n } = options;\n\n await injectCIONotificationPodfileCode(iosPath, useFrameworks);\n\n // Check if `CIO_NOTIFICATION_TARGET_NAME` group already exist in the project\n // If true then skip creating a new group to avoid duplicate folders\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n const nsePath = `${iosPath}/${CIO_NOTIFICATION_TARGET_NAME}`;\n FileManagement.mkdir(nsePath, {\n recursive: true,\n });\n\n const files = [\n PLIST_FILENAME,\n 'CIONotificationService.h',\n 'CIONotificationService.swift',\n 'CIONotificationService.m',\n ENV_FILENAME,\n ];\n\n const getTargetFile = (filename: string) => `${nsePath}/${filename}`;\n\n files.forEach((filename) => {\n const targetFile = getTargetFile(filename);\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${filename}`,\n targetFile\n );\n });\n\n /* MODIFY COPIED EXTENSION FILES */\n const infoPlistTargetFile = getTargetFile(PLIST_FILENAME);\n updateNseInfoPlist({\n bundleVersion,\n bundleShortVersion,\n infoPlistTargetFile,\n });\n updateNseEnv(options, getTargetFile(ENV_FILENAME));\n\n // Create new PBXGroup for the extension\n const extGroup = xcodeProject.addPbxGroup(\n files,\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_NOTIFICATION_TARGET_NAME\n );\n\n // Add the new PBXGroup to the top level group. This makes the\n // files / folder appear in the file explorer in Xcode.\n const groups = xcodeProject.hash.project.objects['PBXGroup'];\n Object.keys(groups).forEach((key) => {\n if (groups[key].name === undefined && groups[key].path === undefined) {\n xcodeProject.addToPbxGroup(extGroup.uuid, key);\n }\n });\n\n // WORK AROUND for codeProject.addTarget BUG\n // Xcode projects don't contain these if there is only one target\n // An upstream fix should be made to the code referenced in this link:\n // - https://github.com/apache/cordova-node-xcode/blob/8b98cabc5978359db88dc9ff2d4c015cba40f150/lib/pbxProject.js#L860\n const projObjects = xcodeProject.hash.project.objects;\n projObjects['PBXTargetDependency'] = projObjects['PBXTargetDependency'] || {};\n projObjects['PBXContainerItemProxy'] =\n projObjects['PBXTargetDependency'] || {};\n\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n // Add the NSE target\n // This also adds PBXTargetDependency and PBXContainerItemProxy\n const nseTarget = xcodeProject.addTarget(\n CIO_NOTIFICATION_TARGET_NAME,\n 'app_extension',\n CIO_NOTIFICATION_TARGET_NAME,\n `${bundleIdentifier}.richpush`\n );\n\n // Add build phases to the new target\n xcodeProject.addBuildPhase(\n ['CIONotificationService.m', 'CIONotificationService.swift', 'Env.swift'],\n 'PBXSourcesBuildPhase',\n 'Sources',\n nseTarget.uuid\n );\n xcodeProject.addBuildPhase(\n [],\n 'PBXResourcesBuildPhase',\n 'Resources',\n nseTarget.uuid\n );\n\n xcodeProject.addBuildPhase(\n [],\n 'PBXFrameworksBuildPhase',\n 'Frameworks',\n nseTarget.uuid\n );\n\n // Edit the Deployment info of the target\n const configurations = xcodeProject.pbxXCBuildConfigurationSection();\n for (const key in configurations) {\n if (\n typeof configurations[key].buildSettings !== 'undefined' &&\n configurations[key].buildSettings.PRODUCT_NAME ===\n `\"${CIO_NOTIFICATION_TARGET_NAME}\"`\n ) {\n const buildSettingsObj = configurations[key].buildSettings;\n buildSettingsObj.DEVELOPMENT_TEAM = appleTeamId;\n buildSettingsObj.IPHONEOS_DEPLOYMENT_TARGET =\n iosDeploymentTarget || '13.0';\n buildSettingsObj.TARGETED_DEVICE_FAMILY = TARGETED_DEVICE_FAMILY;\n buildSettingsObj.CODE_SIGN_STYLE = 'Automatic';\n buildSettingsObj.SWIFT_VERSION = 4.2;\n }\n }\n\n // Add development team to the target & the main\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId, nseTarget);\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId);\n};\n\nconst updateNseInfoPlist = (payload: {\n bundleVersion?: string;\n bundleShortVersion?: string;\n infoPlistTargetFile: string;\n}) => {\n const BUNDLE_SHORT_VERSION_RE = /\\{\\{BUNDLE_SHORT_VERSION\\}\\}/;\n const BUNDLE_VERSION_RE = /\\{\\{BUNDLE_VERSION\\}\\}/;\n\n let plistFileString = FileManagement.readFile(payload.infoPlistTargetFile);\n\n if (payload.bundleVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_VERSION_RE,\n payload.bundleVersion\n );\n }\n\n if (payload.bundleShortVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_SHORT_VERSION_RE,\n payload.bundleShortVersion\n );\n }\n\n FileManagement.writeFile(payload.infoPlistTargetFile, plistFileString);\n};\n\nconst updateNseEnv = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const SITE_ID_RE = /\\{\\{SITE_ID\\}\\}/;\n const API_KEY_RE = /\\{\\{API_KEY\\}\\}/;\n const REGION_RE = /\\{\\{REGION\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n if (options.pushNotification?.env?.siteId) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n SITE_ID_RE,\n options.pushNotification?.env?.siteId\n );\n }\n\n if (options.pushNotification?.env?.apiKey) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n API_KEY_RE,\n options.pushNotification?.env?.apiKey\n );\n }\n\n if (options.pushNotification?.env?.region) {\n const regionMap = {\n us: 'Region.US',\n eu: 'Region.EU',\n };\n const region = options.pushNotification?.env?.region?.toLowerCase();\n const mappedRegion = (regionMap as any)[region] || '';\n if (!mappedRegion) {\n console.warn(\n `${options.pushNotification?.env?.region} is an invalid region. Please use the values from the docs: https://customer.io/docs/sdk/expo/getting-started/#configure-the-plugin`\n );\n } else {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n REGION_RE,\n mappedRegion\n );\n }\n }\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n\nasync function addPushNotificationFile(\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) {\n const { iosPath, appName } = options;\n const file = 'PushService.swift';\n const appPath = `${iosPath}/${appName}`;\n const getTargetFile = (filename: string) => `${appPath}/${filename}`;\n const targetFile = getTargetFile(file);\n\n // Check whether {file} exists in the project. If false, then add the file\n // If {file} exists then skip and return\n if (!FileManagement.exists(getTargetFile(file))) {\n FileManagement.mkdir(appPath, {\n recursive: true,\n });\n\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${file}`,\n targetFile\n );\n } else {\n console.log(`${getTargetFile(file)} already exists. Skipping...`);\n return;\n }\n\n updatePushFile(options, targetFile);\n\n const group = xcodeProject.pbxCreateGroup('CustomerIONotifications');\n const classesKey = xcodeProject.findPBXGroupKey({ name: `${appName}` });\n xcodeProject.addToPbxGroup(group, classesKey);\n\n xcodeProject.addSourceFile(`${appName}/${file}`, null, group);\n}\n\nconst updatePushFile = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const REGISTER_RE = /\\{\\{REGISTER_SNIPPET\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n let snippet = '';\n if (\n options.disableNotificationRegistration !== undefined &&\n options.disableNotificationRegistration === false\n ) {\n snippet = CIO_REGISTER_PUSHNOTIFICATION_SNIPPET;\n }\n\n envFileContent = replaceCodeByRegex(envFileContent, REGISTER_RE, snippet);\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n"],"mappings":"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"} | |
\ No newline at end of file | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/.DS_Store b/node_modules/customerio-expo-plugin/lib/module/.DS_Store | |
new file mode 100644 | |
index 0000000..2ef7729 | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/lib/module/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/.DS_Store b/node_modules/customerio-expo-plugin/lib/module/helpers/.DS_Store | |
new file mode 100644 | |
index 0000000..cfba5f4 | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/lib/module/helpers/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/constants/ios.js b/node_modules/customerio-expo-plugin/lib/module/helpers/constants/ios.js | |
index 37e7393..8ea2afa 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/module/helpers/constants/ios.js | |
+++ b/node_modules/customerio-expo-plugin/lib/module/helpers/constants/ios.js | |
@@ -25,7 +25,7 @@ export const CIO_DEEPLINK_COMMENT_REGEX = /\sDeep link workaround for app killed | |
export const DEFAULT_BUNDLE_VERSION = '1'; | |
export const DEFAULT_BUNDLE_SHORT_VERSION = '1.0'; | |
export const CIO_TARGET_NAME = 'CustomerIOSDK'; | |
-export const CIO_NOTIFICATION_TARGET_NAME = 'NotificationService'; | |
+export const CIO_NOTIFICATION_TARGET_NAME = 'CIONotificationService'; | |
export const CIO_APPDELEGATEHEADER_IMPORT_SNIPPET = `#import <UserNotifications/UserNotifications.h>`; | |
export const CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET = 'UNUserNotificationCenterDelegate'; | |
export const CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET = ` | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/constants/ios.js.map b/node_modules/customerio-expo-plugin/lib/module/helpers/constants/ios.js.map | |
index bb71efb..ca0a5ab 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/module/helpers/constants/ios.js.map | |
+++ b/node_modules/customerio-expo-plugin/lib/module/helpers/constants/ios.js.map | |
@@ -1 +1 @@ | |
-{"version":3,"names":["finder","require","path","f","__dirname","pluginPackageRoot","next","filename","dirname","LOCAL_PATH_TO_RN_SDK","join","LOCAL_PATH_TO_CIO_NSE_FILES","getRelativePathToRNSDK","currentFile","relative","IOS_DEPLOYMENT_TARGET","GROUP_IDENTIFIER_TEMPLATE_REGEX","BUNDLE_SHORT_VERSION_TEMPLATE_REGEX","BUNDLE_VERSION_TEMPLATE_REGEX","CIO_DIDFINISHLAUNCHINGMETHOD_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERRORFULL_REGEX","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX","CIO_APPDELEGATEDECLARATION_REGEX","CIO_APPDELEGATEHEADER_REGEX","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_DEEPLINK_COMMENT_REGEX","DEFAULT_BUNDLE_VERSION","DEFAULT_BUNDLE_SHORT_VERSION","CIO_TARGET_NAME","CIO_NOTIFICATION_TARGET_NAME","CIO_APPDELEGATEHEADER_IMPORT_SNIPPET","CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET","CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET","CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET","CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET","CIO_CONFIGURECIOSDKUSERNOTIFICATIONCENTER_SNIPPET","CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET","CIO_DIDRECEIVENOTIFICATIONRESPONSEHANDLER_SNIPPET","CIO_WILLPRESENTNOTIFICATIONHANDLER_SNIPPET","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET"],"sources":["ios.ts"],"sourcesContent":["const finder = require('find-package-json');\nconst path = require('path');\n\nconst f = finder(__dirname);\nlet pluginPackageRoot = f.next().filename;\n// This is the path to the root of the customerio-expo-plugin package\npluginPackageRoot = path.dirname(pluginPackageRoot);\n\nexport const LOCAL_PATH_TO_RN_SDK = path.join(\n pluginPackageRoot,\n '../customerio-reactnative'\n)\n\nexport const LOCAL_PATH_TO_CIO_NSE_FILES = path.join(\n pluginPackageRoot,\n 'src/helpers/native-files/ios'\n);\n\nexport function getRelativePathToRNSDK(currentFile: string) {\n return path.relative(path.dirname(currentFile), LOCAL_PATH_TO_RN_SDK);\n}\n\nexport const IOS_DEPLOYMENT_TARGET = '13.0';\nexport const GROUP_IDENTIFIER_TEMPLATE_REGEX = /{{GROUP_IDENTIFIER}}/gm;\nexport const BUNDLE_SHORT_VERSION_TEMPLATE_REGEX = /{{BUNDLE_SHORT_VERSION}}/gm;\nexport const BUNDLE_VERSION_TEMPLATE_REGEX = /{{BUNDLE_VERSION}}/gm;\nexport const CIO_DIDFINISHLAUNCHINGMETHOD_REGEX =\n /.*\\[super(\\s)application:application(\\s)didFinishLaunchingWithOptions:launchOptions\\];/;\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX =\n /return \\[super application:application didFailToRegisterForRemoteNotificationsWithError:error\\];/;\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERRORFULL_REGEX =\n /(- \\(void\\)application:\\(UIApplication \\*\\)application didFailToRegisterForRemoteNotificationsWithError:\\(NSError \\*\\)error(\\s|\\n)*?\\{)(.|\\n){2}.*\\n\\}/;\n\nexport const CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX =\n /return \\[super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken\\];/;\n\nexport const CIO_APPDELEGATEDECLARATION_REGEX =\n /@implementation AppDelegate(.|\\n)/;\n\nexport const CIO_APPDELEGATEHEADER_REGEX =\n /(@interface AppDelegate\\s*:\\s*EXAppDelegateWrapper\\s*)(<([^>]+)>)?/;\n\nexport const CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX = \n/^\\s*RCTBridge\\s*\\*\\s*\\w+\\s*=\\s*\\[\\s*self\\.reactDelegate\\s+createBridgeWithDelegate:self\\s+launchOptions:launchOptions\\s*\\];\\s*$/gm;\n\nexport const CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX = \n/^\\s*return\\s\\[\\s*super\\s*application:\\s*application\\s*didFinishLaunchingWithOptions\\s*:\\s*launchOptions\\s*\\];/gm;\n\nexport const CIO_DEEPLINK_COMMENT_REGEX = /\\sDeep link workaround for app killed state start/gm;\nexport const DEFAULT_BUNDLE_VERSION = '1';\nexport const DEFAULT_BUNDLE_SHORT_VERSION = '1.0';\nexport const CIO_TARGET_NAME = 'CustomerIOSDK';\nexport const CIO_NOTIFICATION_TARGET_NAME = 'NotificationService';\n\nexport const CIO_APPDELEGATEHEADER_IMPORT_SNIPPET = `#import <UserNotifications/UserNotifications.h>`;\nexport const CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET = 'UNUserNotificationCenterDelegate';\nexport const CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET = `\nCIOAppPushNotificationsHandler* pnHandlerObj = [[CIOAppPushNotificationsHandler alloc] init];\n`;\nexport const CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET = `\nRCTBridge *bridge = [self.reactDelegate createBridgeWithDelegate:self launchOptions:modifiedLaunchOptions];\n`;\n\nexport const CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET = `\nreturn [super application:application didFinishLaunchingWithOptions:modifiedLaunchOptions];`\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET = `\n [super application:application didFailToRegisterForRemoteNotificationsWithError:error];\n [pnHandlerObj application:application error:error];\n`;\n\nexport const CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET = `\n [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];\n return [pnHandlerObj application:application deviceToken:deviceToken];\n`;\n\nexport const CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET = `\n // Register for push notifications\n [pnHandlerObj registerPushNotification];\n`;\n\nexport const CIO_CONFIGURECIOSDKUSERNOTIFICATIONCENTER_SNIPPET = `\n UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];\n center.delegate = self;\n`;\n\nexport const CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET = `\n// Deep link workaround for app killed state start\nNSMutableDictionary *modifiedLaunchOptions = [NSMutableDictionary dictionaryWithDictionary:launchOptions];\n if (launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey]) {\n NSDictionary *pushContent = launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey];\n if (pushContent[@\"CIO\"] && pushContent[@\"CIO\"][@\"push\"] && pushContent[@\"CIO\"][@\"push\"][@\"link\"]) {\n NSString *initialURL = pushContent[@\"CIO\"][@\"push\"][@\"link\"];\n if (!launchOptions[UIApplicationLaunchOptionsURLKey]) {\n modifiedLaunchOptions[UIApplicationLaunchOptionsURLKey] = [NSURL URLWithString:initialURL];\n }\n }\n }\n//Deep link workaround for app killed state ends\n`;\n\n// Enable push handling - notification response\nexport const CIO_DIDRECEIVENOTIFICATIONRESPONSEHANDLER_SNIPPET = `\n- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler {\n [pnHandlerObj userNotificationCenter:center didReceiveNotificationResponse:response withCompletionHandler:completionHandler];\n}`;\n\n// Foreground push handling\nexport const CIO_WILLPRESENTNOTIFICATIONHANDLER_SNIPPET = `\n// show push when the app is in foreground\n- (void)userNotificationCenter:(UNUserNotificationCenter* )center willPresentNotification:(UNNotification* )notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler {\n completionHandler( UNNotificationPresentationOptionAlert + UNNotificationPresentationOptionSound);\n}`;\nexport const CIO_REGISTER_PUSHNOTIFICATION_SNIPPET = `\n@objc(registerPushNotification)\n public func registerPushNotification() {\n\n let center = UNUserNotificationCenter.current()\n center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in\n if error == nil{\n DispatchQueue.main.async {\n UIApplication.shared.registerForRemoteNotifications()\n }\n }\n }\n }`;\n"],"mappings":"AAAA,MAAMA,MAAM,GAAGC,OAAO,CAAC,mBAAmB,CAAC;AAC3C,MAAMC,IAAI,GAAGD,OAAO,CAAC,MAAM,CAAC;AAE5B,MAAME,CAAC,GAAGH,MAAM,CAACI,SAAS,CAAC;AAC3B,IAAIC,iBAAiB,GAAGF,CAAC,CAACG,IAAI,CAAC,CAAC,CAACC,QAAQ;AACzC;AACAF,iBAAiB,GAAGH,IAAI,CAACM,OAAO,CAACH,iBAAiB,CAAC;AAEnD,OAAO,MAAMI,oBAAoB,GAAGP,IAAI,CAACQ,IAAI,CAC3CL,iBAAiB,EACjB,2BACF,CAAC;AAED,OAAO,MAAMM,2BAA2B,GAAGT,IAAI,CAACQ,IAAI,CAClDL,iBAAiB,EACjB,8BACF,CAAC;AAED,OAAO,SAASO,sBAAsBA,CAACC,WAAmB,EAAE;EAC1D,OAAOX,IAAI,CAACY,QAAQ,CAACZ,IAAI,CAACM,OAAO,CAACK,WAAW,CAAC,EAAEJ,oBAAoB,CAAC;AACvE;AAEA,OAAO,MAAMM,qBAAqB,GAAG,MAAM;AAC3C,OAAO,MAAMC,+BAA+B,GAAG,wBAAwB;AACvE,OAAO,MAAMC,mCAAmC,GAAG,4BAA4B;AAC/E,OAAO,MAAMC,6BAA6B,GAAG,sBAAsB;AACnE,OAAO,MAAMC,kCAAkC,GAC7C,wFAAwF;AAE1F,OAAO,MAAMC,0DAA0D,GACrE,kGAAkG;AAEpG,OAAO,MAAMC,8DAA8D,GACzE,wJAAwJ;AAE1J,OAAO,MAAMC,0DAA0D,GACrE,wGAAwG;AAE1G,OAAO,MAAMC,gCAAgC,GAC3C,mCAAmC;AAErC,OAAO,MAAMC,2BAA2B,GACtC,oEAAoE;AAEtE,OAAO,MAAMC,4CAA4C,GACzD,mIAAmI;AAEnI,OAAO,MAAMC,gDAAgD,GAC7D,iHAAiH;AAEjH,OAAO,MAAMC,0BAA0B,GAAG,qDAAqD;AAC/F,OAAO,MAAMC,sBAAsB,GAAG,GAAG;AACzC,OAAO,MAAMC,4BAA4B,GAAG,KAAK;AACjD,OAAO,MAAMC,eAAe,GAAG,eAAe;AAC9C,OAAO,MAAMC,4BAA4B,GAAG,qBAAqB;AAEjE,OAAO,MAAMC,oCAAoC,GAAI,iDAAgD;AACrG,OAAO,MAAMC,sDAAsD,GAAG,kCAAkC;AACxG,OAAO,MAAMC,8CAA8C,GAAI;AAC/D;AACA,CAAC;AACD,OAAO,MAAMC,8CAA8C,GAAI;AAC/D;AACA,CAAC;AAED,OAAO,MAAMC,yCAAyC,GAAI;AAC1D,4FAA4F;AAE5F,OAAO,MAAMC,4DAA4D,GAAI;AAC7E;AACA;AACA,CAAC;AAED,OAAO,MAAMC,4DAA4D,GAAI;AAC7E;AACA;AACA,CAAC;AAED,OAAO,MAAMC,2CAA2C,GAAI;AAC5D;AACA;AACA,CAAC;AAED,OAAO,MAAMC,iDAAiD,GAAI;AAClE;AACA;AACA,CAAC;AAED,OAAO,MAAMC,yCAAyC,GAAI;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA,OAAO,MAAMC,iDAAiD,GAAI;AAClE;AACA;AACA,EAAE;;AAEF;AACA,OAAO,MAAMC,0CAA0C,GAAI;AAC3D;AACA;AACA;AACA,EAAE;AACF,OAAO,MAAMC,qCAAqC,GAAI;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI"} | |
\ No newline at end of file | |
+{"version":3,"names":["finder","require","path","f","__dirname","pluginPackageRoot","next","filename","dirname","LOCAL_PATH_TO_RN_SDK","join","LOCAL_PATH_TO_CIO_NSE_FILES","getRelativePathToRNSDK","currentFile","relative","IOS_DEPLOYMENT_TARGET","GROUP_IDENTIFIER_TEMPLATE_REGEX","BUNDLE_SHORT_VERSION_TEMPLATE_REGEX","BUNDLE_VERSION_TEMPLATE_REGEX","CIO_DIDFINISHLAUNCHINGMETHOD_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERRORFULL_REGEX","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX","CIO_APPDELEGATEDECLARATION_REGEX","CIO_APPDELEGATEHEADER_REGEX","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX","CIO_DEEPLINK_COMMENT_REGEX","DEFAULT_BUNDLE_VERSION","DEFAULT_BUNDLE_SHORT_VERSION","CIO_TARGET_NAME","CIO_NOTIFICATION_TARGET_NAME","CIO_APPDELEGATEHEADER_IMPORT_SNIPPET","CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET","CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET","CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET","CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET","CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET","CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET","CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET","CIO_CONFIGURECIOSDKUSERNOTIFICATIONCENTER_SNIPPET","CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET","CIO_DIDRECEIVENOTIFICATIONRESPONSEHANDLER_SNIPPET","CIO_WILLPRESENTNOTIFICATIONHANDLER_SNIPPET","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET"],"sources":["ios.ts"],"sourcesContent":["const finder = require('find-package-json');\nconst path = require('path');\n\nconst f = finder(__dirname);\nlet pluginPackageRoot = f.next().filename;\n// This is the path to the root of the customerio-expo-plugin package\npluginPackageRoot = path.dirname(pluginPackageRoot);\n\nexport const LOCAL_PATH_TO_RN_SDK = path.join(\n pluginPackageRoot,\n '../customerio-reactnative'\n)\n\nexport const LOCAL_PATH_TO_CIO_NSE_FILES = path.join(\n pluginPackageRoot,\n 'src/helpers/native-files/ios'\n);\n\nexport function getRelativePathToRNSDK(currentFile: string) {\n return path.relative(path.dirname(currentFile), LOCAL_PATH_TO_RN_SDK);\n}\n\nexport const IOS_DEPLOYMENT_TARGET = '13.0';\nexport const GROUP_IDENTIFIER_TEMPLATE_REGEX = /{{GROUP_IDENTIFIER}}/gm;\nexport const BUNDLE_SHORT_VERSION_TEMPLATE_REGEX = /{{BUNDLE_SHORT_VERSION}}/gm;\nexport const BUNDLE_VERSION_TEMPLATE_REGEX = /{{BUNDLE_VERSION}}/gm;\nexport const CIO_DIDFINISHLAUNCHINGMETHOD_REGEX =\n /.*\\[super(\\s)application:application(\\s)didFinishLaunchingWithOptions:launchOptions\\];/;\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_REGEX =\n /return \\[super application:application didFailToRegisterForRemoteNotificationsWithError:error\\];/;\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERRORFULL_REGEX =\n /(- \\(void\\)application:\\(UIApplication \\*\\)application didFailToRegisterForRemoteNotificationsWithError:\\(NSError \\*\\)error(\\s|\\n)*?\\{)(.|\\n){2}.*\\n\\}/;\n\nexport const CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_REGEX =\n /return \\[super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken\\];/;\n\nexport const CIO_APPDELEGATEDECLARATION_REGEX =\n /@implementation AppDelegate(.|\\n)/;\n\nexport const CIO_APPDELEGATEHEADER_REGEX =\n /(@interface AppDelegate\\s*:\\s*EXAppDelegateWrapper\\s*)(<([^>]+)>)?/;\n\nexport const CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_REGEX = \n/^\\s*RCTBridge\\s*\\*\\s*\\w+\\s*=\\s*\\[\\s*self\\.reactDelegate\\s+createBridgeWithDelegate:self\\s+launchOptions:launchOptions\\s*\\];\\s*$/gm;\n\nexport const CIO_LAUNCHOPTIONS_DEEPLINK_MODIFIEDOPTIONS_REGEX = \n/^\\s*return\\s\\[\\s*super\\s*application:\\s*application\\s*didFinishLaunchingWithOptions\\s*:\\s*launchOptions\\s*\\];/gm;\n\nexport const CIO_DEEPLINK_COMMENT_REGEX = /\\sDeep link workaround for app killed state start/gm;\nexport const DEFAULT_BUNDLE_VERSION = '1';\nexport const DEFAULT_BUNDLE_SHORT_VERSION = '1.0';\nexport const CIO_TARGET_NAME = 'CustomerIOSDK';\nexport const CIO_NOTIFICATION_TARGET_NAME = 'CIONotificationService';\n\nexport const CIO_APPDELEGATEHEADER_IMPORT_SNIPPET = `#import <UserNotifications/UserNotifications.h>`;\nexport const CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET = 'UNUserNotificationCenterDelegate';\nexport const CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET = `\nCIOAppPushNotificationsHandler* pnHandlerObj = [[CIOAppPushNotificationsHandler alloc] init];\n`;\nexport const CIO_RCTBRIDGE_DEEPLINK_MODIFIEDOPTIONS_SNIPPET = `\nRCTBridge *bridge = [self.reactDelegate createBridgeWithDelegate:self launchOptions:modifiedLaunchOptions];\n`;\n\nexport const CIO_LAUNCHOPTIONS_MODIFIEDOPTIONS_SNIPPET = `\nreturn [super application:application didFinishLaunchingWithOptions:modifiedLaunchOptions];`\n\nexport const CIO_DIDFAILTOREGISTERFORREMOTENOTIFICATIONSWITHERROR_SNIPPET = `\n [super application:application didFailToRegisterForRemoteNotificationsWithError:error];\n [pnHandlerObj application:application error:error];\n`;\n\nexport const CIO_DIDREGISTERFORREMOTENOTIFICATIONSWITHDEVICETOKEN_SNIPPET = `\n [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];\n return [pnHandlerObj application:application deviceToken:deviceToken];\n`;\n\nexport const CIO_CONFIGURECIOSDKPUSHNOTIFICATION_SNIPPET = `\n // Register for push notifications\n [pnHandlerObj registerPushNotification];\n`;\n\nexport const CIO_CONFIGURECIOSDKUSERNOTIFICATIONCENTER_SNIPPET = `\n UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];\n center.delegate = self;\n`;\n\nexport const CIO_CONFIGUREDEEPLINK_KILLEDSTATE_SNIPPET = `\n// Deep link workaround for app killed state start\nNSMutableDictionary *modifiedLaunchOptions = [NSMutableDictionary dictionaryWithDictionary:launchOptions];\n if (launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey]) {\n NSDictionary *pushContent = launchOptions[UIApplicationLaunchOptionsRemoteNotificationKey];\n if (pushContent[@\"CIO\"] && pushContent[@\"CIO\"][@\"push\"] && pushContent[@\"CIO\"][@\"push\"][@\"link\"]) {\n NSString *initialURL = pushContent[@\"CIO\"][@\"push\"][@\"link\"];\n if (!launchOptions[UIApplicationLaunchOptionsURLKey]) {\n modifiedLaunchOptions[UIApplicationLaunchOptionsURLKey] = [NSURL URLWithString:initialURL];\n }\n }\n }\n//Deep link workaround for app killed state ends\n`;\n\n// Enable push handling - notification response\nexport const CIO_DIDRECEIVENOTIFICATIONRESPONSEHANDLER_SNIPPET = `\n- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler {\n [pnHandlerObj userNotificationCenter:center didReceiveNotificationResponse:response withCompletionHandler:completionHandler];\n}`;\n\n// Foreground push handling\nexport const CIO_WILLPRESENTNOTIFICATIONHANDLER_SNIPPET = `\n// show push when the app is in foreground\n- (void)userNotificationCenter:(UNUserNotificationCenter* )center willPresentNotification:(UNNotification* )notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler {\n completionHandler( UNNotificationPresentationOptionAlert + UNNotificationPresentationOptionSound);\n}`;\nexport const CIO_REGISTER_PUSHNOTIFICATION_SNIPPET = `\n@objc(registerPushNotification)\n public func registerPushNotification() {\n\n let center = UNUserNotificationCenter.current()\n center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in\n if error == nil{\n DispatchQueue.main.async {\n UIApplication.shared.registerForRemoteNotifications()\n }\n }\n }\n }`;\n"],"mappings":"AAAA,MAAMA,MAAM,GAAGC,OAAO,CAAC,mBAAmB,CAAC;AAC3C,MAAMC,IAAI,GAAGD,OAAO,CAAC,MAAM,CAAC;AAE5B,MAAME,CAAC,GAAGH,MAAM,CAACI,SAAS,CAAC;AAC3B,IAAIC,iBAAiB,GAAGF,CAAC,CAACG,IAAI,CAAC,CAAC,CAACC,QAAQ;AACzC;AACAF,iBAAiB,GAAGH,IAAI,CAACM,OAAO,CAACH,iBAAiB,CAAC;AAEnD,OAAO,MAAMI,oBAAoB,GAAGP,IAAI,CAACQ,IAAI,CAC3CL,iBAAiB,EACjB,2BACF,CAAC;AAED,OAAO,MAAMM,2BAA2B,GAAGT,IAAI,CAACQ,IAAI,CAClDL,iBAAiB,EACjB,8BACF,CAAC;AAED,OAAO,SAASO,sBAAsBA,CAACC,WAAmB,EAAE;EAC1D,OAAOX,IAAI,CAACY,QAAQ,CAACZ,IAAI,CAACM,OAAO,CAACK,WAAW,CAAC,EAAEJ,oBAAoB,CAAC;AACvE;AAEA,OAAO,MAAMM,qBAAqB,GAAG,MAAM;AAC3C,OAAO,MAAMC,+BAA+B,GAAG,wBAAwB;AACvE,OAAO,MAAMC,mCAAmC,GAAG,4BAA4B;AAC/E,OAAO,MAAMC,6BAA6B,GAAG,sBAAsB;AACnE,OAAO,MAAMC,kCAAkC,GAC7C,wFAAwF;AAE1F,OAAO,MAAMC,0DAA0D,GACrE,kGAAkG;AAEpG,OAAO,MAAMC,8DAA8D,GACzE,wJAAwJ;AAE1J,OAAO,MAAMC,0DAA0D,GACrE,wGAAwG;AAE1G,OAAO,MAAMC,gCAAgC,GAC3C,mCAAmC;AAErC,OAAO,MAAMC,2BAA2B,GACtC,oEAAoE;AAEtE,OAAO,MAAMC,4CAA4C,GACzD,mIAAmI;AAEnI,OAAO,MAAMC,gDAAgD,GAC7D,iHAAiH;AAEjH,OAAO,MAAMC,0BAA0B,GAAG,qDAAqD;AAC/F,OAAO,MAAMC,sBAAsB,GAAG,GAAG;AACzC,OAAO,MAAMC,4BAA4B,GAAG,KAAK;AACjD,OAAO,MAAMC,eAAe,GAAG,eAAe;AAC9C,OAAO,MAAMC,4BAA4B,GAAG,qBAAqB;AAEjE,OAAO,MAAMC,oCAAoC,GAAI,iDAAgD;AACrG,OAAO,MAAMC,sDAAsD,GAAG,kCAAkC;AACxG,OAAO,MAAMC,8CAA8C,GAAI;AAC/D;AACA,CAAC;AACD,OAAO,MAAMC,8CAA8C,GAAI;AAC/D;AACA,CAAC;AAED,OAAO,MAAMC,yCAAyC,GAAI;AAC1D,4FAA4F;AAE5F,OAAO,MAAMC,4DAA4D,GAAI;AAC7E;AACA;AACA,CAAC;AAED,OAAO,MAAMC,4DAA4D,GAAI;AAC7E;AACA;AACA,CAAC;AAED,OAAO,MAAMC,2CAA2C,GAAI;AAC5D;AACA;AACA,CAAC;AAED,OAAO,MAAMC,iDAAiD,GAAI;AAClE;AACA;AACA,CAAC;AAED,OAAO,MAAMC,yCAAyC,GAAI;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA,OAAO,MAAMC,iDAAiD,GAAI;AAClE;AACA;AACA,EAAE;;AAEF;AACA,OAAO,MAAMC,0CAA0C,GAAI;AAC3D;AACA;AACA;AACA,EAAE;AACF,OAAO,MAAMC,qCAAqC,GAAI;AACtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI"} | |
\ No newline at end of file | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/.DS_Store b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/.DS_Store | |
new file mode 100644 | |
index 0000000..4cf9fc3 | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService-Info.plist b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService-Info.plist | |
similarity index 91% | |
rename from node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService-Info.plist | |
rename to node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService-Info.plist | |
index cc44286..cdd1994 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService-Info.plist | |
+++ b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService-Info.plist | |
@@ -9,7 +9,7 @@ | |
<key>CFBundleDevelopmentRegion</key> | |
<string>$(DEVELOPMENT_LANGUAGE)</string> | |
<key>CFBundleDisplayName</key> | |
- <string>NotificationServiceExtension</string> | |
+ <string>CIONotificationServiceExtension</string> | |
<key>CFBundleExecutable</key> | |
<string>$(EXECUTABLE_NAME)</string> | |
<key>CFBundleIdentifier</key> | |
@@ -25,7 +25,7 @@ | |
<key>NSExtensionPointIdentifier</key> | |
<string>com.apple.usernotifications.service</string> | |
<key>NSExtensionPrincipalClass</key> | |
- <string>NotificationService</string> | |
+ <string>CIONotificationService</string> | |
</dict> | |
</dict> | |
</plist> | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService.h b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService.h | |
new file mode 100644 | |
index 0000000..f888bdd | |
--- /dev/null | |
+++ b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService.h | |
@@ -0,0 +1,5 @@ | |
+#import <UserNotifications/UserNotifications.h> | |
+ | |
+@interface CIONotificationService : UNNotificationServiceExtension | |
+ | |
+@end | |
diff --git a/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService.m b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService.m | |
similarity index 67% | |
rename from node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService.m | |
rename to node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService.m | |
index d684015..f83e911 100644 | |
--- a/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService.m | |
+++ b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService.m | |
@@ -1,25 +1,25 @@ | |
-#import "NotificationService.h" | |
-#import "NotificationService-Swift.h" | |
+#import "CIONotificationService.h" | |
+#import "CIONotificationService-Swift.h" | |
-@interface NotificationService () | |
+@interface CIONotificationService () | |
@property (nonatomic, strong) void (^contentHandler)(UNNotificationContent *contentToDeliver); | |
@property (nonatomic, strong) UNMutableNotificationContent *bestAttemptContent; | |
@end | |
-@implementation NotificationService | |
+@implementation CIONotificationService | |
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler { | |
- NotificationServiceCioManager* cioManagerObj = [[NotificationServiceCioManager alloc] init]; | |
+ CIONotificationServiceManager* cioManagerObj = [[CIONotificationServiceManager alloc] init]; | |
[cioManagerObj didReceive:request withContentHandler:contentHandler]; | |
} | |
- (void)serviceExtensionTimeWillExpire { | |
// Called just before the extension will be terminated by the system. | |
// Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used. | |
- NotificationServiceCioManager* cioManagerObj = [[NotificationServiceCioManager alloc] init]; | |
+ CIONotificationServiceManager* cioManagerObj = [[CIONotificationServiceManager alloc] init]; | |
[cioManagerObj serviceExtensionTimeWillExpire]; | |
} | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService.swift b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService.swift | |
similarity index 92% | |
rename from node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService.swift | |
rename to node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService.swift | |
index 0e30100..e920fde 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService.swift | |
+++ b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/CIONotificationService.swift | |
@@ -4,7 +4,7 @@ import CioTracking | |
import CioMessagingPushAPN | |
@objc | |
-public class NotificationServiceCioManager : NSObject { | |
+public class CIONotificationServiceManager : NSObject { | |
public override init() {} | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService.h b/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService.h | |
deleted file mode 100644 | |
index 32d6298..0000000 | |
--- a/node_modules/customerio-expo-plugin/lib/module/helpers/native-files/ios/NotificationService.h | |
+++ /dev/null | |
@@ -1,5 +0,0 @@ | |
-#import <UserNotifications/UserNotifications.h> | |
- | |
-@interface NotificationService : UNNotificationServiceExtension | |
- | |
-@end | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/utils/injectCIOPodfileCode.js b/node_modules/customerio-expo-plugin/lib/module/helpers/utils/injectCIOPodfileCode.js | |
index 71567ea..7475aae 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/module/helpers/utils/injectCIOPodfileCode.js | |
+++ b/node_modules/customerio-expo-plugin/lib/module/helpers/utils/injectCIOPodfileCode.js | |
@@ -31,7 +31,7 @@ export async function injectCIONotificationPodfileCode(iosPath, useFrameworks) { | |
if (!matches) { | |
const snippetToInjectInPodfile = ` | |
${blockStart} | |
-target 'NotificationService' do | |
+target 'CIONotificationService' do | |
${useFrameworks === 'static' ? 'use_frameworks! :linkage => :static' : ''} | |
pod 'customerio-reactnative-richpush/apn', :path => '${getRelativePathToRNSDK(filename)}' | |
end | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/helpers/utils/injectCIOPodfileCode.js.map b/node_modules/customerio-expo-plugin/lib/module/helpers/utils/injectCIOPodfileCode.js.map | |
index 1f727ae..26d3c01 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/module/helpers/utils/injectCIOPodfileCode.js.map | |
+++ b/node_modules/customerio-expo-plugin/lib/module/helpers/utils/injectCIOPodfileCode.js.map | |
@@ -1 +1 @@ | |
-{"version":3,"names":["getRelativePathToRNSDK","injectCodeByRegex","FileManagement","injectCIOPodfileCode","iosPath","blockStart","blockEnd","filename","podfile","read","matches","match","RegExp","lineInPodfileToInjectSnippetBefore","snippetToInjectInPodfile","trim","write","join","console","log","injectCIONotificationPodfileCode","useFrameworks","append"],"sources":["injectCIOPodfileCode.ts"],"sourcesContent":["import type { CustomerIOPluginOptionsIOS } from '../../types/cio-types';\nimport { getRelativePathToRNSDK } from '../constants/ios';\nimport { injectCodeByRegex } from './codeInjection';\nimport { FileManagement } from './fileManagement';\n\nexport async function injectCIOPodfileCode(iosPath: string) {\n const blockStart = '# --- CustomerIO Host App START ---';\n const blockEnd = '# --- CustomerIO Host App END ---';\n\n const filename = `${iosPath}/Podfile`;\n const podfile = await FileManagement.read(filename);\n const matches = podfile.match(new RegExp(blockStart));\n\n if (!matches) {\n // We need to decide what line of code in the Podfile to insert our native code.\n // The \"post_install\" line is always present in an Expo project Podfile so it's reliable.\n // Find that line in the Podfile and then we will insert our code above that line.\n const lineInPodfileToInjectSnippetBefore = /post_install do \\|installer\\|/;\n\n const snippetToInjectInPodfile = `\n${blockStart}\n pod 'customerio-reactnative/apn', :path => '${getRelativePathToRNSDK(filename)}'\n${blockEnd}\n`.trim();\n\n FileManagement.write(\n filename,\n injectCodeByRegex(\n podfile,\n lineInPodfileToInjectSnippetBefore,\n snippetToInjectInPodfile\n ).join('\\n')\n );\n } else {\n console.log('CustomerIO Podfile snippets already exists. Skipping...');\n }\n}\n\nexport async function injectCIONotificationPodfileCode(\n iosPath: string,\n useFrameworks: CustomerIOPluginOptionsIOS['useFrameworks']\n) {\n const filename = `${iosPath}/Podfile`;\n const podfile = await FileManagement.read(filename);\n\n const blockStart = '# --- CustomerIO Notification START ---';\n const blockEnd = '# --- CustomerIO Notification END ---';\n\n const matches = podfile.match(new RegExp(blockStart));\n\n if (!matches) {\n const snippetToInjectInPodfile = `\n${blockStart}\ntarget 'NotificationService' do\n ${useFrameworks === 'static' ? 'use_frameworks! :linkage => :static' : ''}\n pod 'customerio-reactnative-richpush/apn', :path => '${getRelativePathToRNSDK(filename)}'\nend\n${blockEnd}\n`.trim();\n\n FileManagement.append(filename, snippetToInjectInPodfile);\n }\n}\n"],"mappings":"AACA,SAASA,sBAAsB,QAAQ,kBAAkB;AACzD,SAASC,iBAAiB,QAAQ,iBAAiB;AACnD,SAASC,cAAc,QAAQ,kBAAkB;AAEjD,OAAO,eAAeC,oBAAoBA,CAACC,OAAe,EAAE;EAC1D,MAAMC,UAAU,GAAG,qCAAqC;EACxD,MAAMC,QAAQ,GAAG,mCAAmC;EAEpD,MAAMC,QAAQ,GAAI,GAAEH,OAAQ,UAAS;EACrC,MAAMI,OAAO,GAAG,MAAMN,cAAc,CAACO,IAAI,CAACF,QAAQ,CAAC;EACnD,MAAMG,OAAO,GAAGF,OAAO,CAACG,KAAK,CAAC,IAAIC,MAAM,CAACP,UAAU,CAAC,CAAC;EAErD,IAAI,CAACK,OAAO,EAAE;IACZ;IACA;IACA;IACA,MAAMG,kCAAkC,GAAG,+BAA+B;IAE1E,MAAMC,wBAAwB,GAAI;AACtC,EAAET,UAAW;AACb,gDAAgDL,sBAAsB,CAACO,QAAQ,CAAE;AACjF,EAAED,QAAS;AACX,CAAC,CAACS,IAAI,CAAC,CAAC;IAEJb,cAAc,CAACc,KAAK,CAClBT,QAAQ,EACRN,iBAAiB,CACfO,OAAO,EACPK,kCAAkC,EAClCC,wBACF,CAAC,CAACG,IAAI,CAAC,IAAI,CACb,CAAC;EACH,CAAC,MAAM;IACLC,OAAO,CAACC,GAAG,CAAC,yDAAyD,CAAC;EACxE;AACF;AAEA,OAAO,eAAeC,gCAAgCA,CACpDhB,OAAe,EACfiB,aAA0D,EAC1D;EACA,MAAMd,QAAQ,GAAI,GAAEH,OAAQ,UAAS;EACrC,MAAMI,OAAO,GAAG,MAAMN,cAAc,CAACO,IAAI,CAACF,QAAQ,CAAC;EAEnD,MAAMF,UAAU,GAAG,yCAAyC;EAC5D,MAAMC,QAAQ,GAAG,uCAAuC;EAExD,MAAMI,OAAO,GAAGF,OAAO,CAACG,KAAK,CAAC,IAAIC,MAAM,CAACP,UAAU,CAAC,CAAC;EAErD,IAAI,CAACK,OAAO,EAAE;IACZ,MAAMI,wBAAwB,GAAI;AACtC,EAAET,UAAW;AACb;AACA,IAAIgB,aAAa,KAAK,QAAQ,GAAG,qCAAqC,GAAG,EAAG;AAC5E,yDAAyDrB,sBAAsB,CAACO,QAAQ,CAAE;AAC1F;AACA,EAAED,QAAS;AACX,CAAC,CAACS,IAAI,CAAC,CAAC;IAEJb,cAAc,CAACoB,MAAM,CAACf,QAAQ,EAAEO,wBAAwB,CAAC;EAC3D;AACF"} | |
\ No newline at end of file | |
+{"version":3,"names":["getRelativePathToRNSDK","injectCodeByRegex","FileManagement","injectCIOPodfileCode","iosPath","blockStart","blockEnd","filename","podfile","read","matches","match","RegExp","lineInPodfileToInjectSnippetBefore","snippetToInjectInPodfile","trim","write","join","console","log","injectCIONotificationPodfileCode","useFrameworks","append"],"sources":["injectCIOPodfileCode.ts"],"sourcesContent":["import type { CustomerIOPluginOptionsIOS } from '../../types/cio-types';\nimport { getRelativePathToRNSDK } from '../constants/ios';\nimport { injectCodeByRegex } from './codeInjection';\nimport { FileManagement } from './fileManagement';\n\nexport async function injectCIOPodfileCode(iosPath: string) {\n const blockStart = '# --- CustomerIO Host App START ---';\n const blockEnd = '# --- CustomerIO Host App END ---';\n\n const filename = `${iosPath}/Podfile`;\n const podfile = await FileManagement.read(filename);\n const matches = podfile.match(new RegExp(blockStart));\n\n if (!matches) {\n // We need to decide what line of code in the Podfile to insert our native code.\n // The \"post_install\" line is always present in an Expo project Podfile so it's reliable.\n // Find that line in the Podfile and then we will insert our code above that line.\n const lineInPodfileToInjectSnippetBefore = /post_install do \\|installer\\|/;\n\n const snippetToInjectInPodfile = `\n${blockStart}\n pod 'customerio-reactnative/apn', :path => '${getRelativePathToRNSDK(filename)}'\n${blockEnd}\n`.trim();\n\n FileManagement.write(\n filename,\n injectCodeByRegex(\n podfile,\n lineInPodfileToInjectSnippetBefore,\n snippetToInjectInPodfile\n ).join('\\n')\n );\n } else {\n console.log('CustomerIO Podfile snippets already exists. Skipping...');\n }\n}\n\nexport async function injectCIONotificationPodfileCode(\n iosPath: string,\n useFrameworks: CustomerIOPluginOptionsIOS['useFrameworks']\n) {\n const filename = `${iosPath}/Podfile`;\n const podfile = await FileManagement.read(filename);\n\n const blockStart = '# --- CustomerIO Notification START ---';\n const blockEnd = '# --- CustomerIO Notification END ---';\n\n const matches = podfile.match(new RegExp(blockStart));\n\n if (!matches) {\n const snippetToInjectInPodfile = `\n${blockStart}\ntarget 'CIONotificationService' do\n ${useFrameworks === 'static' ? 'use_frameworks! :linkage => :static' : ''}\n pod 'customerio-reactnative-richpush/apn', :path => '${getRelativePathToRNSDK(filename)}'\nend\n${blockEnd}\n`.trim();\n\n FileManagement.append(filename, snippetToInjectInPodfile);\n }\n}\n"],"mappings":"AACA,SAASA,sBAAsB,QAAQ,kBAAkB;AACzD,SAASC,iBAAiB,QAAQ,iBAAiB;AACnD,SAASC,cAAc,QAAQ,kBAAkB;AAEjD,OAAO,eAAeC,oBAAoBA,CAACC,OAAe,EAAE;EAC1D,MAAMC,UAAU,GAAG,qCAAqC;EACxD,MAAMC,QAAQ,GAAG,mCAAmC;EAEpD,MAAMC,QAAQ,GAAI,GAAEH,OAAQ,UAAS;EACrC,MAAMI,OAAO,GAAG,MAAMN,cAAc,CAACO,IAAI,CAACF,QAAQ,CAAC;EACnD,MAAMG,OAAO,GAAGF,OAAO,CAACG,KAAK,CAAC,IAAIC,MAAM,CAACP,UAAU,CAAC,CAAC;EAErD,IAAI,CAACK,OAAO,EAAE;IACZ;IACA;IACA;IACA,MAAMG,kCAAkC,GAAG,+BAA+B;IAE1E,MAAMC,wBAAwB,GAAI;AACtC,EAAET,UAAW;AACb,gDAAgDL,sBAAsB,CAACO,QAAQ,CAAE;AACjF,EAAED,QAAS;AACX,CAAC,CAACS,IAAI,CAAC,CAAC;IAEJb,cAAc,CAACc,KAAK,CAClBT,QAAQ,EACRN,iBAAiB,CACfO,OAAO,EACPK,kCAAkC,EAClCC,wBACF,CAAC,CAACG,IAAI,CAAC,IAAI,CACb,CAAC;EACH,CAAC,MAAM;IACLC,OAAO,CAACC,GAAG,CAAC,yDAAyD,CAAC;EACxE;AACF;AAEA,OAAO,eAAeC,gCAAgCA,CACpDhB,OAAe,EACfiB,aAA0D,EAC1D;EACA,MAAMd,QAAQ,GAAI,GAAEH,OAAQ,UAAS;EACrC,MAAMI,OAAO,GAAG,MAAMN,cAAc,CAACO,IAAI,CAACF,QAAQ,CAAC;EAEnD,MAAMF,UAAU,GAAG,yCAAyC;EAC5D,MAAMC,QAAQ,GAAG,uCAAuC;EAExD,MAAMI,OAAO,GAAGF,OAAO,CAACG,KAAK,CAAC,IAAIC,MAAM,CAACP,UAAU,CAAC,CAAC;EAErD,IAAI,CAACK,OAAO,EAAE;IACZ,MAAMI,wBAAwB,GAAI;AACtC,EAAET,UAAW;AACb;AACA,IAAIgB,aAAa,KAAK,QAAQ,GAAG,qCAAqC,GAAG,EAAG;AAC5E,yDAAyDrB,sBAAsB,CAACO,QAAQ,CAAE;AAC1F;AACA,EAAED,QAAS;AACX,CAAC,CAACS,IAAI,CAAC,CAAC;IAEJb,cAAc,CAACoB,MAAM,CAACf,QAAQ,EAAEO,wBAAwB,CAAC;EAC3D;AACF"} | |
\ No newline at end of file | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/ios/withNotificationsXcodeProject.js b/node_modules/customerio-expo-plugin/lib/module/ios/withNotificationsXcodeProject.js | |
index 11452de..f81d99f 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/module/ios/withNotificationsXcodeProject.js | |
+++ b/node_modules/customerio-expo-plugin/lib/module/ios/withNotificationsXcodeProject.js | |
@@ -6,7 +6,7 @@ import { FileManagement } from './../helpers/utils/fileManagement'; | |
const PLIST_FILENAME = `${CIO_NOTIFICATION_TARGET_NAME}-Info.plist`; | |
const ENV_FILENAME = 'Env.swift'; | |
const TARGETED_DEVICE_FAMILY = `"1,2"`; | |
-const addNotificationServiceExtension = async (options, xcodeProject) => { | |
+const addCIONotificationServiceExtension = async (options, xcodeProject) => { | |
try { | |
var _options$pushNotifica; | |
if (options.pushNotification) { | |
@@ -34,9 +34,9 @@ export const withCioNotificationsXcodeProject = (configOuter, props) => { | |
pushNotification, | |
useFrameworks | |
} = props; | |
- if (ios === undefined) throw new Error('Adding NotificationServiceExtension failed: ios config missing from app.config.js or app.json.'); | |
+ if (ios === undefined) throw new Error('Adding CIONotificationServiceExtension failed: ios config missing from app.config.js or app.json.'); | |
- // projectName and platformProjectRoot translates to appName and iosPath in addNotificationServiceExtension() | |
+ // projectName and platformProjectRoot translates to appName and iosPath in addCIONotificationServiceExtension() | |
const { | |
projectName, | |
platformProjectRoot | |
@@ -46,13 +46,13 @@ export const withCioNotificationsXcodeProject = (configOuter, props) => { | |
buildNumber | |
} = ios; | |
if (bundleShortVersion === undefined) { | |
- throw new Error('Adding NotificationServiceExtension failed: version missing from app.config.js or app.json'); | |
+ throw new Error('Adding CIONotificationServiceExtension failed: version missing from app.config.js or app.json'); | |
} | |
if (bundleIdentifier === undefined) { | |
- throw new Error('Adding NotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'); | |
+ throw new Error('Adding CIONotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'); | |
} | |
if (projectName === undefined) { | |
- throw new Error('Adding NotificationServiceExtension failed: name missing from app.config.js or app.json'); | |
+ throw new Error('Adding CIONotificationServiceExtension failed: name missing from app.config.js or app.json'); | |
} | |
const options = { | |
...props, | |
@@ -66,7 +66,7 @@ export const withCioNotificationsXcodeProject = (configOuter, props) => { | |
iosDeploymentTarget, | |
pushNotification | |
}; | |
- const modifiedProjectFile = await addNotificationServiceExtension(options, config.modResults); | |
+ const modifiedProjectFile = await addCIONotificationServiceExtension(options, config.modResults); | |
if (modifiedProjectFile) { | |
config.modResults = modifiedProjectFile; | |
} | |
@@ -95,7 +95,7 @@ const addRichPushXcodeProj = async (options, xcodeProject) => { | |
FileManagement.mkdir(nsePath, { | |
recursive: true | |
}); | |
- const files = [PLIST_FILENAME, 'NotificationService.h', 'NotificationService.swift', 'NotificationService.m', ENV_FILENAME]; | |
+ const files = [PLIST_FILENAME, 'CIONotificationService.h', 'CIONotificationService.swift', 'CIONotificationService.m', ENV_FILENAME]; | |
const getTargetFile = filename => `${nsePath}/${filename}`; | |
files.forEach(filename => { | |
const targetFile = getTargetFile(filename); | |
@@ -140,7 +140,7 @@ const addRichPushXcodeProj = async (options, xcodeProject) => { | |
const nseTarget = xcodeProject.addTarget(CIO_NOTIFICATION_TARGET_NAME, 'app_extension', CIO_NOTIFICATION_TARGET_NAME, `${bundleIdentifier}.richpush`); | |
// Add build phases to the new target | |
- xcodeProject.addBuildPhase(['NotificationService.m', 'NotificationService.swift', 'Env.swift'], 'PBXSourcesBuildPhase', 'Sources', nseTarget.uuid); | |
+ xcodeProject.addBuildPhase(['CIONotificationService.m', 'CIONotificationService.swift', 'Env.swift'], 'PBXSourcesBuildPhase', 'Sources', nseTarget.uuid); | |
xcodeProject.addBuildPhase([], 'PBXResourcesBuildPhase', 'Resources', nseTarget.uuid); | |
xcodeProject.addBuildPhase([], 'PBXFrameworksBuildPhase', 'Frameworks', nseTarget.uuid); | |
diff --git a/node_modules/customerio-expo-plugin/lib/module/ios/withNotificationsXcodeProject.js.map b/node_modules/customerio-expo-plugin/lib/module/ios/withNotificationsXcodeProject.js.map | |
index a972dae..f6f4bd4 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/module/ios/withNotificationsXcodeProject.js.map | |
+++ b/node_modules/customerio-expo-plugin/lib/module/ios/withNotificationsXcodeProject.js.map | |
@@ -1 +1 @@ | |
-{"version":3,"names":["withXcodeProject","CIO_NOTIFICATION_TARGET_NAME","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET","DEFAULT_BUNDLE_VERSION","LOCAL_PATH_TO_CIO_NSE_FILES","replaceCodeByRegex","injectCIONotificationPodfileCode","FileManagement","PLIST_FILENAME","ENV_FILENAME","TARGETED_DEVICE_FAMILY","addNotificationServiceExtension","options","xcodeProject","_options$pushNotifica","pushNotification","addPushNotificationFile","useRichPush","addRichPushXcodeProj","error","console","withCioNotificationsXcodeProject","configOuter","props","config","modRequest","ios","version","bundleShortVersion","appleTeamId","iosDeploymentTarget","useFrameworks","undefined","Error","projectName","platformProjectRoot","bundleIdentifier","buildNumber","bundleVersion","iosPath","appName","modifiedProjectFile","modResults","pbxTargetByName","warn","nsePath","mkdir","recursive","files","getTargetFile","filename","forEach","targetFile","copyFile","infoPlistTargetFile","updateNseInfoPlist","updateNseEnv","extGroup","addPbxGroup","groups","hash","project","objects","Object","keys","key","name","path","addToPbxGroup","uuid","projObjects","nseTarget","addTarget","addBuildPhase","configurations","pbxXCBuildConfigurationSection","buildSettings","PRODUCT_NAME","buildSettingsObj","DEVELOPMENT_TEAM","IPHONEOS_DEPLOYMENT_TARGET","CODE_SIGN_STYLE","SWIFT_VERSION","addTargetAttribute","payload","BUNDLE_SHORT_VERSION_RE","BUNDLE_VERSION_RE","plistFileString","readFile","writeFile","envFileName","_options$pushNotifica2","_options$pushNotifica4","_options$pushNotifica6","SITE_ID_RE","API_KEY_RE","REGION_RE","envFileContent","env","siteId","_options$pushNotifica3","apiKey","_options$pushNotifica5","region","_options$pushNotifica7","regionMap","us","eu","toLowerCase","mappedRegion","_options$pushNotifica8","file","appPath","exists","log","updatePushFile","group","pbxCreateGroup","classesKey","findPBXGroupKey","addSourceFile","REGISTER_RE","snippet","disableNotificationRegistration"],"sources":["withNotificationsXcodeProject.ts"],"sourcesContent":["import {\n ConfigPlugin,\n XcodeProject,\n withXcodeProject,\n} from '@expo/config-plugins';\n\nimport {\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_REGISTER_PUSHNOTIFICATION_SNIPPET,\n DEFAULT_BUNDLE_VERSION,\n LOCAL_PATH_TO_CIO_NSE_FILES,\n} from '../helpers/constants/ios';\nimport { replaceCodeByRegex } from '../helpers/utils/codeInjection';\nimport { injectCIONotificationPodfileCode } from '../helpers/utils/injectCIOPodfileCode';\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\nimport { FileManagement } from './../helpers/utils/fileManagement';\n\nconst PLIST_FILENAME = `${CIO_NOTIFICATION_TARGET_NAME}-Info.plist`;\nconst ENV_FILENAME = 'Env.swift';\n\nconst TARGETED_DEVICE_FAMILY = `\"1,2\"`;\n\nconst addNotificationServiceExtension = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: XcodeProject\n) => {\n try {\n if (options.pushNotification) {\n await addPushNotificationFile(options, xcodeProject);\n }\n\n if (options.pushNotification?.useRichPush) {\n await addRichPushXcodeProj(options, xcodeProject);\n }\n return xcodeProject;\n } catch (error: any) {\n console.error(error);\n return null;\n }\n};\n\nexport const withCioNotificationsXcodeProject: ConfigPlugin<\n CustomerIOPluginOptionsIOS\n> = (configOuter, props) => {\n return withXcodeProject(configOuter, async (config) => {\n const { modRequest, ios, version: bundleShortVersion } = config;\n const {\n appleTeamId,\n iosDeploymentTarget,\n pushNotification,\n useFrameworks,\n } = props;\n\n if (ios === undefined)\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios config missing from app.config.js or app.json.'\n );\n\n // projectName and platformProjectRoot translates to appName and iosPath in addNotificationServiceExtension()\n const { projectName, platformProjectRoot } = modRequest;\n const { bundleIdentifier, buildNumber } = ios;\n\n if (bundleShortVersion === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: version missing from app.config.js or app.json'\n );\n }\n\n if (bundleIdentifier === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'\n );\n }\n\n if (projectName === undefined) {\n throw new Error(\n 'Adding NotificationServiceExtension failed: name missing from app.config.js or app.json'\n );\n }\n\n const options = {\n ...props,\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion: buildNumber || DEFAULT_BUNDLE_VERSION,\n iosPath: platformProjectRoot,\n appName: projectName,\n useFrameworks,\n iosDeploymentTarget,\n pushNotification,\n };\n\n const modifiedProjectFile = await addNotificationServiceExtension(\n options,\n config.modResults\n );\n\n if (modifiedProjectFile) {\n config.modResults = modifiedProjectFile;\n }\n\n return config;\n });\n};\n\nconst addRichPushXcodeProj = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) => {\n const {\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion,\n iosPath,\n iosDeploymentTarget,\n useFrameworks,\n } = options;\n\n await injectCIONotificationPodfileCode(iosPath, useFrameworks);\n\n // Check if `CIO_NOTIFICATION_TARGET_NAME` group already exist in the project\n // If true then skip creating a new group to avoid duplicate folders\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n const nsePath = `${iosPath}/${CIO_NOTIFICATION_TARGET_NAME}`;\n FileManagement.mkdir(nsePath, {\n recursive: true,\n });\n\n const files = [\n PLIST_FILENAME,\n 'NotificationService.h',\n 'NotificationService.swift',\n 'NotificationService.m',\n ENV_FILENAME,\n ];\n\n const getTargetFile = (filename: string) => `${nsePath}/${filename}`;\n\n files.forEach((filename) => {\n const targetFile = getTargetFile(filename);\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${filename}`,\n targetFile\n );\n });\n\n /* MODIFY COPIED EXTENSION FILES */\n const infoPlistTargetFile = getTargetFile(PLIST_FILENAME);\n updateNseInfoPlist({\n bundleVersion,\n bundleShortVersion,\n infoPlistTargetFile,\n });\n updateNseEnv(options, getTargetFile(ENV_FILENAME));\n\n // Create new PBXGroup for the extension\n const extGroup = xcodeProject.addPbxGroup(\n files,\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_NOTIFICATION_TARGET_NAME\n );\n\n // Add the new PBXGroup to the top level group. This makes the\n // files / folder appear in the file explorer in Xcode.\n const groups = xcodeProject.hash.project.objects['PBXGroup'];\n Object.keys(groups).forEach((key) => {\n if (groups[key].name === undefined && groups[key].path === undefined) {\n xcodeProject.addToPbxGroup(extGroup.uuid, key);\n }\n });\n\n // WORK AROUND for codeProject.addTarget BUG\n // Xcode projects don't contain these if there is only one target\n // An upstream fix should be made to the code referenced in this link:\n // - https://github.com/apache/cordova-node-xcode/blob/8b98cabc5978359db88dc9ff2d4c015cba40f150/lib/pbxProject.js#L860\n const projObjects = xcodeProject.hash.project.objects;\n projObjects['PBXTargetDependency'] = projObjects['PBXTargetDependency'] || {};\n projObjects['PBXContainerItemProxy'] =\n projObjects['PBXTargetDependency'] || {};\n\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n // Add the NSE target\n // This also adds PBXTargetDependency and PBXContainerItemProxy\n const nseTarget = xcodeProject.addTarget(\n CIO_NOTIFICATION_TARGET_NAME,\n 'app_extension',\n CIO_NOTIFICATION_TARGET_NAME,\n `${bundleIdentifier}.richpush`\n );\n\n // Add build phases to the new target\n xcodeProject.addBuildPhase(\n ['NotificationService.m', 'NotificationService.swift', 'Env.swift'],\n 'PBXSourcesBuildPhase',\n 'Sources',\n nseTarget.uuid\n );\n xcodeProject.addBuildPhase(\n [],\n 'PBXResourcesBuildPhase',\n 'Resources',\n nseTarget.uuid\n );\n\n xcodeProject.addBuildPhase(\n [],\n 'PBXFrameworksBuildPhase',\n 'Frameworks',\n nseTarget.uuid\n );\n\n // Edit the Deployment info of the target\n const configurations = xcodeProject.pbxXCBuildConfigurationSection();\n for (const key in configurations) {\n if (\n typeof configurations[key].buildSettings !== 'undefined' &&\n configurations[key].buildSettings.PRODUCT_NAME ===\n `\"${CIO_NOTIFICATION_TARGET_NAME}\"`\n ) {\n const buildSettingsObj = configurations[key].buildSettings;\n buildSettingsObj.DEVELOPMENT_TEAM = appleTeamId;\n buildSettingsObj.IPHONEOS_DEPLOYMENT_TARGET =\n iosDeploymentTarget || '13.0';\n buildSettingsObj.TARGETED_DEVICE_FAMILY = TARGETED_DEVICE_FAMILY;\n buildSettingsObj.CODE_SIGN_STYLE = 'Automatic';\n buildSettingsObj.SWIFT_VERSION = 4.2;\n }\n }\n\n // Add development team to the target & the main\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId, nseTarget);\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId);\n};\n\nconst updateNseInfoPlist = (payload: {\n bundleVersion?: string;\n bundleShortVersion?: string;\n infoPlistTargetFile: string;\n}) => {\n const BUNDLE_SHORT_VERSION_RE = /\\{\\{BUNDLE_SHORT_VERSION\\}\\}/;\n const BUNDLE_VERSION_RE = /\\{\\{BUNDLE_VERSION\\}\\}/;\n\n let plistFileString = FileManagement.readFile(payload.infoPlistTargetFile);\n\n if (payload.bundleVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_VERSION_RE,\n payload.bundleVersion\n );\n }\n\n if (payload.bundleShortVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_SHORT_VERSION_RE,\n payload.bundleShortVersion\n );\n }\n\n FileManagement.writeFile(payload.infoPlistTargetFile, plistFileString);\n};\n\nconst updateNseEnv = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const SITE_ID_RE = /\\{\\{SITE_ID\\}\\}/;\n const API_KEY_RE = /\\{\\{API_KEY\\}\\}/;\n const REGION_RE = /\\{\\{REGION\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n if (options.pushNotification?.env?.siteId) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n SITE_ID_RE,\n options.pushNotification?.env?.siteId\n );\n }\n\n if (options.pushNotification?.env?.apiKey) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n API_KEY_RE,\n options.pushNotification?.env?.apiKey\n );\n }\n\n if (options.pushNotification?.env?.region) {\n const regionMap = {\n us: 'Region.US',\n eu: 'Region.EU',\n };\n const region = options.pushNotification?.env?.region?.toLowerCase();\n const mappedRegion = (regionMap as any)[region] || '';\n if (!mappedRegion) {\n console.warn(\n `${options.pushNotification?.env?.region} is an invalid region. Please use the values from the docs: https://customer.io/docs/sdk/expo/getting-started/#configure-the-plugin`\n );\n } else {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n REGION_RE,\n mappedRegion\n );\n }\n }\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n\nasync function addPushNotificationFile(\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) {\n const { iosPath, appName } = options;\n const file = 'PushService.swift';\n const appPath = `${iosPath}/${appName}`;\n const getTargetFile = (filename: string) => `${appPath}/${filename}`;\n const targetFile = getTargetFile(file);\n\n // Check whether {file} exists in the project. If false, then add the file\n // If {file} exists then skip and return\n if (!FileManagement.exists(getTargetFile(file))) {\n FileManagement.mkdir(appPath, {\n recursive: true,\n });\n\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${file}`,\n targetFile\n );\n } else {\n console.log(`${getTargetFile(file)} already exists. Skipping...`);\n return;\n }\n\n updatePushFile(options, targetFile);\n\n const group = xcodeProject.pbxCreateGroup('CustomerIONotifications');\n const classesKey = xcodeProject.findPBXGroupKey({ name: `${appName}` });\n xcodeProject.addToPbxGroup(group, classesKey);\n\n xcodeProject.addSourceFile(`${appName}/${file}`, null, group);\n}\n\nconst updatePushFile = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const REGISTER_RE = /\\{\\{REGISTER_SNIPPET\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n let snippet = '';\n if (\n options.disableNotificationRegistration !== undefined &&\n options.disableNotificationRegistration === false\n ) {\n snippet = CIO_REGISTER_PUSHNOTIFICATION_SNIPPET;\n }\n\n envFileContent = replaceCodeByRegex(envFileContent, REGISTER_RE, snippet);\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n"],"mappings":"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"} | |
\ No newline at end of file | |
+{"version":3,"names":["withXcodeProject","CIO_NOTIFICATION_TARGET_NAME","CIO_REGISTER_PUSHNOTIFICATION_SNIPPET","DEFAULT_BUNDLE_VERSION","LOCAL_PATH_TO_CIO_NSE_FILES","replaceCodeByRegex","injectCIONotificationPodfileCode","FileManagement","PLIST_FILENAME","ENV_FILENAME","TARGETED_DEVICE_FAMILY","addCIONotificationServiceExtension","options","xcodeProject","_options$pushNotifica","pushNotification","addPushNotificationFile","useRichPush","addRichPushXcodeProj","error","console","withCioNotificationsXcodeProject","configOuter","props","config","modRequest","ios","version","bundleShortVersion","appleTeamId","iosDeploymentTarget","useFrameworks","undefined","Error","projectName","platformProjectRoot","bundleIdentifier","buildNumber","bundleVersion","iosPath","appName","modifiedProjectFile","modResults","pbxTargetByName","warn","nsePath","mkdir","recursive","files","getTargetFile","filename","forEach","targetFile","copyFile","infoPlistTargetFile","updateNseInfoPlist","updateNseEnv","extGroup","addPbxGroup","groups","hash","project","objects","Object","keys","key","name","path","addToPbxGroup","uuid","projObjects","nseTarget","addTarget","addBuildPhase","configurations","pbxXCBuildConfigurationSection","buildSettings","PRODUCT_NAME","buildSettingsObj","DEVELOPMENT_TEAM","IPHONEOS_DEPLOYMENT_TARGET","CODE_SIGN_STYLE","SWIFT_VERSION","addTargetAttribute","payload","BUNDLE_SHORT_VERSION_RE","BUNDLE_VERSION_RE","plistFileString","readFile","writeFile","envFileName","_options$pushNotifica2","_options$pushNotifica4","_options$pushNotifica6","SITE_ID_RE","API_KEY_RE","REGION_RE","envFileContent","env","siteId","_options$pushNotifica3","apiKey","_options$pushNotifica5","region","_options$pushNotifica7","regionMap","us","eu","toLowerCase","mappedRegion","_options$pushNotifica8","file","appPath","exists","log","updatePushFile","group","pbxCreateGroup","classesKey","findPBXGroupKey","addSourceFile","REGISTER_RE","snippet","disableNotificationRegistration"],"sources":["withNotificationsXcodeProject.ts"],"sourcesContent":["import {\n ConfigPlugin,\n XcodeProject,\n withXcodeProject,\n} from '@expo/config-plugins';\n\nimport {\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_REGISTER_PUSHNOTIFICATION_SNIPPET,\n DEFAULT_BUNDLE_VERSION,\n LOCAL_PATH_TO_CIO_NSE_FILES,\n} from '../helpers/constants/ios';\nimport { replaceCodeByRegex } from '../helpers/utils/codeInjection';\nimport { injectCIONotificationPodfileCode } from '../helpers/utils/injectCIOPodfileCode';\nimport type { CustomerIOPluginOptionsIOS } from '../types/cio-types';\nimport { FileManagement } from './../helpers/utils/fileManagement';\n\nconst PLIST_FILENAME = `${CIO_NOTIFICATION_TARGET_NAME}-Info.plist`;\nconst ENV_FILENAME = 'Env.swift';\n\nconst TARGETED_DEVICE_FAMILY = `\"1,2\"`;\n\nconst addCIONotificationServiceExtension = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: XcodeProject\n) => {\n try {\n if (options.pushNotification) {\n await addPushNotificationFile(options, xcodeProject);\n }\n\n if (options.pushNotification?.useRichPush) {\n await addRichPushXcodeProj(options, xcodeProject);\n }\n return xcodeProject;\n } catch (error: any) {\n console.error(error);\n return null;\n }\n};\n\nexport const withCioNotificationsXcodeProject: ConfigPlugin<\n CustomerIOPluginOptionsIOS\n> = (configOuter, props) => {\n return withXcodeProject(configOuter, async (config) => {\n const { modRequest, ios, version: bundleShortVersion } = config;\n const {\n appleTeamId,\n iosDeploymentTarget,\n pushNotification,\n useFrameworks,\n } = props;\n\n if (ios === undefined)\n throw new Error(\n 'Adding CIONotificationServiceExtension failed: ios config missing from app.config.js or app.json.'\n );\n\n // projectName and platformProjectRoot translates to appName and iosPath in addCIONotificationServiceExtension()\n const { projectName, platformProjectRoot } = modRequest;\n const { bundleIdentifier, buildNumber } = ios;\n\n if (bundleShortVersion === undefined) {\n throw new Error(\n 'Adding CIONotificationServiceExtension failed: version missing from app.config.js or app.json'\n );\n }\n\n if (bundleIdentifier === undefined) {\n throw new Error(\n 'Adding CIONotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json'\n );\n }\n\n if (projectName === undefined) {\n throw new Error(\n 'Adding CIONotificationServiceExtension failed: name missing from app.config.js or app.json'\n );\n }\n\n const options = {\n ...props,\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion: buildNumber || DEFAULT_BUNDLE_VERSION,\n iosPath: platformProjectRoot,\n appName: projectName,\n useFrameworks,\n iosDeploymentTarget,\n pushNotification,\n };\n\n const modifiedProjectFile = await addCIONotificationServiceExtension(\n options,\n config.modResults\n );\n\n if (modifiedProjectFile) {\n config.modResults = modifiedProjectFile;\n }\n\n return config;\n });\n};\n\nconst addRichPushXcodeProj = async (\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) => {\n const {\n appleTeamId,\n bundleIdentifier,\n bundleShortVersion,\n bundleVersion,\n iosPath,\n iosDeploymentTarget,\n useFrameworks,\n } = options;\n\n await injectCIONotificationPodfileCode(iosPath, useFrameworks);\n\n // Check if `CIO_NOTIFICATION_TARGET_NAME` group already exist in the project\n // If true then skip creating a new group to avoid duplicate folders\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n const nsePath = `${iosPath}/${CIO_NOTIFICATION_TARGET_NAME}`;\n FileManagement.mkdir(nsePath, {\n recursive: true,\n });\n\n const files = [\n PLIST_FILENAME,\n 'CIONotificationService.h',\n 'CIONotificationService.swift',\n 'CIONotificationService.m',\n ENV_FILENAME,\n ];\n\n const getTargetFile = (filename: string) => `${nsePath}/${filename}`;\n\n files.forEach((filename) => {\n const targetFile = getTargetFile(filename);\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${filename}`,\n targetFile\n );\n });\n\n /* MODIFY COPIED EXTENSION FILES */\n const infoPlistTargetFile = getTargetFile(PLIST_FILENAME);\n updateNseInfoPlist({\n bundleVersion,\n bundleShortVersion,\n infoPlistTargetFile,\n });\n updateNseEnv(options, getTargetFile(ENV_FILENAME));\n\n // Create new PBXGroup for the extension\n const extGroup = xcodeProject.addPbxGroup(\n files,\n CIO_NOTIFICATION_TARGET_NAME,\n CIO_NOTIFICATION_TARGET_NAME\n );\n\n // Add the new PBXGroup to the top level group. This makes the\n // files / folder appear in the file explorer in Xcode.\n const groups = xcodeProject.hash.project.objects['PBXGroup'];\n Object.keys(groups).forEach((key) => {\n if (groups[key].name === undefined && groups[key].path === undefined) {\n xcodeProject.addToPbxGroup(extGroup.uuid, key);\n }\n });\n\n // WORK AROUND for codeProject.addTarget BUG\n // Xcode projects don't contain these if there is only one target\n // An upstream fix should be made to the code referenced in this link:\n // - https://github.com/apache/cordova-node-xcode/blob/8b98cabc5978359db88dc9ff2d4c015cba40f150/lib/pbxProject.js#L860\n const projObjects = xcodeProject.hash.project.objects;\n projObjects['PBXTargetDependency'] = projObjects['PBXTargetDependency'] || {};\n projObjects['PBXContainerItemProxy'] =\n projObjects['PBXTargetDependency'] || {};\n\n if (xcodeProject.pbxTargetByName(CIO_NOTIFICATION_TARGET_NAME)) {\n console.warn(\n `${CIO_NOTIFICATION_TARGET_NAME} already exists in project. Skipping...`\n );\n return;\n }\n\n // Add the NSE target\n // This also adds PBXTargetDependency and PBXContainerItemProxy\n const nseTarget = xcodeProject.addTarget(\n CIO_NOTIFICATION_TARGET_NAME,\n 'app_extension',\n CIO_NOTIFICATION_TARGET_NAME,\n `${bundleIdentifier}.richpush`\n );\n\n // Add build phases to the new target\n xcodeProject.addBuildPhase(\n ['CIONotificationService.m', 'CIONotificationService.swift', 'Env.swift'],\n 'PBXSourcesBuildPhase',\n 'Sources',\n nseTarget.uuid\n );\n xcodeProject.addBuildPhase(\n [],\n 'PBXResourcesBuildPhase',\n 'Resources',\n nseTarget.uuid\n );\n\n xcodeProject.addBuildPhase(\n [],\n 'PBXFrameworksBuildPhase',\n 'Frameworks',\n nseTarget.uuid\n );\n\n // Edit the Deployment info of the target\n const configurations = xcodeProject.pbxXCBuildConfigurationSection();\n for (const key in configurations) {\n if (\n typeof configurations[key].buildSettings !== 'undefined' &&\n configurations[key].buildSettings.PRODUCT_NAME ===\n `\"${CIO_NOTIFICATION_TARGET_NAME}\"`\n ) {\n const buildSettingsObj = configurations[key].buildSettings;\n buildSettingsObj.DEVELOPMENT_TEAM = appleTeamId;\n buildSettingsObj.IPHONEOS_DEPLOYMENT_TARGET =\n iosDeploymentTarget || '13.0';\n buildSettingsObj.TARGETED_DEVICE_FAMILY = TARGETED_DEVICE_FAMILY;\n buildSettingsObj.CODE_SIGN_STYLE = 'Automatic';\n buildSettingsObj.SWIFT_VERSION = 4.2;\n }\n }\n\n // Add development team to the target & the main\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId, nseTarget);\n xcodeProject.addTargetAttribute('DevelopmentTeam', appleTeamId);\n};\n\nconst updateNseInfoPlist = (payload: {\n bundleVersion?: string;\n bundleShortVersion?: string;\n infoPlistTargetFile: string;\n}) => {\n const BUNDLE_SHORT_VERSION_RE = /\\{\\{BUNDLE_SHORT_VERSION\\}\\}/;\n const BUNDLE_VERSION_RE = /\\{\\{BUNDLE_VERSION\\}\\}/;\n\n let plistFileString = FileManagement.readFile(payload.infoPlistTargetFile);\n\n if (payload.bundleVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_VERSION_RE,\n payload.bundleVersion\n );\n }\n\n if (payload.bundleShortVersion) {\n plistFileString = replaceCodeByRegex(\n plistFileString,\n BUNDLE_SHORT_VERSION_RE,\n payload.bundleShortVersion\n );\n }\n\n FileManagement.writeFile(payload.infoPlistTargetFile, plistFileString);\n};\n\nconst updateNseEnv = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const SITE_ID_RE = /\\{\\{SITE_ID\\}\\}/;\n const API_KEY_RE = /\\{\\{API_KEY\\}\\}/;\n const REGION_RE = /\\{\\{REGION\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n if (options.pushNotification?.env?.siteId) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n SITE_ID_RE,\n options.pushNotification?.env?.siteId\n );\n }\n\n if (options.pushNotification?.env?.apiKey) {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n API_KEY_RE,\n options.pushNotification?.env?.apiKey\n );\n }\n\n if (options.pushNotification?.env?.region) {\n const regionMap = {\n us: 'Region.US',\n eu: 'Region.EU',\n };\n const region = options.pushNotification?.env?.region?.toLowerCase();\n const mappedRegion = (regionMap as any)[region] || '';\n if (!mappedRegion) {\n console.warn(\n `${options.pushNotification?.env?.region} is an invalid region. Please use the values from the docs: https://customer.io/docs/sdk/expo/getting-started/#configure-the-plugin`\n );\n } else {\n envFileContent = replaceCodeByRegex(\n envFileContent,\n REGION_RE,\n mappedRegion\n );\n }\n }\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n\nasync function addPushNotificationFile(\n options: CustomerIOPluginOptionsIOS,\n xcodeProject: any\n) {\n const { iosPath, appName } = options;\n const file = 'PushService.swift';\n const appPath = `${iosPath}/${appName}`;\n const getTargetFile = (filename: string) => `${appPath}/${filename}`;\n const targetFile = getTargetFile(file);\n\n // Check whether {file} exists in the project. If false, then add the file\n // If {file} exists then skip and return\n if (!FileManagement.exists(getTargetFile(file))) {\n FileManagement.mkdir(appPath, {\n recursive: true,\n });\n\n FileManagement.copyFile(\n `${LOCAL_PATH_TO_CIO_NSE_FILES}/${file}`,\n targetFile\n );\n } else {\n console.log(`${getTargetFile(file)} already exists. Skipping...`);\n return;\n }\n\n updatePushFile(options, targetFile);\n\n const group = xcodeProject.pbxCreateGroup('CustomerIONotifications');\n const classesKey = xcodeProject.findPBXGroupKey({ name: `${appName}` });\n xcodeProject.addToPbxGroup(group, classesKey);\n\n xcodeProject.addSourceFile(`${appName}/${file}`, null, group);\n}\n\nconst updatePushFile = (\n options: CustomerIOPluginOptionsIOS,\n envFileName: string\n) => {\n const REGISTER_RE = /\\{\\{REGISTER_SNIPPET\\}\\}/;\n\n let envFileContent = FileManagement.readFile(envFileName);\n\n let snippet = '';\n if (\n options.disableNotificationRegistration !== undefined &&\n options.disableNotificationRegistration === false\n ) {\n snippet = CIO_REGISTER_PUSHNOTIFICATION_SNIPPET;\n }\n\n envFileContent = replaceCodeByRegex(envFileContent, REGISTER_RE, snippet);\n\n FileManagement.writeFile(envFileName, envFileContent);\n};\n"],"mappings":"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"} | |
\ No newline at end of file | |
diff --git a/node_modules/customerio-expo-plugin/lib/typescript/.DS_Store b/node_modules/customerio-expo-plugin/lib/typescript/.DS_Store | |
new file mode 100644 | |
index 0000000..b1f19db | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/lib/typescript/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/typescript/helpers/.DS_Store b/node_modules/customerio-expo-plugin/lib/typescript/helpers/.DS_Store | |
new file mode 100644 | |
index 0000000..79b1365 | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/lib/typescript/helpers/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/lib/typescript/helpers/constants/ios.d.ts b/node_modules/customerio-expo-plugin/lib/typescript/helpers/constants/ios.d.ts | |
index b10aa47..b69d7cf 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/typescript/helpers/constants/ios.d.ts | |
+++ b/node_modules/customerio-expo-plugin/lib/typescript/helpers/constants/ios.d.ts | |
@@ -17,7 +17,7 @@ export declare const CIO_DEEPLINK_COMMENT_REGEX: RegExp; | |
export declare const DEFAULT_BUNDLE_VERSION = "1"; | |
export declare const DEFAULT_BUNDLE_SHORT_VERSION = "1.0"; | |
export declare const CIO_TARGET_NAME = "CustomerIOSDK"; | |
-export declare const CIO_NOTIFICATION_TARGET_NAME = "NotificationService"; | |
+export declare const CIO_NOTIFICATION_TARGET_NAME = "CIONotificationService"; | |
export declare const CIO_APPDELEGATEHEADER_IMPORT_SNIPPET = "#import <UserNotifications/UserNotifications.h>"; | |
export declare const CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET = "UNUserNotificationCenterDelegate"; | |
export declare const CIO_PUSHNOTIFICATIONHANDLERDECLARATION_SNIPPET = "\nCIOAppPushNotificationsHandler* pnHandlerObj = [[CIOAppPushNotificationsHandler alloc] init];\n"; | |
diff --git a/node_modules/customerio-expo-plugin/src/.DS_Store b/node_modules/customerio-expo-plugin/src/.DS_Store | |
new file mode 100644 | |
index 0000000..c626f49 | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/src/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/src/helpers/.DS_Store b/node_modules/customerio-expo-plugin/src/helpers/.DS_Store | |
new file mode 100644 | |
index 0000000..d354fe3 | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/src/helpers/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/src/helpers/constants/ios.ts b/node_modules/customerio-expo-plugin/src/helpers/constants/ios.ts | |
index 3f70a5a..32720d6 100644 | |
--- a/node_modules/customerio-expo-plugin/src/helpers/constants/ios.ts | |
+++ b/node_modules/customerio-expo-plugin/src/helpers/constants/ios.ts | |
@@ -52,7 +52,7 @@ export const CIO_DEEPLINK_COMMENT_REGEX = /\sDeep link workaround for app killed | |
export const DEFAULT_BUNDLE_VERSION = '1'; | |
export const DEFAULT_BUNDLE_SHORT_VERSION = '1.0'; | |
export const CIO_TARGET_NAME = 'CustomerIOSDK'; | |
-export const CIO_NOTIFICATION_TARGET_NAME = 'NotificationService'; | |
+export const CIO_NOTIFICATION_TARGET_NAME = 'CIONotificationService'; | |
export const CIO_APPDELEGATEHEADER_IMPORT_SNIPPET = `#import <UserNotifications/UserNotifications.h>`; | |
export const CIO_APPDELEGATEHEADER_USER_NOTIFICATION_CENTER_SNIPPET = 'UNUserNotificationCenterDelegate'; | |
diff --git a/node_modules/customerio-expo-plugin/src/helpers/native-files/.DS_Store b/node_modules/customerio-expo-plugin/src/helpers/native-files/.DS_Store | |
new file mode 100644 | |
index 0000000..939baa8 | |
Binary files /dev/null and b/node_modules/customerio-expo-plugin/src/helpers/native-files/.DS_Store differ | |
diff --git a/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService-Info.plist b/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService-Info.plist | |
similarity index 91% | |
rename from node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService-Info.plist | |
rename to node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService-Info.plist | |
index cc44286..cdd1994 100644 | |
--- a/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService-Info.plist | |
+++ b/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService-Info.plist | |
@@ -9,7 +9,7 @@ | |
<key>CFBundleDevelopmentRegion</key> | |
<string>$(DEVELOPMENT_LANGUAGE)</string> | |
<key>CFBundleDisplayName</key> | |
- <string>NotificationServiceExtension</string> | |
+ <string>CIONotificationServiceExtension</string> | |
<key>CFBundleExecutable</key> | |
<string>$(EXECUTABLE_NAME)</string> | |
<key>CFBundleIdentifier</key> | |
@@ -25,7 +25,7 @@ | |
<key>NSExtensionPointIdentifier</key> | |
<string>com.apple.usernotifications.service</string> | |
<key>NSExtensionPrincipalClass</key> | |
- <string>NotificationService</string> | |
+ <string>CIONotificationService</string> | |
</dict> | |
</dict> | |
</plist> | |
diff --git a/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService.h b/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService.h | |
new file mode 100644 | |
index 0000000..f888bdd | |
--- /dev/null | |
+++ b/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService.h | |
@@ -0,0 +1,5 @@ | |
+#import <UserNotifications/UserNotifications.h> | |
+ | |
+@interface CIONotificationService : UNNotificationServiceExtension | |
+ | |
+@end | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService.m b/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService.m | |
similarity index 67% | |
rename from node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService.m | |
rename to node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService.m | |
index d684015..f83e911 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService.m | |
+++ b/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService.m | |
@@ -1,25 +1,25 @@ | |
-#import "NotificationService.h" | |
-#import "NotificationService-Swift.h" | |
+#import "CIONotificationService.h" | |
+#import "CIONotificationService-Swift.h" | |
-@interface NotificationService () | |
+@interface CIONotificationService () | |
@property (nonatomic, strong) void (^contentHandler)(UNNotificationContent *contentToDeliver); | |
@property (nonatomic, strong) UNMutableNotificationContent *bestAttemptContent; | |
@end | |
-@implementation NotificationService | |
+@implementation CIONotificationService | |
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler { | |
- NotificationServiceCioManager* cioManagerObj = [[NotificationServiceCioManager alloc] init]; | |
+ CIONotificationServiceManager* cioManagerObj = [[CIONotificationServiceManager alloc] init]; | |
[cioManagerObj didReceive:request withContentHandler:contentHandler]; | |
} | |
- (void)serviceExtensionTimeWillExpire { | |
// Called just before the extension will be terminated by the system. | |
// Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used. | |
- NotificationServiceCioManager* cioManagerObj = [[NotificationServiceCioManager alloc] init]; | |
+ CIONotificationServiceManager* cioManagerObj = [[CIONotificationServiceManager alloc] init]; | |
[cioManagerObj serviceExtensionTimeWillExpire]; | |
} | |
diff --git a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService.swift b/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService.swift | |
similarity index 92% | |
rename from node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService.swift | |
rename to node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService.swift | |
index 0e30100..e920fde 100644 | |
--- a/node_modules/customerio-expo-plugin/lib/commonjs/helpers/native-files/ios/NotificationService.swift | |
+++ b/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/CIONotificationService.swift | |
@@ -4,7 +4,7 @@ import CioTracking | |
import CioMessagingPushAPN | |
@objc | |
-public class NotificationServiceCioManager : NSObject { | |
+public class CIONotificationServiceManager : NSObject { | |
public override init() {} | |
diff --git a/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService.h b/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService.h | |
deleted file mode 100644 | |
index 32d6298..0000000 | |
--- a/node_modules/customerio-expo-plugin/src/helpers/native-files/ios/NotificationService.h | |
+++ /dev/null | |
@@ -1,5 +0,0 @@ | |
-#import <UserNotifications/UserNotifications.h> | |
- | |
-@interface NotificationService : UNNotificationServiceExtension | |
- | |
-@end | |
diff --git a/node_modules/customerio-expo-plugin/src/helpers/utils/injectCIOPodfileCode.ts b/node_modules/customerio-expo-plugin/src/helpers/utils/injectCIOPodfileCode.ts | |
index cba11fa..f7faba7 100644 | |
--- a/node_modules/customerio-expo-plugin/src/helpers/utils/injectCIOPodfileCode.ts | |
+++ b/node_modules/customerio-expo-plugin/src/helpers/utils/injectCIOPodfileCode.ts | |
@@ -51,7 +51,7 @@ export async function injectCIONotificationPodfileCode( | |
if (!matches) { | |
const snippetToInjectInPodfile = ` | |
${blockStart} | |
-target 'NotificationService' do | |
+target 'CIONotificationService' do | |
${useFrameworks === 'static' ? 'use_frameworks! :linkage => :static' : ''} | |
pod 'customerio-reactnative-richpush/apn', :path => '${getRelativePathToRNSDK(filename)}' | |
end | |
diff --git a/node_modules/customerio-expo-plugin/src/ios/withNotificationsXcodeProject.ts b/node_modules/customerio-expo-plugin/src/ios/withNotificationsXcodeProject.ts | |
index 8697690..310965e 100644 | |
--- a/node_modules/customerio-expo-plugin/src/ios/withNotificationsXcodeProject.ts | |
+++ b/node_modules/customerio-expo-plugin/src/ios/withNotificationsXcodeProject.ts | |
@@ -20,7 +20,7 @@ const ENV_FILENAME = 'Env.swift'; | |
const TARGETED_DEVICE_FAMILY = `"1,2"`; | |
-const addNotificationServiceExtension = async ( | |
+const addCIONotificationServiceExtension = async ( | |
options: CustomerIOPluginOptionsIOS, | |
xcodeProject: XcodeProject | |
) => { | |
@@ -53,28 +53,28 @@ export const withCioNotificationsXcodeProject: ConfigPlugin< | |
if (ios === undefined) | |
throw new Error( | |
- 'Adding NotificationServiceExtension failed: ios config missing from app.config.js or app.json.' | |
+ 'Adding CIONotificationServiceExtension failed: ios config missing from app.config.js or app.json.' | |
); | |
- // projectName and platformProjectRoot translates to appName and iosPath in addNotificationServiceExtension() | |
+ // projectName and platformProjectRoot translates to appName and iosPath in addCIONotificationServiceExtension() | |
const { projectName, platformProjectRoot } = modRequest; | |
const { bundleIdentifier, buildNumber } = ios; | |
if (bundleShortVersion === undefined) { | |
throw new Error( | |
- 'Adding NotificationServiceExtension failed: version missing from app.config.js or app.json' | |
+ 'Adding CIONotificationServiceExtension failed: version missing from app.config.js or app.json' | |
); | |
} | |
if (bundleIdentifier === undefined) { | |
throw new Error( | |
- 'Adding NotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json' | |
+ 'Adding CIONotificationServiceExtension failed: ios.bundleIdentifier missing from app.config.js or app.json' | |
); | |
} | |
if (projectName === undefined) { | |
throw new Error( | |
- 'Adding NotificationServiceExtension failed: name missing from app.config.js or app.json' | |
+ 'Adding CIONotificationServiceExtension failed: name missing from app.config.js or app.json' | |
); | |
} | |
@@ -91,7 +91,7 @@ export const withCioNotificationsXcodeProject: ConfigPlugin< | |
pushNotification, | |
}; | |
- const modifiedProjectFile = await addNotificationServiceExtension( | |
+ const modifiedProjectFile = await addCIONotificationServiceExtension( | |
options, | |
config.modResults | |
); | |
@@ -136,9 +136,9 @@ const addRichPushXcodeProj = async ( | |
const files = [ | |
PLIST_FILENAME, | |
- 'NotificationService.h', | |
- 'NotificationService.swift', | |
- 'NotificationService.m', | |
+ 'CIONotificationService.h', | |
+ 'CIONotificationService.swift', | |
+ 'CIONotificationService.m', | |
ENV_FILENAME, | |
]; | |
@@ -204,7 +204,7 @@ const addRichPushXcodeProj = async ( | |
// Add build phases to the new target | |
xcodeProject.addBuildPhase( | |
- ['NotificationService.m', 'NotificationService.swift', 'Env.swift'], | |
+ ['CIONotificationService.m', 'CIONotificationService.swift', 'Env.swift'], | |
'PBXSourcesBuildPhase', | |
'Sources', | |
nseTarget.uuid |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment