mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-16 23:12:12 +00:00
39 lines
No EOL
1.1 KiB
Text
39 lines
No EOL
1.1 KiB
Text
rootProject.name = "Nuvio"
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google {
|
|
mavenContent {
|
|
includeGroupAndSubgroups("androidx")
|
|
includeGroupAndSubgroups("com.android")
|
|
includeGroupAndSubgroups("com.google")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google {
|
|
mavenContent {
|
|
includeGroupAndSubgroups("androidx")
|
|
includeGroupAndSubgroups("com.android")
|
|
includeGroupAndSubgroups("com.google")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
include(":composeApp")
|
|
|
|
includeBuild("mediamp") {
|
|
dependencySubstitution {
|
|
substitute(module("org.openani.mediamp:mediamp-api")).using(project(":mediamp-api"))
|
|
substitute(module("org.openani.mediamp:mediamp-mpv")).using(project(":mediamp-mpv"))
|
|
substitute(module("org.openani.mediamp:mediamp-internal-utils")).using(project(":mediamp-internal-utils"))
|
|
}
|
|
} |