mirror of
https://codeberg.org/pstorch/F-Droid_Build_Status.git
synced 2025-10-05 23:52:42 +02:00
24 lines
438 B
Plaintext
24 lines
438 B
Plaintext
pluginManagement {
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
setUrl("https://jitpack.io")
|
|
}
|
|
}
|
|
}
|
|
|
|
include(":app")
|
|
rootProject.name = "F-Droid Build Status" |