mirror of
https://github.com/tuskyapp/Tusky
synced 2025-01-05 13:28:42 +01:00
17e99bbc2e
This reverts commit 6494247301
.
Seems like dagger/ksp is still a bit buggy, I'm getting one of these
errors every other build, so lets revert this for now.
https://github.com/google/dagger/issues/4181
https://github.com/google/ksp/issues/1196
23 lines
594 B
Groovy
23 lines
594 B
Groovy
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.google.ksp) apply false
|
|
alias(libs.plugins.kotlin.android) apply false
|
|
alias(libs.plugins.kotlin.kapt) apply false
|
|
alias(libs.plugins.kotlin.parcelize) apply false
|
|
alias(libs.plugins.ktlint) apply false
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: libs.plugins.ktlint.get().pluginId
|
|
|
|
plugins.withType(JavaBasePlugin).configureEach {
|
|
java {
|
|
toolchain.languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.register('clean') {
|
|
delete layout.buildDirectory
|
|
}
|