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
656 B
Kotlin

buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath("com.android.tools.build:gradle:7.2.2")
classpath("com.google.gms:google-services:4.3.13")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("com.google.dagger:hilt-android-gradle-plugin:${Versions.hilt}")
classpath("com.google.android.gms:oss-licenses-plugin:0.10.5")
}
}
tasks.getByName<Wrapper>("wrapper") {
gradleVersion = "7.4.2"
distributionType = Wrapper.DistributionType.ALL
}