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
598 B
Kotlin
21 lines
598 B
Kotlin
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
maven("https://maven.fabric.io/public")
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:3.6.3")
|
|
classpath("com.google.gms:google-services:4.3.3")
|
|
// https://docs.fabric.io/android/changelog.html#fabric-gradle-plugin
|
|
classpath("io.fabric.tools:gradle:1.31.2")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
|
|
}
|
|
}
|
|
|
|
tasks.getByName<Wrapper>("wrapper") {
|
|
gradleVersion = "5.6.4"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|