1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/Android-TV-jellyfin-androidtv

Клонировать/Скачать
settings.gradle.kts 718
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Niels van Velzen Отправлено 18.02.2020 12:00 021caf9
include(":app")
// Load properties from local.properties
val properties = java.util.Properties().apply {
val location = file("local.properties")
if (location.exists())
load(location.inputStream())
}
// Get value for dependency substitution
val enableDependencySubstitution = properties.getProperty("enable.dependency.substitution", "true").equals("true", true)
// Replace apiclient dependency with local version
val apiclientLocation = "../jellyfin-apiclient-java"
if (File(apiclientLocation).exists() && enableDependencySubstitution) {
includeBuild(apiclientLocation) {
dependencySubstitution {
substitute(module("com.github.jellyfin.jellyfin-apiclient-java:android")).with(project(":android"))
}
}
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/Android-TV-jellyfin-androidtv.git
git@api.gitlife.ru:oschina-mirror/Android-TV-jellyfin-androidtv.git
oschina-mirror
Android-TV-jellyfin-androidtv
Android-TV-jellyfin-androidtv
master