Simple-Calculator/build.gradle

30 lines
746 B
Groovy
Raw Normal View History

2015-12-24 12:28:00 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2017-10-22 15:37:36 +02:00
ext.kotlin_version = '1.1.51'
2015-12-24 12:28:00 +01:00
repositories {
jcenter()
}
dependencies {
2017-10-22 14:49:27 +02:00
classpath 'com.android.tools.build:gradle:2.3.3'
2016-06-01 18:00:18 +02:00
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
2017-10-22 15:37:36 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2015-12-24 12:28:00 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
2017-10-22 15:37:36 +02:00
maven {
url "https://maven.google.com"
}
2015-12-24 12:28:00 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}