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