19 lines
343 B
Plaintext
19 lines
343 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
compileSdk = AndroidConfig.compileSdk
|
|
namespace = "eu.kanade.tachiyomi.lib.mixdropextractor"
|
|
|
|
defaultConfig {
|
|
minSdk = AndroidConfig.minSdk
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.bundles.common)
|
|
implementation(project(":lib-unpacker"))
|
|
}
|