Skip to content

Commit 1ea4958

Browse files
committed
build(deps, android): firebase-android-sdk 31.0.0
not breaking, one workaround for upstream IID transitive dependency issue
1 parent c11f3c1 commit 1ea4958

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
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:3.0.2'
37+
classpath 'com.google.firebase:firebase-appdistribution-gradle:3.0.3'
3838
}
3939
```
4040

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ project.ext {
215215
// Overriding Library SDK Versions
216216
firebase: [
217217
// Override Firebase SDK Version
218-
bom : "30.5.0"
218+
bom : "31.0.0"
219219
],
220220
],
221221
])
@@ -230,7 +230,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
230230

231231
```ruby
232232
# Override Firebase SDK Version
233-
$FirebaseSDKVersion = '9.6.0'
233+
$FirebaseSDKVersion = '10.0.0'
234234
```
235235

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

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:1.4.1'
41+
classpath 'com.google.firebase:perf-plugin:1.4.2'
4242
}
4343
```
4444

packages/app-distribution/android/build.gradle

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

9797
ReactNative.shared.applyPackageVersion()

packages/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@
7373
"minSdk": 19,
7474
"targetSdk": 33,
7575
"compileSdk": 33,
76-
"firebase": "30.5.0",
76+
"firebase": "31.0.0",
7777
"firebaseCrashlyticsGradle": "2.9.2",
78-
"firebasePerfGradle": "1.4.1",
78+
"firebasePerfGradle": "1.4.2",
7979
"gmsGoogleServicesGradle": "4.3.14",
8080
"playServicesAuth": "20.3.0"
8181
}

packages/messaging/android/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ dependencies {
116116
api appProject
117117
implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
118118
implementation "com.google.firebase:firebase-messaging"
119+
// temporary workaround: https://github.com/firebase/firebase-android-sdk/issues/4206
120+
implementation 'com.google.firebase:firebase-iid:21.1.0'
119121
}
120122

121123
ReactNative.shared.applyPackageVersion()

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:1.4.1'
18+
classpath 'com.google.firebase:perf-plugin:1.4.2'
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
@@ -33,7 +33,7 @@ buildscript {
3333
classpath 'com.google.gms:google-services:4.3.14' // https://developers.google.com/android/guides/google-services-plugin
3434
classpath 'com.android.tools.build:gradle:7.0.4'
3535
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
36-
classpath 'com.google.firebase:perf-plugin:1.4.1'
36+
classpath 'com.google.firebase:perf-plugin:1.4.2'
3737
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
3838
classpath 'com.google.firebase:firebase-appdistribution-gradle:3.0.3'
3939
}

0 commit comments

Comments
 (0)