yubioath-flutter/android/build.gradle
2024-07-04 13:51:24 +02:00

30 lines
565 B
Groovy

allprojects {
repositories {
google()
mavenCentral()
mavenLocal()
}
project.ext {
minSdkVersion = 21
targetSdkVersion = 34
compileSdkVersion = 34
yubiKitVersion = "2.6.1-SNAPSHOT"
junitVersion = "4.13.2"
mockitoVersion = "5.12.0"
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}