
(cherry picked from commit 1b4d9fc4e94eaa9d2575ffcf04811f8a23915b44) # Conflicts: # app/src/main/java/eu/kanade/tachiyomi/ui/more/AboutController.kt
34 lines
932 B
Plaintext
34 lines
932 B
Plaintext
buildscript {
|
|
dependencies {
|
|
classpath(libs.android.shortcut.gradle)
|
|
classpath(libs.google.services.gradle)
|
|
classpath(libs.aboutLibraries.gradle)
|
|
classpath(kotlinx.serialization.gradle)
|
|
classpath("com.squareup.sqldelight:gradle-plugin:1.5.3")
|
|
classpath(sylibs.firebase.crashlytics.gradle)
|
|
}
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
subprojects {
|
|
apply<org.jmailen.gradle.kotlinter.KotlinterPlugin>()
|
|
|
|
kotlinter {
|
|
experimentalRules = true
|
|
|
|
// Doesn't play well with Android Studio
|
|
disabledRules = arrayOf("experimental:argument-list-wrapping", "experimental:comment-wrapping")
|
|
}
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|