Skip to content

Commit

Permalink
fix(app, android): adopt firebase-android-sdk 32.5.0
Browse files Browse the repository at this point in the history
- implies bump to google services gradle plugin to 4.4.0
- implies bump to app distribution plugin to 4.0.1
  • Loading branch information
mikehardy committed Nov 1, 2023
1 parent b85f5a4 commit 9834bfb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/app-distribution/usage/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Add the plugin to your `/android/build.gradle` file as a dependency:
buildscript {
dependencies {
// ...
classpath 'com.google.firebase:firebase-appdistribution-gradle:4.0.0'
classpath 'com.google.firebase:firebase-appdistribution-gradle:4.0.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ First, add the `google-services` plugin as a dependency inside of your `/android
buildscript {
dependencies {
// ... other dependencies
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.gms:google-services:4.4.0'
// Add me --- /\
}
}
Expand Down Expand Up @@ -281,7 +281,7 @@ project.ext {
// Overriding Library SDK Versions
firebase: [
// Override Firebase SDK Version
bom : "32.4.0"
bom : "32.5.0"
],
],
])
Expand Down
4 changes: 2 additions & 2 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@
"minSdk": 19,
"targetSdk": 33,
"compileSdk": 33,
"firebase": "32.4.0",
"firebase": "32.5.0",
"firebaseCrashlyticsGradle": "2.9.9",
"firebasePerfGradle": "1.4.2",
"gmsGoogleServicesGradle": "4.3.15",
"gmsGoogleServicesGradle": "4.4.0",
"playServicesAuth": "20.7.0"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.gms:google-services:4.4.0'
classpath("com.android.tools.build:gradle:4.1.0")
// NOTE: Do not place your application dependencies here; they belong
Expand Down
4 changes: 2 additions & 2 deletions tests/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.15' // https://developers.google.com/android/guides/google-services-plugin
classpath 'com.google.gms:google-services:4.4.0' // https://developers.google.com/android/guides/google-services-plugin
classpath("com.android.tools.build:gradle:8.1.2")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
classpath 'com.google.firebase:firebase-appdistribution-gradle:4.0.0'
classpath 'com.google.firebase:firebase-appdistribution-gradle:4.0.1'
}
}

Expand Down

0 comments on commit 9834bfb

Please sign in to comment.