mirror of
https://github.com/tachiyomiorg/extensions.git
synced 2024-11-09 12:32:28 +01:00
23 lines
328 B
Plaintext
23 lines
328 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
compileSdk = AndroidConfig.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = AndroidConfig.minSdk
|
|
}
|
|
|
|
namespace = "eu.kanade.tachiyomi.lib.cryptoaes"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.kotlin.stdlib)
|
|
}
|