From 3e8bae159d42ed64eb32d1b731067e76579dc7e7 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Thu, 2 May 2024 09:02:12 -0700 Subject: [PATCH] feat(analytics): iOS SDK 10.24+ --- packages/firebase-analytics/platforms/ios/Podfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/firebase-analytics/platforms/ios/Podfile b/packages/firebase-analytics/platforms/ios/Podfile index 0fe84a8a..eac0f50d 100644 --- a/packages/firebase-analytics/platforms/ios/Podfile +++ b/packages/firebase-analytics/platforms/ios/Podfile @@ -4,9 +4,9 @@ platform :ios, '12.0' if defined?($NSFirebaseAnalyticsWithoutAdIdSupport) Pod::UI.puts "Using Firebase/AnalyticsWithoutAdIdSupport pod in place of default Firebase/Analytics" - pod 'Firebase/AnalyticsWithoutAdIdSupport', '~>10.22.0' + pod 'Firebase/AnalyticsWithoutAdIdSupport', '~>10.24.0' else Pod::UI.puts "Using default Firebase/Analytics with Ad Ids. May require App Tracking Transparency. Not allowed for Kids apps." Pod::UI.puts "You may set variable `$NSFirebaseAnalyticsWithoutAdIdSupport=true` in Podfile to use analytics without ad ids." - pod 'Firebase/Analytics', '~>10.22.0' + pod 'Firebase/Analytics', '~>10.24.0' end