Kotlin SDK for Jellyfin, supporting Android and JVM targets
Go to file
2023-11-04 17:12:01 +01:00
.github/workflows Update github/codeql-action action to v2.22.5 2023-11-04 11:43:22 +01:00
buildSrc Move dependency repository definition to build.gradle.kts (#385) 2022-04-28 22:00:36 +02:00
docs Use code-group in getting-started and v1.4 migration pages 2022-12-16 22:58:13 +01:00
gradle Update dependency io.gitlab.arturbosch.detekt to v1.23.3 2023-11-04 11:30:45 +01:00
jellyfin-api Add ignorePathParameters to ApiClient.createUrl 2023-09-24 15:54:34 +02:00
jellyfin-api-ktor Various tweaks to extended SecureConnectionException exceptions 2023-09-02 14:31:27 +02:00
jellyfin-core Update generated sources 2023-09-02 15:03:47 +02:00
jellyfin-model Add builders for device profile and related models (#795) 2023-09-02 20:19:01 +02:00
openapi-generator Don't add @SerialName annotation to polymorphic discriminator property in ObjectModelBuilder 2023-06-27 20:17:59 +02:00
samples Update java-cli sample to use UserApiExtensionsKt 2023-01-16 11:47:00 +01:00
testutils Migrate unit tests to Kotest 2022-04-30 15:51:04 +02:00
.editorconfig Use Vitepress to build markdown documentation 2022-08-28 14:01:52 +02:00
.gitattributes Add .api files 2021-04-03 10:59:54 +02:00
.gitignore Add Vitepress cache to gitignore 2022-12-16 22:58:13 +01:00
.markdownlint.yaml Add markdown linting to CI 2022-09-06 23:06:15 +02:00
android-lint.xml Miscellaneous build script changes (#289) 2021-07-08 23:03:33 +02:00
build.gradle.kts Add Gradle download plugin to version catalog 2022-09-30 19:01:12 +02:00
CODEOWNERS Add CODEOWNERS file 2021-03-18 22:08:46 +01:00
detekt.yaml Disable wildcard imports (#344) 2021-12-23 13:41:22 +01:00
gradle.properties Migrate to new Kotlin Multiplatform source set layout 2022-12-28 20:11:44 +01:00
gradlew Update Gradle Wrapper from 7.5.1 to 7.6. 2022-12-16 22:37:50 +01:00
gradlew.bat Update Gradle Wrapper from 7.5.1 to 7.6. 2022-12-16 22:37:50 +01:00
LICENSE Update license to LGPL 3.0 2020-09-13 17:08:50 +02:00
openapi.json Update generated sources to 10.8.11 2023-09-24 09:22:32 +02:00
package-lock.json Update dependency vitepress to v1.0.0-rc.24 2023-11-04 11:36:40 +01:00
package.json Update dependency vitepress to v1.0.0-rc.24 2023-11-04 11:36:40 +01:00
README.md Fix all markdown linter issues 2022-09-06 23:06:15 +02:00
renovate.json Enable Renovate dependency dashboard 2023-11-04 17:12:01 +01:00
settings.gradle.kts Split KtorClient to separate module 2023-05-09 13:04:02 +02:00

Jellyfin Kotlin SDK

Part of the Jellyfin Project


Logo Banner

LGPL 3.0 license Current Release Maven Central Release
Donate Chat on Matrix Join our Subreddit Release RSS Feed Master Commits RSS Feed


The Kotlin SDK for Jellyfin implements the Jellyfin API to easily access servers. It is currently available for the JVM and Android. Developer documentation is available at kotlin-sdk.jellyfin.org.

Contributing

We welcome contributions to the SDK. Open an issue or ask in our official chats if you plan to make bigger changes.

To validate binary compatibility we use the Binary compatibility validator tool from the Kotlin team. When creating pull requests the api files need to be updated. Use the apiDump Gradle task to generate the api files. Add the changes from this command to a separate commit to make the review process easier.

Testing

The SDK includes two example projects, the kotlin-cli and java-cli, to test various larger functions like server discovery. Besides that we use unit tests to test smaller components, these can be executed with the allTests Gradle task. We recommend adding new tests for changes to the code.

Testing in app

It is also possible to test a new version of the SDK in your own app. Use the publishToMavenLocal Gradle task to publish the SDK to your local system, afterwards you can add mavenLocal() as repository and use the latest-SNAPSHOT version for the SDK. This process is simplified in our official apps by adding an option to the gradle.properties file.