Skip to content

Commit 5e116cd

Browse files
committed
feat(app): ios sdk 10.27.0 / android sdk 33.1.0
1 parent b6079dd commit 5e116cd

File tree

5 files changed

+161
-161
lines changed

5 files changed

+161
-161
lines changed

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ buildscript {
7070
// ... other dependencies
7171
// NOTE: if you are on react-native 0.71 or below, you must not update
7272
// the google-services plugin past version 4.3.15 as it requires gradle >= 7.3.0
73-
classpath 'com.google.gms:google-services:4.4.1'
73+
classpath 'com.google.gms:google-services:4.4.2'
7474
// Add me --- /\
7575
}
7676
}
@@ -290,7 +290,7 @@ project.ext {
290290
// Overriding Library SDK Versions
291291
firebase: [
292292
// Override Firebase SDK Version
293-
bom : "33.0.0"
293+
bom : "33.1.0"
294294
],
295295
],
296296
])
@@ -305,7 +305,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
305305

306306
```ruby
307307
# Override Firebase SDK Version
308-
$FirebaseSDKVersion = '10.25.0'
308+
$FirebaseSDKVersion = '10.27.0'
309309
```
310310

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

packages/app-distribution/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ dependencies {
9696
api appProject
9797
implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
9898
// TODO remove the specific version once it is out of beta and participates in bom versioning
99-
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta12'
99+
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta13'
100100
// TODO demonstrate how to only include this in certain build variants
101101
// - perhaps have firebase.json name the variants to include, then roll through variants here and only
102102
// add the dependency to variants that match? Or... (PRs welcome...)
103-
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta12'
103+
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta13'
104104
}
105105

106106
ReactNative.shared.applyPackageVersion()

packages/app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,18 @@
7373
},
7474
"sdkVersions": {
7575
"ios": {
76-
"firebase": "10.25.0",
76+
"firebase": "10.27.0",
7777
"iosTarget": "11.0",
7878
"macosTarget": "10.13"
7979
},
8080
"android": {
8181
"minSdk": 21,
8282
"targetSdk": 34,
8383
"compileSdk": 34,
84-
"firebase": "33.0.0",
84+
"firebase": "33.1.0",
8585
"firebaseCrashlyticsGradle": "3.0.0",
8686
"firebasePerfGradle": "1.4.2",
87-
"gmsGoogleServicesGradle": "4.4.1",
87+
"gmsGoogleServicesGradle": "4.4.2",
8888
"playServicesAuth": "21.1.1"
8989
}
9090
}

tests/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ buildscript {
3131
mavenCentral()
3232
}
3333
dependencies {
34-
classpath 'com.google.gms:google-services:4.4.1' // https://developers.google.com/android/guides/google-services-plugin
34+
classpath 'com.google.gms:google-services:4.4.2' // https://developers.google.com/android/guides/google-services-plugin
3535
classpath("com.android.tools.build:gradle:8.4.0")
3636
classpath("com.facebook.react:react-native-gradle-plugin")
3737
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
3838
classpath 'com.google.firebase:perf-plugin:1.4.2'
39-
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.0'
39+
classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.1'
4040
classpath 'com.google.firebase:firebase-appdistribution-gradle:5.0.0'
4141
}
4242
}

0 commit comments

Comments
 (0)