Kapng-Android/build.gradle

28 lines
696 B
Groovy
Raw Permalink 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 {
2023-05-17 05:17:33 +00:00
ext.kotlin_version = '1.8.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 {
2023-05-17 05:17:33 +00:00
classpath 'com.android.tools.build:gradle:8.0.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
}