1 Star 0 Fork 1

Android-TV/jellyfin-androidtv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
settings.gradle.kts 718 Bytes
一键复制 编辑 原始数据 按行查看 历史
Niels van Velzen 提交于 2020-02-18 17:00 +08:00 . Remove dependency on apiclient library
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"))
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Android
1
https://gitee.com/Android-TV/jellyfin-androidtv.git
git@gitee.com:Android-TV/jellyfin-androidtv.git
Android-TV
jellyfin-androidtv
jellyfin-androidtv
master

搜索帮助