2021-07-02 11:39:33 +02:00
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
2020-09-12 12:46:44 +02:00
|
|
|
|
2022-12-28 19:23:41 +01:00
|
|
|
rootProject.name = "jellyfin-androidtv"
|
|
|
|
|
2021-07-02 11:39:33 +02:00
|
|
|
// Application
|
2020-02-09 20:38:55 +01:00
|
|
|
include(":app")
|
2021-08-08 17:28:56 +02:00
|
|
|
|
|
|
|
// Modules
|
2022-08-31 21:47:15 +02:00
|
|
|
include(":playback:core")
|
|
|
|
include(":playback:jellyfin")
|
2024-07-22 07:52:31 +02:00
|
|
|
include(":playback:media3:exoplayer")
|
|
|
|
include(":playback:media3:session")
|
2022-04-12 13:28:04 +02:00
|
|
|
include(":preference")
|
2021-12-19 14:44:28 +01:00
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|