mirror of
https://github.com/jellyfin/jellyfin-androidtv.git
synced 2024-11-23 05:49:50 +00:00
b2939bfe38
* Split media3-session to own Gradle module * Rename playback.exoplayer to playback.media3-exoplayer * Use submodule for media3
50 lines
1.0 KiB
Plaintext
50 lines
1.0 KiB
Plaintext
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
rootProject.name = "jellyfin-androidtv"
|
|
|
|
// Application
|
|
include(":app")
|
|
|
|
// Modules
|
|
include(":playback:core")
|
|
include(":playback:jellyfin")
|
|
include(":playback:media3:exoplayer")
|
|
include(":playback:media3:session")
|
|
include(":preference")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
|
|
// Jellyfin SDK
|
|
mavenLocal {
|
|
content {
|
|
includeVersionByRegex("org.jellyfin.sdk", ".*", "latest-SNAPSHOT")
|
|
}
|
|
}
|
|
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") {
|
|
content {
|
|
includeVersionByRegex("org.jellyfin.sdk", ".*", "master-SNAPSHOT")
|
|
includeVersionByRegex("org.jellyfin.sdk", ".*", "openapi-unstable-SNAPSHOT")
|
|
}
|
|
}
|
|
|
|
// Jellyfin apiclient
|
|
maven("https://jitpack.io") {
|
|
content {
|
|
// Only allow legacy apiclient
|
|
includeVersionByRegex("com.github.jellyfin.jellyfin-sdk-kotlin", ".*", "v0.7.10")
|
|
}
|
|
}
|
|
}
|
|
}
|