Kapng-Android/build.gradle

28 lines
696 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-06-25 14:34:25 +00:00
ext.kotlin_version = '1.5.20'
2018-09-27 20:05:08 +00:00
repositories {
google()
2021-06-22 11:03:14 +00:00
mavenCentral()
2018-09-27 20:05:08 +00:00
}
dependencies {
2021-06-22 11:03:14 +00:00
classpath 'com.android.tools.build:gradle:4.2.1'
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
}
}
allprojects {
repositories {
google()
2021-06-22 11:03:14 +00:00
mavenCentral()
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
}