mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-24 21:58:34 +03:00
8f45a8e122
* Refactor archive support with libarchive * Revert string resource changs * Only mark archive formats as supported Comic book archives should not be compressed. * Fixup * Remove epub from archive format list * Move to mihon package * Format * Cleanup Co-authored-by: FooIbar <118464521+FooIbar@users.noreply.github.com>
53 lines
1.2 KiB
Text
53 lines
1.2 KiB
Text
plugins {
|
|
id("mihon.library")
|
|
kotlin("multiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
androidTarget()
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(projects.sourceApi)
|
|
api(projects.i18n)
|
|
|
|
implementation(libs.unifile)
|
|
}
|
|
}
|
|
val androidMain by getting {
|
|
dependencies {
|
|
implementation(projects.core.common)
|
|
implementation(projects.coreMetadata)
|
|
|
|
// Move ChapterRecognition to separate module?
|
|
implementation(projects.domain)
|
|
|
|
implementation(kotlinx.bundles.serialization)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.source.local"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
|
|
dependencies {
|
|
// FFmpeg-kit
|
|
implementation(libs.ffmpeg.kit)
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
compilerOptions.freeCompilerArgs.addAll(
|
|
listOf(
|
|
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
|
|
),
|
|
)
|
|
}
|
|
}
|