Files
jellyfin-androidtv/settings.gradle.kts
Niels van Velzen 9ad1ff0cde Update build files
2022-12-29 09:55:34 +01:00

50 lines
1020 B
Kotlin

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "jellyfin-androidtv"
// Application
include(":app")
// Modules
include(":playback:core")
include(":playback:exoplayer")
include(":playback:jellyfin")
include(":playback:ui")
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")
}
}
}
}