mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 03:07:25 +01:00
30 lines
629 B
Plaintext
30 lines
629 B
Plaintext
|
plugins {
|
||
|
id("com.android.library")
|
||
|
kotlin("android")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "tachiyomi.source.local"
|
||
|
|
||
|
defaultConfig {
|
||
|
|
||
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
consumerProguardFiles("consumer-rules.pro")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
|
||
|
implementation(project(":source-api"))
|
||
|
implementation(project(":core"))
|
||
|
implementation(project(":core-metadata"))
|
||
|
|
||
|
// Move ChapterRecognition to separate module?
|
||
|
implementation(project(":domain"))
|
||
|
|
||
|
implementation(kotlinx.bundles.serialization)
|
||
|
|
||
|
implementation(libs.unifile)
|
||
|
implementation(libs.junrar)
|
||
|
}
|