22 lines
438 B
Plaintext
22 lines
438 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
id("kotlinx-serialization")
|
|
}
|
|
|
|
android {
|
|
compileSdk = AndroidConfig.compileSdk
|
|
namespace = "eu.kanade.tachiyomi.lib.chillxextractor"
|
|
|
|
defaultConfig {
|
|
minSdk = AndroidConfig.minSdk
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.bundles.common)
|
|
implementation(project(":lib-cryptoaes"))
|
|
implementation(project(":lib-playlist-utils"))
|
|
}
|
|
// BUMPS: 0
|