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.
20 lines
595 B
Kotlin
20 lines
595 B
Kotlin
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:7.0.0-alpha15")
|
|
classpath("com.google.gms:google-services:4.3.5")
|
|
classpath("com.google.firebase:firebase-crashlytics-gradle:2.5.2")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
|
|
classpath("com.google.dagger:hilt-android-gradle-plugin:${Versions.hilt}")
|
|
}
|
|
}
|
|
|
|
tasks.getByName<Wrapper>("wrapper") {
|
|
gradleVersion = "7.0-rc-1"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|