mirror of
https://github.com/jellyfin/jellyfin-android.git
synced 2026-09-03 05:10:27 +03:00
13 lines
309 B
Kotlin
13 lines
309 B
Kotlin
include(":app", ":webapp")
|
|
|
|
rootProject.name = "Jellyfin"
|
|
|
|
pluginManagement {
|
|
val kotlinVersion: String by settings
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.namespace?.startsWith("org.jetbrains.kotlin") == true)
|
|
useVersion(kotlinVersion)
|
|
}
|
|
}
|
|
} |