build: rewrite build.gradle files to Kotlin DSL

This commit is contained in:
Niko Diamadis
2024-11-24 21:02:38 -05:00
parent b4474a2785
commit 00c3729458
6 changed files with 164 additions and 154 deletions

19
settings.gradle.kts Normal file
View File

@@ -0,0 +1,19 @@
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
gradlePluginPortal()
google()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io/") }
}
}
rootProject.name = "Gotify Android"
include(":app")
include(":client")