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

25 lines
557 B
Kotlin

plugins {
id("com.google.devtools.ksp") version "1.9.23-1.0.20" apply false
}
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.6"
distributionType = Wrapper.DistributionType.ALL
}