Tachiyomi-based extensions library used in Mihon.
Add jitpack.io repository to your root build.gradle.kts file:
dependencyResolutionManagement {
repositories {
maven(url = "https://www.jitpack.io")
}
}Then add the dependency:
dependencies {
compileOnly("com.github.mihonapp:tachiyomix:1.6")
}Note
compileOnly is used because tachiyomix provides stub interfaces only. The actual implementations are included in the host app.
Host apps using tachiyomix must include the following dependencies (or newer versions) to ensure compatibility with version 1.6:
| Dependency | Artifact(s) | Version |
|---|---|---|
| Kotlin | org.jetbrains.kotlin:kotlin-stdlib |
2.3.0 |
| kotlinx.coroutines | org.jetbrains.kotlinx:kotlinx-coroutines-core |
1.10.2 |
| kotlinx.serialization | org.jetbrains.kotlinx:kotlinx-serialization-json org.jetbrains.kotlinx:kotlinx-serialization-json-okio org.jetbrains.kotlinx:kotlinx-serialization-protobuf |
1.11.0 |
| OkHttp | com.squareup.okhttp3:okhttp com.squareup.okhttp3:okhttp-brotli com.squareup.okhttp3:okhttp-zstd |
5.3.0 |
| jsoup | org.jsoup:jsoup |
1.22.2 |
| Injekt | com.github.mihonapp:injekt |
1.0.0 |
TachiyomiX is distributed under the Apache License 2.0.