Files
jellyfin-androidtv/settings.gradle
Andreas Ackermann 0d820ebb2c Replace string usages for BaseItemDto.Type with the EBaseItemType
Also fixing dependency substitution now that we use explicit versions
2019-12-23 11:55:09 -05:00

11 lines
312 B
Groovy

include ':app'
def apiclientLocation = '../jellyfin-apiclient-java'
if (new File(apiclientLocation).exists()) {
includeBuild(apiclientLocation) {
dependencySubstitution {
substitute module('com.github.jellyfin.jellyfin-apiclient-java:library') with project(':library')
}
}
}