micropub-android/build.gradle
Peter Stuifzand 81b095667d Many improvements
- Use linearadapter for syndicate-to
- Fix problem when finding url in text
- Rewrite WebSignin in Kotlin
- Cleanup bookmark interface
2018-04-11 00:22:59 +02:00

32 lines
688 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.31'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
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()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
archLifecycleVersion = "1.0.0"
}