Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -333,12 +333,12 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the

```ruby
# Override Firebase SDK Version
$FirebaseSDKVersion = '11.13.0'
$FirebaseSDKVersion = '11.14.0'
```

Once changed, reinstall your projects pods via pod install and rebuild your project with `npx react-native run-ios`.

Alternatively, if you cannot edit the Podfile easily (as when using Expo), you may add the environment variable `FIREBASE_SDK_VERSION=11.12.0` (or whatever version you need) to the command line that installs pods. For example `FIREBASE_SDK_VERSION=11.13.0 yarn expo prebuild --clean`
Alternatively, if you cannot edit the Podfile easily (as when using Expo), you may add the environment variable `FIREBASE_SDK_VERSION=11.14.0` (or whatever version you need) to the command line that installs pods. For example `FIREBASE_SDK_VERSION=11.14.0 yarn expo prebuild --clean`

### Android Performance

2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
@@ -74,7 +74,7 @@
},
"sdkVersions": {
"ios": {
"firebase": "11.13.0",
"firebase": "11.14.0",
"iosTarget": "13.0",
"macosTarget": "10.15",
"tvosTarget": "13.0"
3 changes: 2 additions & 1 deletion tests/ios/Podfile
Original file line number Diff line number Diff line change
@@ -19,7 +19,8 @@ Pod::UI.puts "react-native-firebase/tests: Using Firebase SDK version '#{$Fireba
#$RNFirebaseAnalyticsWithoutAdIdSupport = true # toggle this to true for the no-ad-tracking Analytics subspec

# Toggle this to true if you want to include support for on device conversion measurement APIs
$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = true
# DISABLED: Causes conflict between deprecated GoogleAppMeasurementOnDeviceConversion and new GoogleAdsOnDeviceConversion
$RNFirebaseAnalyticsGoogleAppMeasurementOnDeviceConversion = false

# Toggle this to true if you want to include optional support for extended analytics features
$RNFirebaseAnalyticsEnableAdSupport = true
Loading