mirror of
https://github.com/dessalines/thumb-key.git
synced 2024-12-11 15:56:28 +03:00
559cc150a3
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
20 lines
690 B
Plaintext
20 lines
690 B
Plaintext
// 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.7.3" apply false
|
|
id("com.android.library") version "8.7.3" apply false
|
|
id("org.jetbrains.kotlin.android") version "2.0.21" apply false
|
|
id("org.jetbrains.kotlin.plugin.compose") version "2.0.21" apply false
|
|
id("org.jmailen.kotlinter") version "4.5.0" apply false
|
|
id("com.google.devtools.ksp") version "2.0.21-1.0.28" apply false
|
|
}
|
|
|
|
subprojects {
|
|
apply(plugin = "org.jmailen.kotlinter") // Version should be inherited from parent
|
|
} |