mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions.git
synced 2025-12-10 10:52:03 +01:00
19 lines
419 B
Groovy
19 lines
419 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
appName = 'Tachiyomi: xkcd'
|
|
pkgNameSuffix = 'en.xkcd'
|
|
extClass = '.Xkcd'
|
|
extVersionCode = 4
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(':duktape-stub')
|
|
compileOnly 'com.google.code.gson:gson:2.8.2'
|
|
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|