Kapng-Android/build.gradle

31 lines
827 B
Groovy
Raw Normal View History

2018-09-27 20:05:08 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-02-05 19:52:13 +00:00
ext.kotlin_version = '1.4.30'
ext.anko_version = '0.10.8'
ext.dokka_version = '1.4.0'
2018-09-27 20:05:08 +00:00
repositories {
google()
jcenter()
}
dependencies {
2021-02-05 19:52:13 +00:00
classpath 'com.android.tools.build:gradle:4.1.2'
2018-09-27 20:05:08 +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
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}"
2018-09-27 20:05:08 +00:00
}
}
allprojects {
repositories {
google()
jcenter()
2018-10-24 11:21:27 +00:00
maven { url "https://jitpack.io" }
2018-09-27 20:05:08 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}