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.
 
 
 
 
 
FONGMITV/settings.gradle

40 lines
879 B

pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
jcenter()
google()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
jcenter()
google()
flatDir {
dirs "$rootDir/quickjs/libs"
}
maven {
url 'https://jitpack.io'
}
maven {
url 'http://4thline.org/m2'
allowInsecureProtocol = true
}
}
}
include ':app'
include ':hook'
include ':tvbus'
include ':catvod'
include ':danmaku'
include ':pyramid'
include ':quickjs'
include ':thunder'
include ':jianpian'
include ':forcetech'
include ':ijkplayer'
rootProject.name = "TV"
gradle.ext.androidxMediaModulePrefix = 'media-'
apply from: file("/media/core_settings.gradle")