thumb-key/build.gradle
Dessalines c7346133e4
Add debug mode. (#294)
* Add debug mode.

* Triggering a build.
2023-06-18 09:45:13 -04:00

24 lines
670 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.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
id 'org.jmailen.kotlinter' version "3.15.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
}
task clean(type: Delete) {
delete rootProject.buildDir
}