Skip to content

Commit 4562cd8

Browse files
committed
fix(sdks, android): firebase-android-sdk 28.3.1, google-services plugin 4.3.10
1 parent 1448bb2 commit 4562cd8

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ First, add the `google-services` plugin as a dependency inside of your `/android
6161
buildscript {
6262
dependencies {
6363
// ... other dependencies
64-
classpath 'com.google.gms:google-services:4.3.8'
64+
classpath 'com.google.gms:google-services:4.3.10'
6565
// Add me --- /\
6666
}
6767
}
@@ -193,7 +193,7 @@ project.ext {
193193
// Overriding Library SDK Versions
194194
firebase: [
195195
// Override Firebase SDK Version
196-
bom : "28.0.1"
196+
bom : "28.3.1"
197197
],
198198
],
199199
])
@@ -208,7 +208,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
208208

209209
```ruby
210210
# Override Firebase SDK Version
211-
$FirebaseSDKVersion = '8.0.0'
211+
$FirebaseSDKVersion = '8.5.0'
212212
```
213213

214214
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
@@ -72,10 +72,10 @@
7272
"targetSdk": 30,
7373
"compileSdk": 30,
7474
"buildTools": "30.0.2",
75-
"firebase": "28.3.0",
75+
"firebase": "28.3.1",
7676
"firebaseCrashlyticsGradle": "2.7.1",
7777
"firebasePerfGradle": "1.4.0",
78-
"gmsGoogleServicesGradle": "4.3.8",
78+
"gmsGoogleServicesGradle": "4.3.10",
7979
"playServicesAuth": "19.2.0"
8080
}
8181
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ buildscript {
138138
jcenter()
139139
}
140140
dependencies {
141-
classpath 'com.google.gms:google-services:4.3.8'
141+
classpath 'com.google.gms:google-services:4.3.10'
142142
classpath(\\"com.android.tools.build:gradle:4.1.0\\")
143143
144144
// 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
@@ -31,7 +31,7 @@ buildscript {
3131
mavenCentral()
3232
}
3333
dependencies {
34-
classpath 'com.google.gms:google-services:4.3.8' // https://developers.google.com/android/guides/google-services-plugin
34+
classpath 'com.google.gms:google-services:4.3.10' // https://developers.google.com/android/guides/google-services-plugin
3535
classpath 'com.android.tools.build:gradle:7.0.0'
3636
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
3737
classpath 'com.google.firebase:perf-plugin:1.4.0'

0 commit comments

Comments
 (0)