Skip to content

Commit

Permalink
fix(analytics, ios): handle RNFirebaseAnalyticsWithoutAdIdSupport == …
Browse files Browse the repository at this point in the history
…false Podfile case correctly (#6078)
  • Loading branch information
OskarJuszczyk authored Feb 16, 2022
1 parent d9cf9c3 commit ca82e54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/analytics/RNFBAnalytics.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Pod::Spec.new do |s|
end

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

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

1 comment on commit ca82e54

@vercel
Copy link

@vercel vercel bot commented on ca82e54 Feb 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.