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