Fix gradle deprecations

This commit is contained in:
Niko Diamadis
2024-03-06 22:41:29 +01:00
parent 433f7ec341
commit 22feec66b0
5 changed files with 21 additions and 39 deletions

View File

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