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

16
settings.gradle.kts Normal file
View file

@ -0,0 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
include(":app")