GitPedia

Kotlin toolkit

A toolkit for ebooks, audiobooks and comics written in Kotlin

From readium·Updated June 21, 2026·View on GitHub·

[Readium Mobile](https://github.com/readium/mobile) is a toolkit for ebooks, audiobooks and comics written in Swift & Kotlin. The project is written primarily in Kotlin, distributed under the BSD 3-Clause "New" or "Revised" License license, first published in 2021. Key topics include: android, audiobook, audiobook-player, cbz, ebook-reader.

Latest release: 3.3.0
June 2, 2026View Changelog →

Readium Kotlin Toolkit

Readium Mobile is a toolkit for ebooks, audiobooks and comics written in Swift & Kotlin.

:point_up: Take a look at the guide to quickly get started. A Test App demonstrates how to integrate the Readium Kotlin toolkit in your own reading app.

:question: Find documentation and API reference at readium.org/kotlin-toolkit.

Features

✅ Implemented      🚧 Partially implemented      📆 Planned      👀 Want to do      ❓ Not planned

Formats

FormatStatus
EPUB 2
EPUB 3
Readium Web Publication🚧
PDF
Readium Audiobook
Zipped Audiobook
Standalone audio files (MP3, AAC, etc.)
Readium Divina🚧
CBZ (Comic Book ZIP)🚧
CBR (Comic Book RAR)
DAISY👀

Features

A number of features are implemented only for some publication formats.

FeatureEPUB (reflow)EPUB (FXL)PDF
Pagination
Scrolling👀
Right-to-left (RTL)
Search in textual content👀
Highlighting (Decoration API)👀
Text-to-speech (TTS)👀
Media overlays📆📆

OPDS Support

FeatureStatus
OPDS Catalog 1.2
OPDS Catalog 2.0
Authentication for OPDS📆
Readium LCP Automatic Key Retrieval📆

DRM Support

FeatureStatus
Readium LCP
Adobe ACS

User Guides

Guides are available to help you make the most of the toolkit.

Publication

DRM

Setting up the Readium Kotlin toolkit

Minimum Requirements

ReadiumAndroid min SDKAndroid compile SDKKotlin compiler (✻)Gradle (✻)
develop23362.3.209.1.0
3.2.023362.3.209.1.0
3.1.223362.1.218.14.1
3.1.021352.1.208.13
3.0.021341.9.248.6.0
2.3.021331.7.106.9.3

✻ Only required if you integrate Readium as a submodule instead of using Maven Central.

Dependencies

Readium modules are distributed with Maven Central. Make sure that you have the $readium_version property set in your root build.gradle, then add the Maven Central repository.

groovy
buildscript { ext.readium_version = '3.3.0' } allprojects { repositories { mavenCentral() } }

Then, add the dependencies to the Readium modules you need in your app's build.gradle.

groovy
dependencies { implementation "org.readium.kotlin-toolkit:readium-shared:$readium_version" implementation "org.readium.kotlin-toolkit:readium-streamer:$readium_version" implementation "org.readium.kotlin-toolkit:readium-navigator:$readium_version" implementation "org.readium.kotlin-toolkit:readium-opds:$readium_version" implementation "org.readium.kotlin-toolkit:readium-lcp:$readium_version" }

:warning: You must enable core library desugaring in your application module.

Using a local Git clone

You may prefer to use a local Git clone if you want to contribute to Readium, or if you are using your own fork.

First, add the repository as a Git submodule of your app repository, then checkout the desired branch or tag:

sh
git submodule add https://github.com/readium/kotlin-toolkit.git

Then, include the Readium build to your project's settings.gradle file. The Readium dependencies will automatically build against the local sources.

groovy
// Provide the path to the Git submodule. includeBuild 'kotlin-toolkit'

:warning: When importing Readium locally, you will need to use the same version of the Android Gradle Plugin in your project.

Building with Readium LCP

Using the toolkit with Readium LCP requires additional dependencies, including the binary liblcp provided by EDRLab. Contact EDRLab to request your private liblcp and the setup instructions.

Contributors

Showing top 12 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from readium/kotlin-toolkit via the GitHub API.Last fetched: 6/24/2026