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.
25 lines
569 B
25 lines
569 B
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
flatDir { dirs "$rootDir/app/libs" }
|
|
maven { url "https://jitpack.io" }
|
|
maven {
|
|
url "http://4thline.org/m2"
|
|
allowInsecureProtocol = true
|
|
}
|
|
}
|
|
}
|
|
include ':app'
|
|
include ':catvod'
|
|
include ':chaquo'
|
|
include ':quickjs'
|
|
rootProject.name = "TV"
|
|
|