Convert build.gradle to kotlin dsl
This commit is contained in:
parent
effcaf9ed7
commit
8d46b4767f
@ -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
9
build.gradle.kts
Normal 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)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user