mirror of
https://github.com/gotify/android.git
synced 2026-07-01 02:04:34 +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") |