From 8d46b4767fd2ce2dfd37bcfa47902af735d1ad0d Mon Sep 17 00:00:00 2001 From: Iamlooker Date: Sat, 9 Jul 2022 15:56:30 +0530 Subject: [PATCH] Convert build.gradle to kotlin dsl --- build.gradle | 9 --------- build.gradle.kts | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 build.gradle create mode 100644 build.gradle.kts diff --git a/build.gradle b/build.gradle deleted file mode 100644 index e27d22a1..00000000 --- a/build.gradle +++ /dev/null @@ -1,9 +0,0 @@ -plugins { - id 'com.android.application' version '7.2.1' apply false - id 'com.android.library' version '7.2.1' apply false - id 'org.jetbrains.kotlin.android' version '1.7.0' apply false -} - -task clean(type: Delete) { - delete rootProject.buildDir -} \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 00000000..7bf04228 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,9 @@ +plugins { + id("com.android.application") version "7.2.1" apply false + id("com.android.library") version "7.2.1" apply false + id("org.jetbrains.kotlin.android") version "1.7.0" apply false +} + +tasks.register("clean", Delete::class) { + delete(rootProject.buildDir) +} \ No newline at end of file