Skip to content

Commit b7d5f63

Browse files
committed
fix(app): SDK updates: js 12.4.0, ios 12.4.0, android 34.4.0
1 parent 4fecb30 commit b7d5f63

File tree

6 files changed

+262
-232
lines changed

6 files changed

+262
-232
lines changed

docs/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ First, add the `google-services` plugin as a dependency inside of your `/android
138138
buildscript {
139139
dependencies {
140140
// ... other dependencies
141-
classpath 'com.google.gms:google-services:4.4.3'
141+
classpath 'com.google.gms:google-services:4.4.4'
142142
// Add me --- /\
143143
}
144144
}
@@ -310,17 +310,17 @@ Within your projects /android/build.gradle file, provide your own versions by sp
310310
project.ext {
311311
set('react-native', [
312312
versions: [
313-
// Overriding Build/Android SDK Versions
313+
// Overriding Build/Android SDK Versions if desired
314314
android : [
315315
minSdk : 23,
316316
targetSdk : 33,
317317
compileSdk: 34,
318318
],
319319
320-
// Overriding Library SDK Versions
320+
// Overriding Library SDK Versions if desired
321321
firebase: [
322322
// Override Firebase SDK Version
323-
bom : "34.3.0"
323+
bom : "34.4.0"
324324
],
325325
],
326326
])
@@ -334,8 +334,8 @@ Once changed, rebuild your application with `npx react-native run-android`.
334334
Open your projects `/ios/Podfile` and add any of the globals shown below to the top of the file:
335335

336336
```ruby
337-
# Override Firebase SDK Version
338-
$FirebaseSDKVersion = '12.3.0'
337+
# Override Firebase SDK Version if desired
338+
$FirebaseSDKVersion = '12.4.0'
339339
```
340340

341341
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"react-native": "*"
5858
},
5959
"dependencies": {
60-
"firebase": "12.3.0"
60+
"firebase": "12.4.0"
6161
},
6262
"devDependencies": {
6363
"@react-native-async-storage/async-storage": "^2.2.0",
@@ -74,7 +74,7 @@
7474
},
7575
"sdkVersions": {
7676
"ios": {
77-
"firebase": "12.3.0",
77+
"firebase": "12.4.0",
7878
"iosTarget": "15.0",
7979
"macosTarget": "10.15",
8080
"tvosTarget": "15.0"
@@ -83,10 +83,10 @@
8383
"minSdk": 23,
8484
"targetSdk": 34,
8585
"compileSdk": 34,
86-
"firebase": "34.3.0",
86+
"firebase": "34.4.0",
8787
"firebaseCrashlyticsGradle": "3.0.6",
8888
"firebasePerfGradle": "2.0.1",
89-
"gmsGoogleServicesGradle": "4.4.3",
89+
"gmsGoogleServicesGradle": "4.4.4",
9090
"playServicesAuth": "21.4.0",
9191
"firebaseAppDistributionGradle": "5.1.1"
9292
}

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.4.3'
141+
classpath 'com.google.gms:google-services:4.4.4'
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.4.3' // https://developers.google.com/android/guides/google-services-plugin
34+
classpath 'com.google.gms:google-services:4.4.4' // https://developers.google.com/android/guides/google-services-plugin
3535
classpath 'com.android.tools.build:gradle:8.9.2' // https://mvnrepository.com/artifact/com.android.tools.build/gradle?repo=google
3636
classpath("com.facebook.react:react-native-gradle-plugin")
3737
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")

0 commit comments

Comments
 (0)