mirror of https://github.com/FongMi/TV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
821 B
39 lines
821 B
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
jcenter()
|
|
google()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
google()
|
|
flatDir {
|
|
dirs "$rootDir/app/libs", "$rootDir/quickjs/libs"
|
|
}
|
|
maven {
|
|
url "https://jitpack.io"
|
|
}
|
|
maven {
|
|
url "http://4thline.org/m2"
|
|
allowInsecureProtocol = true
|
|
}
|
|
}
|
|
}
|
|
include ':app'
|
|
include ':hook'
|
|
include ':tvbus'
|
|
include ':zlive'
|
|
include ':catvod'
|
|
include ':pyramid'
|
|
include ':quickjs'
|
|
include ':thunder'
|
|
include ':youtube'
|
|
include ':jianpian'
|
|
include ':forcetech'
|
|
include ':ijkplayer'
|
|
rootProject.name = "TV"
|
|
|