mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-25 06:11:04 +03:00
35 lines
740 B
Text
35 lines
740 B
Text
|
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)
|
||
|
|
||
|
// mpv-android
|
||
|
implementation(libs.aniyomi.mpv)
|
||
|
// FFmpeg-kit
|
||
|
implementation(libs.ffmpeg.kit)
|
||
|
}
|