mirror of
https://github.com/shadergz/cosmic-station.git
synced 2024-11-23 06:09:40 +00:00
12 lines
443 B
Plaintext
12 lines
443 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id("com.android.application") version "8.4.0" apply false
|
|
id("com.android.library") version "8.4.0" apply false
|
|
id("org.jetbrains.kotlin.android") version "1.8.20" apply false
|
|
id("com.google.dagger.hilt.android") version "2.44" apply false
|
|
}
|
|
|
|
tasks.register("clean") {
|
|
delete(rootProject.layout.buildDirectory)
|
|
}
|