android_packages_apps_Updater/build.gradle.kts
Sebastiano Barezzi 755560bbcd Updater: Redo project structure
* Let's be more Android Studio friendly
* While at it match AOSP deps with Gradle ones and update them

Change-Id: Ib8829e3d954ce43fbf19280d1db2bc43c6fc89e0
2023-07-08 15:22:49 -04: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 "7.4.1" apply false
id("com.android.library") version "7.4.1" apply false
id("org.jetbrains.kotlin.android") version "1.7.10" apply false
}
tasks.register<Delete>("clean").configure {
delete(rootProject.buildDir)
}