thumb-key/build.gradle
2023-05-05 10:25:16 -04:00

27 lines
750 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
}
plugins {
id 'com.android.application' version '8.2.0-alpha02' apply false
id 'com.android.library' version '8.2.0-alpha02' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'org.jmailen.kotlinter' version "3.13.0" apply false
id 'com.google.devtools.ksp' version "1.8.21-1.0.11" apply false
}
subprojects {
apply plugin: "org.jmailen.kotlinter" // Version should be inherited from parent
kotlinter {
disabledRules = ["no-wildcard-imports"]
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}