mirror of
https://github.com/tachiyomiorg/extensions.git
synced 2024-11-09 20:42:29 +01:00
25 lines
385 B
Plaintext
25 lines
385 B
Plaintext
|
plugins {
|
||
|
id("com.android.library")
|
||
|
kotlin("android")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdk = AndroidConfig.compileSdk
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk = AndroidConfig.minSdk
|
||
|
}
|
||
|
|
||
|
namespace = "eu.kanade.tachiyomi.lib.dataimage"
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly(libs.kotlin.stdlib)
|
||
|
compileOnly(libs.okhttp)
|
||
|
compileOnly(libs.jsoup)
|
||
|
}
|