Skip to content

Commit ca82e54

Browse files
fix(analytics, ios): handle RNFirebaseAnalyticsWithoutAdIdSupport == false Podfile case correctly (#6078)
1 parent d9cf9c3 commit ca82e54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/analytics/RNFBAnalytics.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Pod::Spec.new do |s|
3434
end
3535

3636
# Firebase dependencies
37-
if defined?($RNFirebaseAnalyticsWithoutAdIdSupport)
37+
if defined?($RNFirebaseAnalyticsWithoutAdIdSupport) && ($RNFirebaseAnalyticsWithoutAdIdSupport == true)
3838
Pod::UI.puts "#{s.name}: Using Firebase/AnalyticsWithoutAdIdSupport pod in place of default Firebase/Analytics"
3939

4040
# Releasing as non-breaking change as it is optional but it raises minimum requirements, validate just in case

0 commit comments

Comments
 (0)