thumb-key/build.gradle

21 lines
678 B
Groovy
Raw Normal View History

2023-03-13 23:35:39 +03:00
// 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.5.1' apply false
id 'com.android.library' version '8.5.1' apply false
2024-05-22 20:38:20 +03:00
id 'org.jetbrains.kotlin.android' version '2.0.0' apply false
id 'org.jetbrains.kotlin.plugin.compose' version "2.0.0" apply false
id 'org.jmailen.kotlinter' version "4.4.0" apply false
id 'com.google.devtools.ksp' version "2.0.0-1.0.23" apply false
2023-03-13 23:35:39 +03:00
}
subprojects {
apply plugin: "org.jmailen.kotlinter" // Version should be inherited from parent
}