Simple-Calculator/build.gradle

30 lines
688 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 {
2020-05-24 22:39:05 +02:00
ext.kotlin_version = '1.3.72'
2015-12-24 12:28:00 +01:00
repositories {
2017-11-29 21:34:46 +01:00
google()
2018-10-05 22:08:10 +02:00
jcenter()
2015-12-24 12:28:00 +01:00
}
2017-11-29 21:34:46 +01:00
2015-12-24 12:28:00 +01:00
dependencies {
2020-05-24 22:39:05 +02:00
classpath 'com.android.tools.build:gradle:3.6.3'
2017-11-29 21:34:46 +01: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 {
2017-11-29 21:34:46 +01:00
google()
2018-10-05 22:08:10 +02:00
jcenter()
maven { url "https://jitpack.io" }
2015-12-24 12:28:00 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}