2021-12-30 11:39:28 +00:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|
2023-04-14 08:43:10 +00:00
|
|
|
|
|
|
|
// For "org.jlleitschuh.gradle:ktlint-gradle"
|
2023-02-07 15:09:28 +00:00
|
|
|
mavenCentral()
|
2021-12-30 11:39:28 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-29 12:14:04 +00:00
|
|
|
include ':app'
|
|
|
|
rootProject.name='Linphone'
|