mirror of
https://github.com/gotify/android.git
synced 2026-06-07 22:47:29 +08:00
19 lines
414 B
Kotlin
19 lines
414 B
Kotlin
@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") |