mirror of https://github.com/tasks/tasks
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.
21 lines
683 B
Kotlin
21 lines
683 B
Kotlin
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:7.4.2")
|
|
classpath("com.google.gms:google-services:4.3.15")
|
|
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.4")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${libs.versions.kotlin.get()}")
|
|
classpath("com.google.dagger:hilt-android-gradle-plugin:${libs.versions.dagger.hilt.get()}")
|
|
classpath("com.google.android.gms:oss-licenses-plugin:0.10.6")
|
|
}
|
|
}
|
|
|
|
tasks.getByName<Wrapper>("wrapper") {
|
|
gradleVersion = "7.5"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|