mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-24 21:58:34 +03:00
54ec5ac72c
Last Commit Merged: 5b2e937d5f
34 lines
740 B
Text
34 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)
|
|
}
|