build: rewrite build.gradle files to Kotlin DSL
This commit is contained in:
19
settings.gradle.kts
Normal file
19
settings.gradle.kts
Normal 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")
|
||||
Reference in New Issue
Block a user