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