2022-03-04 14:20:01 +03:00
|
|
|
buildscript {
|
2023-02-08 19:56:48 +03:00
|
|
|
ext.kotlin_version = '1.8.0'
|
2022-03-04 14:20:01 +03:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-02-08 19:44:14 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:7.4.1'
|
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
|
|
|
|
compileSdkVersion = 33
|
2023-01-24 11:14:13 +03:00
|
|
|
buildToolsVersion = "33.0.3"
|
2022-03-04 14:20:01 +03:00
|
|
|
|
2023-01-18 11:04:02 +03:00
|
|
|
yubiKitVersion = "2.2.0"
|
2022-03-18 18:16:12 +03:00
|
|
|
junitVersion = "4.13.2"
|
2023-02-08 19:44:14 +03:00
|
|
|
mockitoVersion = "5.1.1"
|
2022-03-04 14:20:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.buildDir = '../build'
|
|
|
|
subprojects {
|
|
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
|
|
}
|
|
|
|
subprojects {
|
|
|
|
project.evaluationDependsOn(':app')
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|