mirror of
https://github.com/FossifyOrg/Calendar.git
synced 2025-12-23 15:48:47 -05:00
13 lines
278 B
Kotlin
13 lines
278 B
Kotlin
plugins {
|
|
alias(libs.plugins.android).apply(false)
|
|
alias(libs.plugins.kotlinAndroid).apply(false)
|
|
alias(libs.plugins.ksp).apply(false)
|
|
alias(libs.plugins.detekt).apply(false)
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete {
|
|
rootProject.buildDir
|
|
}
|
|
}
|