Convert build.gradle to kotlin dsl

This commit is contained in:
Iamlooker 2022-07-09 15:56:30 +05:30
parent effcaf9ed7
commit 8d46b4767f
No known key found for this signature in database
GPG Key ID: 16F53B972BAECA48
2 changed files with 9 additions and 9 deletions

View File

@ -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
}

9
build.gradle.kts Normal file
View File

@ -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)
}