BuyWhatNative/build.gradle

29 lines
675 B
Groovy
Raw Permalink Normal View History

2017-07-05 10:18:15 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2017-07-06 09:43:52 +00:00
ext.kotlin_version = '1.1.3-2'
2017-07-05 10:18:15 +00:00
repositories {
google()
jcenter()
}
dependencies {
2017-07-11 02:45:13 +00:00
classpath 'com.android.tools.build:gradle:3.0.0-alpha6'
2017-07-05 10:18:15 +00:00
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()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}