build.gradle.kts 558 B

123456789101112
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. plugins {
  3. // The following Android-related plugins are already depended upon by buildSrc, hence unnecessary.
  4. // id("com.android.application") version "8.1.2" apply false
  5. // id("com.android.library") version "8.1.2" apply false
  6. id("org.jetbrains.kotlin.android") version "1.9.20" apply false
  7. id("org.jetbrains.kotlin.multiplatform") version "1.9.20" apply false
  8. }
  9. tasks.create<Delete>("clean") {
  10. delete = setOf(rootProject.buildDir)
  11. }