yubioath-flutter/android/build.gradle
2022-05-05 13:56:08 +02:00

45 lines
986 B
Groovy

buildscript {
ext.kotlin_version = '1.6.20'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
mavenLocal() // TODO: Remove this before release
}
project.ext {
minSdkVersion = 23
targetSdkVersion = 31
compileSdkVersion = 31
buildToolsVersion = "30.0.3"
yubiKitVersion = "2.1.0-SNAPSHOT"
junitVersion = "4.13.2"
mockitoVersion = "3.9.0"
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}