ProjectLaogai/build.gradle

29 lines
712 B
Groovy
Raw Permalink Normal View History

2018-10-24 18:22:05 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2018-12-18 11:49:46 +01:00
ext.kotlin_version = '1.3.11'
2018-10-24 18:22:05 +02:00
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
2018-10-26 00:50:37 +02:00
maven { url "https://dl.bintray.com/drummer-aidan/maven/" }
2018-10-24 18:22:05 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}