mirror of
https://github.com/oxyroid/M3UAndroid.git
synced 2025-08-06 14:59:48 +08:00
40 lines
915 B
Plaintext
40 lines
915 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
maven("https://plugins.gradle.org/m2/")
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
maven("https://plugins.gradle.org/m2/")
|
|
}
|
|
}
|
|
rootProject.name = "M3U"
|
|
include(":app:smartphone", ":app:tv", ":app:extension")
|
|
include(":core", ":core:foundation")
|
|
include(":data")
|
|
include(":data:codec", ":data:codec:lite", ":data:codec:rich")
|
|
include(
|
|
":business:foryou",
|
|
":business:favorite",
|
|
":business:setting",
|
|
":business:playlist",
|
|
":business:playlist-configuration",
|
|
":business:channel"
|
|
)
|
|
include(":baselineprofile:smartphone", ":baselineprofile:tv")
|
|
include(":i18n")
|
|
include(
|
|
":lint:annotation",
|
|
":lint:processor"
|
|
)
|
|
include(
|
|
":extension:api",
|
|
":extension:runtime"
|
|
)
|