mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-15 11:20:32 +01:00
11 lines
357 B
Plaintext
11 lines
357 B
Plaintext
|
plugins {
|
||
|
alias(libs.plugins.android.application) apply false
|
||
|
alias(libs.plugins.kotlin.android) apply false
|
||
|
alias(libs.plugins.google.services) apply false
|
||
|
alias(libs.plugins.firebase.crashlytics) apply false
|
||
|
alias(libs.plugins.ksp) apply false
|
||
|
}
|
||
|
|
||
|
tasks.register("clean", Delete::class) {
|
||
|
delete(rootProject.layout.buildDirectory)
|
||
|
}
|