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.
15 lines
394 B
15 lines
394 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 |
|
} |
|
|
|
tasks.register('clean') { |
|
delete rootProject.buildDir |
|
}
|
|
|