mirror of
https://github.com/oxyroid/M3UAndroid.git
synced 2025-08-06 14:59:48 +08:00
36 lines
821 B
Plaintext
36 lines
821 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
maven("https://androidx.dev/storage/compose-compiler/repository/")
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|
|
rootProject.name = "M3U"
|
|
include(":androidApp")
|
|
include(":core")
|
|
include(":data")
|
|
include(":ui")
|
|
include(
|
|
":features:main",
|
|
":features:setting",
|
|
":features:live",
|
|
":features:feed",
|
|
":features:favorite",
|
|
":features:console",
|
|
":features:crash",
|
|
":features:about"
|
|
)
|
|
include(":benchmark")
|
|
include(":lint")
|
|
include(":i18n")
|