mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 08:22:16 +03:00
29 lines
535 B
Groovy
29 lines
535 B
Groovy
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
project.ext {
|
|
minSdkVersion = 21
|
|
targetSdkVersion = 34
|
|
compileSdkVersion = 34
|
|
|
|
yubiKitVersion = "2.7.0"
|
|
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
|
|
}
|