Skip to content

Commit 3222976

Browse files
committed
fix: firebase-android-sdk 34.14.0, firebase-ios-sdk 12.11.0, firebase-js-sdk 12.14.0
1 parent 92456b3 commit 3222976

8 files changed

Lines changed: 591 additions & 471 deletions

File tree

docs/crashlytics/android-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ buildscript {
4040
// ..
4141
dependencies {
4242
// ..
43-
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.6'
43+
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.7'
4444
}
4545
// ..
4646
}

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ project.ext {
336336
// Overriding Library SDK Versions if desired
337337
firebase: [
338338
// Override Firebase SDK Version
339-
bom : "34.10.0"
339+
bom : "34.14.0"
340340
],
341341
],
342342
])
@@ -351,12 +351,12 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
351351

352352
```ruby
353353
# Override Firebase SDK Version if desired
354-
$FirebaseSDKVersion = '12.10.0'
354+
$FirebaseSDKVersion = '12.11.0'
355355
```
356356

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

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

361361
### Android Performance
362362

packages/app-distribution/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ dependencies {
9494
api appProject
9595
implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
9696
// TODO remove the specific version once it is out of beta and participates in bom versioning
97-
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta17'
97+
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta19'
9898
// TODO demonstrate how to only include this in certain build variants
9999
// - perhaps have firebase.json name the variants to include, then roll through variants here and only
100100
// add the dependency to variants that match? Or... (PRs welcome...)
101-
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta17'
101+
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta19'
102102
}
103103

104104
ReactNative.shared.applyPackageVersion()

packages/app/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"react-native": "*"
8888
},
8989
"dependencies": {
90-
"firebase": "12.10.0"
90+
"firebase": "12.14.0"
9191
},
9292
"devDependencies": {
9393
"@react-native-async-storage/async-storage": "^2.2.0",
@@ -105,7 +105,7 @@
105105
},
106106
"sdkVersions": {
107107
"ios": {
108-
"firebase": "12.10.0",
108+
"firebase": "12.11.0",
109109
"iosTarget": "15.0",
110110
"macosTarget": "10.15",
111111
"tvosTarget": "15.0"
@@ -114,8 +114,8 @@
114114
"minSdk": 23,
115115
"targetSdk": 34,
116116
"compileSdk": 34,
117-
"firebase": "34.10.0",
118-
"firebaseCrashlyticsGradle": "3.0.6",
117+
"firebase": "34.14.0",
118+
"firebaseCrashlyticsGradle": "3.0.7",
119119
"firebasePerfGradle": "2.0.2",
120120
"gmsGoogleServicesGradle": "4.4.4",
121121
"playServicesAuth": "21.5.0",

packages/crashlytics/plugin/__tests__/__snapshots__/androidPlugin.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ buildscript {
1515
jcenter()
1616
}
1717
dependencies {
18-
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.6'
18+
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.7'
1919
classpath("com.android.tools.build:gradle:4.1.0")
2020
2121
// NOTE: Do not place your application dependencies here; they belong

tests/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ buildscript {
3636
classpath("com.facebook.react:react-native-gradle-plugin")
3737
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
3838
classpath 'com.google.firebase:perf-plugin:2.0.2'
39-
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.6'
39+
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.7'
4040
classpath 'com.google.firebase:firebase-appdistribution-gradle:5.2.1'
4141
}
4242
}

0 commit comments

Comments
 (0)