mirror of https://github.com/tuskyapp/Tusky.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
546 B
21 lines
546 B
plugins { |
|
alias(libs.plugins.android.application) 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(11) |
|
} |
|
} |
|
} |
|
|
|
tasks.register('clean') { |
|
delete rootProject.buildDir |
|
}
|
|
|