2022-03-04 14:20:01 +03:00
|
|
|
buildscript {
|
2023-10-04 10:12:02 +03:00
|
|
|
ext.kotlin_version = '1.9.10'
|
2022-03-04 14:20:01 +03:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-10-04 10:12:02 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:8.1.2'
|
2022-03-04 14:20:01 +03:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2022-05-05 14:56:08 +03:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
2022-12-19 18:18:23 +03:00
|
|
|
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.6'
|
2022-03-04 14:20:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
project.ext {
|
2022-09-09 12:44:56 +03:00
|
|
|
minSdkVersion = 21
|
|
|
|
targetSdkVersion = 33
|
2023-10-04 10:12:02 +03:00
|
|
|
compileSdkVersion = 34
|
2022-03-04 14:20:01 +03:00
|
|
|
|
2023-09-28 09:52:02 +03:00
|
|
|
yubiKitVersion = "2.4.0-beta01"
|
2022-03-18 18:16:12 +03:00
|
|
|
junitVersion = "4.13.2"
|
2023-08-28 16:41:40 +03:00
|
|
|
mockitoVersion = "5.5.0"
|
2022-03-04 14:20:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.buildDir = '../build'
|
|
|
|
subprojects {
|
|
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
|
|
}
|
|
|
|
subprojects {
|
|
|
|
project.evaluationDependsOn(':app')
|
|
|
|
}
|
|
|
|
|
2023-05-22 11:49:07 +03:00
|
|
|
tasks.register("clean", Delete) {
|
2022-03-04 14:20:01 +03:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|