Skip to content

Commit 1e43e1a

Browse files
committed
fix(app, sdks): firebase-ios-sdk 10.1.0 / firebase-android-sdk 31.0.2
also a bump to the app-distribution gradle plugin, but we only see that in the test app
1 parent 05fa76a commit 1e43e1a

File tree

5 files changed

+150
-150
lines changed

5 files changed

+150
-150
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.3'
37+
classpath 'com.google.firebase:firebase-appdistribution-gradle:3.1.0'
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 : "31.0.1"
218+
bom : "31.0.2"
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 = '10.0.0'
233+
$FirebaseSDKVersion = '10.1.0'
234234
```
235235

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

packages/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@
6565
},
6666
"sdkVersions": {
6767
"ios": {
68-
"firebase": "10.0.0",
68+
"firebase": "10.1.0",
6969
"iosTarget": "11.0",
7070
"macosTarget": "10.13"
7171
},
7272
"android": {
7373
"minSdk": 19,
7474
"targetSdk": 33,
7575
"compileSdk": 33,
76-
"firebase": "31.0.1",
76+
"firebase": "31.0.2",
7777
"firebaseCrashlyticsGradle": "2.9.2",
7878
"firebasePerfGradle": "1.4.2",
7979
"gmsGoogleServicesGradle": "4.3.14",

tests/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ buildscript {
3535
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
3636
classpath 'com.google.firebase:perf-plugin:1.4.2'
3737
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
38-
classpath 'com.google.firebase:firebase-appdistribution-gradle:3.0.3'
38+
classpath 'com.google.firebase:firebase-appdistribution-gradle:3.1.0'
3939
}
4040
}
4141

0 commit comments

Comments
 (0)