20 lines
512 B
Groovy
20 lines
512 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
appName = 'Tachiyomi: MANGA Plus by SHUEISHA'
|
|
pkgNameSuffix = 'all.mangaplus'
|
|
extClass = '.MangaPlusFactory'
|
|
extVersionCode = 4
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.14.0'
|
|
compileOnly 'com.google.code.gson:gson:2.8.2'
|
|
compileOnly project(':duktape-stub')
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|