mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-24 05:38:01 +03:00
3eb3f01646
Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
20 lines
413 B
Text
20 lines
413 B
Text
plugins {
|
|
id("mihon.library")
|
|
kotlin("android")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.core.metadata"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.sourceApi)
|
|
|
|
implementation(kotlinx.bundles.serialization)
|
|
}
|