41 lines
889 B
Groovy
41 lines
889 B
Groovy
|
buildscript {
|
||
|
ext.kotlin_version = '1.3.50'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
jcenter()
|
||
|
google()
|
||
|
|
||
|
maven {
|
||
|
url 'https://maven.fabric.io/public'
|
||
|
name 'Fabric'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
classpath 'com.android.tools.build:gradle:3.5.3'
|
||
|
|
||
|
// noinspection GradleDynamicVersion
|
||
|
classpath 'io.fabric.tools:gradle:1.+'
|
||
|
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61'
|
||
|
|
||
|
// NOTE: Do not place your application dependencies here; they belong
|
||
|
// in the individual module build.gradle files
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" }
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
|
||
|
maven {
|
||
|
url 'https://jitpack.io'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
task clean(type: Delete) {
|
||
|
delete rootProject.buildDir
|
||
|
}
|