mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
19 lines
559 B
Groovy
19 lines
559 B
Groovy
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||
|
buildscript {
|
||
|
ext.kotlin_version = '1.7.10'
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
plugins {
|
||
|
id 'com.android.application' version '7.2.1' apply false
|
||
|
id 'com.android.library' version '7.2.1' apply false
|
||
|
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
|
||
|
}
|
||
|
|
||
|
task clean(type: Delete) {
|
||
|
delete rootProject.buildDir
|
||
|
}
|