mirror of
https://github.com/breezy-weather/breezy-weather.git
synced 2025-10-18 23:43:40 +00:00
22 lines
674 B
Kotlin
22 lines
674 B
Kotlin
buildscript {
|
|
dependencies {
|
|
classpath(libs.aboutLibraries.gradle)
|
|
classpath(libs.dagger.hilt.gradle)
|
|
classpath(libs.sqldelight.gradle)
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
alias(libs.plugins.kotlinKsp) apply false
|
|
alias(libs.plugins.kotlinSerialization) apply false
|
|
alias(libs.plugins.aboutLibraries) apply false
|
|
alias(libs.plugins.sqldelight) apply false
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(rootProject.layout.buildDirectory)
|
|
delete("app/src/main/res/values-in/")
|
|
delete("app/src/main/res/values-iw/")
|
|
delete("app/src/main/res/xml/locales_config.xml")
|
|
// delete("app/src/main/res/raw/ne_50m_admin_0_countries.json")
|
|
}
|