How to use Firebase BoM in Kotlin Gradle dsl?

Viewed 1062

How does this look it kotlin DSL:

dependencies {
  // Import the BoM for the Firebase platform
  implementation platform('com.google.firebase:firebase-bom:26.2.0')
}

The above is the current recommended at Firebase docs

1 Answers
Related