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