mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-04-19 19:14:51 +00:00
30 lines
673 B
Groovy
30 lines
673 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
includeBuild('dep/polycentricandroid') {
|
|
dependencySubstitution {
|
|
substitute module('com.polycentric.core:app') using project(':app')
|
|
}
|
|
}
|
|
|
|
includeBuild('dep/futopay/android') {
|
|
dependencySubstitution {
|
|
substitute module('com.futo.futopay:app') using project(':app')
|
|
}
|
|
}
|
|
|
|
rootProject.name = "FutoVideo"
|
|
include ':app'
|