Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(app, sdk): adopt firebase-android-sdk 32.4.0 #7413

Merged
merged 1 commit into from
Oct 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ project.ext {
// Overriding Library SDK Versions
firebase: [
// Override Firebase SDK Version
bom : "32.3.1"
bom : "32.4.0"
],
],
])
Expand Down
4 changes: 2 additions & 2 deletions packages/app-distribution/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ dependencies {
api appProject
implementation platform("com.google.firebase:firebase-bom:${ReactNative.ext.getVersion("firebase", "bom")}")
// TODO remove the specific version once it is out of beta and participates in bom versioning
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta10'
implementation 'com.google.firebase:firebase-appdistribution-api:16.0.0-beta11'
// TODO demonstrate how to only include this in certain build variants
// - perhaps have firebase.json name the variants to include, then roll through variants here and only
// add the dependency to variants that match? Or... (PRs welcome...)
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta10'
// implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta11'
}

ReactNative.shared.applyPackageVersion()
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"minSdk": 19,
"targetSdk": 33,
"compileSdk": 33,
"firebase": "32.3.1",
"firebase": "32.4.0",
"firebaseCrashlyticsGradle": "2.9.9",
"firebasePerfGradle": "1.4.2",
"gmsGoogleServicesGradle": "4.3.15",
Expand Down
Loading