Skip to content

Commit dacdfa2

Browse files
committed
fix: firebase-ios-sdk 12.6.0 / firebase-js-sdk 12.6.0 / firebase-android-sdk 34.6.0
note there were android plugin bumps in app-distribution and perf gradle plugins
1 parent 9a31994 commit dacdfa2

File tree

8 files changed

+703
-665
lines changed

8 files changed

+703
-665
lines changed

docs/app-distribution/usage/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Add the plugin to your `/android/build.gradle` file as a dependency:
3434
buildscript {
3535
dependencies {
3636
// ...
37-
classpath 'com.google.firebase:firebase-appdistribution-gradle:5.1.1'
37+
classpath 'com.google.firebase:firebase-appdistribution-gradle:5.2.0'
3838
}
3939
```
4040

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ project.ext {
320320
// Overriding Library SDK Versions if desired
321321
firebase: [
322322
// Override Firebase SDK Version
323-
bom : "34.4.0"
323+
bom : "34.6.0"
324324
],
325325
],
326326
])
@@ -335,12 +335,12 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
335335

336336
```ruby
337337
# Override Firebase SDK Version if desired
338-
$FirebaseSDKVersion = '12.5.0'
338+
$FirebaseSDKVersion = '12.6.0'
339339
```
340340

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

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

345345
### Android Performance
346346

docs/perf/usage/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add the plugin to your `/android/build.gradle` file as a dependency:
3838
buildscript {
3939
dependencies {
4040
// ...
41-
classpath 'com.google.firebase:perf-plugin:2.0.1'
41+
classpath 'com.google.firebase:perf-plugin:2.0.2'
4242
}
4343
```
4444

packages/app-distribution/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-appdistribution-gradle:5.1.1'
18+
classpath 'com.google.firebase:firebase-appdistribution-gradle:5.2.0'
1919
classpath("com.android.tools.build:gradle:4.1.0")
2020
2121
// NOTE: Do not place your application dependencies here; they belong

packages/app/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
},
7575
"sdkVersions": {
7676
"ios": {
77-
"firebase": "12.5.0",
77+
"firebase": "12.6.0",
7878
"iosTarget": "15.0",
7979
"macosTarget": "10.15",
8080
"tvosTarget": "15.0"
@@ -83,12 +83,12 @@
8383
"minSdk": 23,
8484
"targetSdk": 34,
8585
"compileSdk": 34,
86-
"firebase": "34.4.0",
86+
"firebase": "34.6.0",
8787
"firebaseCrashlyticsGradle": "3.0.6",
88-
"firebasePerfGradle": "2.0.1",
88+
"firebasePerfGradle": "2.0.2",
8989
"gmsGoogleServicesGradle": "4.4.4",
9090
"playServicesAuth": "21.4.0",
91-
"firebaseAppDistributionGradle": "5.1.1"
91+
"firebaseAppDistributionGradle": "5.2.0"
9292
}
9393
}
9494
}

packages/perf/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:perf-plugin:2.0.1'
18+
classpath 'com.google.firebase:perf-plugin:2.0.2'
1919
classpath("com.android.tools.build:gradle:4.1.0")
2020
2121
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)