Yuito-app-android/build.gradle

26 lines
553 B
Groovy
Raw Normal View History

2017-01-03 02:37:38 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2018-08-07 21:02:45 +02:00
ext.kotlin_version = '1.2.60'
2017-01-03 02:37:38 +01:00
repositories {
jcenter()
google()
2017-01-03 02:37:38 +01:00
}
dependencies {
2018-09-25 19:04:57 +02:00
classpath 'com.android.tools.build:gradle:3.2.0'
2017-11-05 22:32:36 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2017-01-03 02:37:38 +01:00
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
google()
2017-01-03 02:37:38 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}