mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 03:18:06 +00:00
33 lines
850 B
Groovy
33 lines
850 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://www.jitpack.io" } // for com.github.chrisbanes:PhotoView
|
|
|
|
maven {
|
|
name "local linphone-sdk maven repository"
|
|
url file(LinphoneSdkBuildDir + '/maven_repository/')
|
|
content {
|
|
includeGroup "org.linphone"
|
|
}
|
|
}
|
|
|
|
maven {
|
|
name "linphone.org maven repository"
|
|
url "https://linphone.org/maven_repository"
|
|
content {
|
|
includeGroup "org.linphone"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rootProject.name = "Linphone"
|
|
include ':app'
|