From 1f52114fde1c81243adf3e9f075358b60161ef44 Mon Sep 17 00:00:00 2001 From: Xavier Costa Date: Thu, 20 Nov 2025 13:35:03 +0000 Subject: [PATCH] fix: include firebase wrapper in notification service FCM podspec --- customerio-reactnative-richpush.podspec | 2 ++ .../ios/NotificationServiceExtension/NotificationService.swift | 1 + 2 files changed, 3 insertions(+) diff --git a/customerio-reactnative-richpush.podspec b/customerio-reactnative-richpush.podspec index dfd8e206..21bbdfbd 100644 --- a/customerio-reactnative-richpush.podspec +++ b/customerio-reactnative-richpush.podspec @@ -34,5 +34,7 @@ Pod::Spec.new do |s| s.subspec 'fcm' do |ss| ss.dependency "CustomerIO/MessagingPushFCM", package["cioNativeiOSSdkVersion"] + # Customer.io Firebase Wrapper - provides Firebase integration + ss.dependency "CioFirebaseWrapper", package["cioiOSFirebaseWrapperSdkVersion"] end end diff --git a/example/ios/NotificationServiceExtension/NotificationService.swift b/example/ios/NotificationServiceExtension/NotificationService.swift index 0f6991f7..713a2fa8 100644 --- a/example/ios/NotificationServiceExtension/NotificationService.swift +++ b/example/ios/NotificationServiceExtension/NotificationService.swift @@ -1,6 +1,7 @@ import UserNotifications #if USE_FCM import CioMessagingPushFCM +import CioFirebaseWrapper typealias PushInitializer = MessagingPushFCM #else