Simple-Notes/build.gradle

31 lines
689 B
Groovy
Raw Normal View History

2016-02-13 21:05:54 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.71'
2017-11-19 22:44:47 +01:00
2016-02-13 21:05:54 +01:00
repositories {
2017-11-19 22:44:47 +01:00
google()
jcenter()
2016-02-13 21:05:54 +01:00
}
2017-11-19 22:44:47 +01:00
2016-02-13 21:05:54 +01:00
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
2017-11-19 22:44:47 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2016-02-13 21:05:54 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2017-11-19 22:44:47 +01:00
google()
jcenter()
2017-11-10 15:28:22 +01:00
maven { url "https://jitpack.io" }
2016-02-13 21:05:54 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}