Migrate build scripts to use version catalogs and kts

This commit is contained in:
Naveen 2023-08-14 17:30:18 +05:30
parent 496ff77532
commit 3e1675d579
No known key found for this signature in database
GPG key ID: 0E155DAD31671DA3
9 changed files with 200 additions and 113 deletions

13
build.gradle.kts Normal file
View file

@ -0,0 +1,13 @@
plugins {
alias(libs.plugins.android).apply(false)
alias(libs.plugins.kotlinAndroid).apply(false)
alias(libs.plugins.parcelize).apply(false)
alias(libs.plugins.kotlinSerialization).apply(false)
alias(libs.plugins.ksp).apply(false)
}
tasks.register<Delete>("clean") {
delete {
rootProject.buildDir
}
}