thumb-key/build.gradle
Dessalines 9b72c99210
Still working on upgrading deps. (#785)
* Still working on upgrading deps.

* Upgrading deps.
2024-03-02 10:31:36 -05:00

24 lines
676 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.3.0' apply false
id 'com.android.library' version '8.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.22' apply false
id 'org.jmailen.kotlinter' version "4.2.0" apply false
id 'com.google.devtools.ksp' version "1.9.22-1.0.17" apply false
}
subprojects {
apply plugin: "org.jmailen.kotlinter" // Version should be inherited from parent
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}