15 lines
387 B
Groovy
15 lines
387 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '8.5.1' apply false
|
|
id 'com.android.library' version '8.5.1' apply false
|
|
}
|
|
|
|
project.ext {
|
|
minSdkVersion = 21
|
|
targetSdkVersion = 34
|
|
javaVersion = JavaVersion.VERSION_11
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|