19 lines
414 B
Plaintext
19 lines
414 B
Plaintext
@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") |