mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-06 06:35:07 +01:00
21 lines
423 B
Plaintext
21 lines
423 B
Plaintext
|
plugins {
|
||
|
id("com.android.library")
|
||
|
kotlin("android")
|
||
|
kotlin("plugin.serialization")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "tachiyomi.core.metadata"
|
||
|
|
||
|
defaultConfig {
|
||
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
consumerProguardFiles("consumer-rules.pro")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":source-api"))
|
||
|
|
||
|
implementation(kotlinx.bundles.serialization)
|
||
|
}
|