mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-09 03:18:39 +01:00
12 lines
370 B
Plaintext
12 lines
370 B
Plaintext
plugins {
|
|
//trick: for the same plugin versions in all sub-modules
|
|
alias(libs.plugins.android.application).apply(false)
|
|
alias(libs.plugins.android.library).apply(false)
|
|
alias(libs.plugins.kotlin.android).apply(false)
|
|
alias(libs.plugins.kotlin.multiplatform).apply(false)
|
|
}
|
|
|
|
tasks.register("clean", Delete::class) {
|
|
delete(rootProject.buildDir)
|
|
}
|