mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-06 04:35:09 +01:00
d29b7c4e57
Should be better at incremental builds. To format, run `./gradlew ktlintFormat`.
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)
|
|
}
|