You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/build.gradle.kts

21 lines
476 B
Kotlin

buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath(libs.gradle)
classpath(libs.google.services)
classpath(libs.firebase.crashlytics.gradle)
classpath(libs.kotlin.gradle)
classpath(libs.dagger.hilt.gradle)
classpath(libs.oss.licenses.plugin)
}
}
tasks.getByName<Wrapper>("wrapper") {
gradleVersion = "8.2.1"
distributionType = Wrapper.DistributionType.ALL
}