Files
lineageos_updater/build.gradle.kts
Michael W fbdb5570a5 Updater: Update gradle plugin to 8.7.3
Following AS recommendations

Change-Id: Ib3ad9be87b21e4b8a98ad3e07d3f0af2aa42cabe
2025-03-07 19:13:04 +00:00

11 lines
380 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.7.3" apply false
id("com.android.library") version "8.7.3" apply false
id("org.jetbrains.kotlin.android") version "1.7.10" apply false
}
tasks.register<Delete>("clean").configure {
delete(rootProject.buildDir)
}