mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-22 01:51:47 +00:00
Is the third time the charm? f-droid does not allow libraries pulled from non-listed maven repositories, thus the build fails in f-droid: https://gitlab.com/fdroid/fdroiddata/-/jobs/3654530159#L236 > Found unknown maven repo 'https://invent.kde.org/api/v4/projects/72/packages/maven' at settings.gradle This MR changes to use [jitpack](https://jitpack.io/#org.kde.invent.sredman/android-smsmms/kdeconnect-1-21-0), which is an allowed repository.
24 lines
507 B
Groovy
24 lines
507 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
/* Needed for org.apache.sshd debugging
|
|
maven {
|
|
url "https://jitpack.io"
|
|
}
|
|
*/
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
url = "https://jitpack.io"
|
|
}
|
|
}
|
|
}
|
|
rootProject.name = "kdeconnect-android"
|