2022-03-04 09:58:31 -05:00
|
|
|
buildscript {
|
|
|
|
dependencies {
|
|
|
|
classpath(libs.android.shortcut.gradle)
|
|
|
|
classpath(libs.google.services.gradle)
|
|
|
|
classpath(libs.aboutlibraries.gradle)
|
|
|
|
classpath(kotlinx.serialization.gradle)
|
|
|
|
}
|
2020-01-28 22:48:02 -05:00
|
|
|
}
|
2015-09-24 11:27:43 -04:00
|
|
|
|
2022-03-04 09:58:31 -05:00
|
|
|
plugins {
|
|
|
|
alias(androidx.plugins.application) apply false
|
|
|
|
alias(androidx.plugins.library) apply false
|
|
|
|
alias(kotlinx.plugins.android) apply false
|
|
|
|
alias(libs.plugins.kotlinter)
|
|
|
|
alias(libs.plugins.versionsx)
|
2020-04-25 14:30:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
2022-03-04 09:58:31 -05:00
|
|
|
apply<org.jmailen.gradle.kotlinter.KotlinterPlugin>()
|
2020-04-25 14:30:14 -04:00
|
|
|
|
2020-09-13 18:48:20 -04:00
|
|
|
kotlinter {
|
|
|
|
experimentalRules = true
|
2021-04-11 18:16:15 -04:00
|
|
|
|
|
|
|
// Doesn't play well with Android Studio
|
|
|
|
disabledRules = arrayOf("experimental:argument-list-wrapping")
|
2020-04-25 14:30:14 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-04 09:58:31 -05:00
|
|
|
tasks.register<Delete>("clean") {
|
2020-01-28 22:48:02 -05:00
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|