OpenEUICC/build.gradle.kts
Peter Cai 4794df9d7b
All checks were successful
Build Debug APKs / build-debug (push) Successful in 4m9s
chore: Update SDK to 37 and AGP to 9.3.0
2026-08-03 17:54:09 -04:00

12 lines
578 B
Kotlin

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
// The following Android-related plugins are already depended upon by buildSrc, hence unnecessary.
// id("com.android.application") version "8.1.2" apply false
// id("com.android.library") version "8.1.2" apply false
//id("org.jetbrains.kotlin.android") version "2.4.10" apply false
//id("org.jetbrains.kotlin.multiplatform") version "2.4.10" apply false
}
tasks.register<Delete>("clean") {
delete = setOf(rootProject.layout.buildDirectory)
}