micropub-android/build.gradle

32 lines
688 B
Groovy
Raw Normal View History

2018-02-24 00:02:13 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.31'
2018-02-24 00:02:13 +00:00
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2018-02-24 00:02:13 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
2018-02-24 19:17:55 +00:00
ext {
archLifecycleVersion = "1.0.0"
}