mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-06 03:35:08 +01:00
1abf01c4a0
Use KMP in source modules Use KMP in source-api Expect LocalSource
38 lines
934 B
Plaintext
38 lines
934 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
id("com.android.library")
|
|
}
|
|
|
|
kotlin {
|
|
android()
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(project(":source-api"))
|
|
implementation(libs.unifile)
|
|
implementation(libs.junrar)
|
|
}
|
|
}
|
|
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")
|
|
}
|
|
}
|