
(cherry picked from commit 6a558ad119ff35336c2141deefc5da4b49cf4553) # Conflicts: # app/build.gradle.kts # app/src/main/java/eu/kanade/tachiyomi/AppModule.kt # data/src/main/java/tachiyomi/data/manga/MangaMapper.kt # data/src/main/java/tachiyomi/data/manga/MangaRepositoryImpl.kt # data/src/main/sqldelight/tachiyomi/data/mangas.sq
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
id("com.android.library")
|
|
}
|
|
|
|
kotlin {
|
|
androidTarget()
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(project(":source-api"))
|
|
implementation(libs.unifile)
|
|
implementation(libs.junrar)
|
|
// SY -->
|
|
implementation(libs.zip4j)
|
|
// SY <--
|
|
}
|
|
}
|
|
val androidMain by getting {
|
|
dependencies {
|
|
implementation(project(":core"))
|
|
implementation(project(":core-metadata"))
|
|
|
|
// Move ChapterRecognition to separate module?
|
|
implementation(project(":domain"))
|
|
|
|
implementation(kotlinx.bundles.serialization)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.source.local"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
tasks {
|
|
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
|
|
)
|
|
}
|
|
}
|