android-developer-roadmap/build.gradle

29 lines
782 B
Groovy
Raw Normal View History

2021-12-01 05:25:44 +03:00
buildscript {
ext {
2023-10-02 20:22:50 +03:00
compose_version = '1.5.2'
compose_compiler_version = '1.5.3'
compose_activity_version = '1.7.2'
landscapist_version = '2.2.10'
2022-10-07 04:09:48 +03:00
zoomable_version = '1.5.1'
2021-12-01 05:25:44 +03:00
}
}
plugins {
2023-10-02 20:22:50 +03:00
id 'com.android.application' version '8.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.9.10' apply false
id "com.diffplug.spotless" version "6.7.0" apply false
2021-12-01 05:25:44 +03:00
}
subprojects {
apply plugin: 'com.diffplug.spotless'
spotless {
kotlin {
target "**/*.kt"
ktlint("0.41.0").userData(['indent_size': '2', 'continuation_indent_size': '2'])
licenseHeaderFile "$rootDir/spotless.license.kt"
trimTrailingWhitespace()
endWithNewline()
}
}
}