You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, the plugin uses explicit versions for separate Firebase products. But the preferred solution to include Firebase to android is using the BoM method as specified in
dependencies {
// Import the BoM for the Firebase platform
implementation(platform("com.google.firebase:firebase-bom:32.2.0"))
// Add the dependencies for the Crashlytics and Analytics libraries
// When using the BoM, you don't specify versions in Firebase library dependencies
implementation("com.google.firebase:firebase-crashlytics")
implementation("com.google.firebase:firebase-analytics")
}
Preferred solution
Offer a variable like $firebaseBomVersion in variables.gradle, if that variable is existing use the BOM approach.
Alternative options
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Plugin(s)
Current problem
Right now, the plugin uses explicit versions for separate Firebase products. But the preferred solution to include Firebase to android is using the BoM method as specified in
https://firebase.google.com/docs/crashlytics/get-started?platform=android
aka
Preferred solution
Offer a variable like
$firebaseBomVersion
invariables.gradle
, if that variable is existing use the BOM approach.Alternative options
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: