yubioath-flutter/android/build.gradle

29 lines
535 B
Groovy
Raw Permalink Normal View History

2022-03-04 14:20:01 +03:00
allprojects {
repositories {
google()
mavenCentral()
}
project.ext {
2022-09-09 12:44:56 +03:00
minSdkVersion = 21
2023-10-31 16:42:30 +03:00
targetSdkVersion = 34
2023-10-04 10:12:02 +03:00
compileSdkVersion = 34
2022-03-04 14:20:01 +03:00
yubiKitVersion = "2.7.0"
2022-03-18 18:16:12 +03:00
junitVersion = "4.13.2"
2024-09-09 15:47:14 +03:00
mockitoVersion = "5.13.0"
2022-03-04 14:20:01 +03:00
}
}
rootProject.buildDir = '../build'
2022-03-04 14:20:01 +03:00
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
2022-03-04 14:20:01 +03:00
}
subprojects {
project.evaluationDependsOn(':app')
}
2023-05-22 11:49:07 +03:00
tasks.register("clean", Delete) {
delete rootProject.buildDir
2022-03-04 14:20:01 +03:00
}