Aperture: Convert gradle scripts to kotlin
https: //github.com/bernaferrari/GradleKotlinConverter
Change-Id: I049f5c7fb39ecb4b1b3a4d923dda90199f9620f8
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 0000000..d47f7ab
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,10 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+plugins {
+ id("com.android.application") version "7.2.2" apply false
+ id("com.android.library") version "7.2.2" apply false
+ id("org.jetbrains.kotlin.android") version "1.7.10" apply false
+}
+
+tasks.register<Delete>("clean").configure {
+ delete(rootProject.buildDir)
+}