Alessandro Jean 92d64e95a5
Use error message from MangaPlus API (#2400)
Use error message from MangaPlus API
2020-03-10 23:20:06 -04:00

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"