mirror of
https://github.com/tuskyapp/Tusky
synced 2025-02-03 20:37:45 +01:00
17e99bbc2e
This reverts commit 649424730133188da585cd47063b00c4f01ff3e8. 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
|
|
}
|