
when a manga has a last chapter indicating its finished publishing, verify the chapter exists on mangadex and if then mark completed
21 lines
522 B
Groovy
21 lines
522 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
appName = 'Tachiyomi: MangaDex'
|
|
pkgNameSuffix = "all.mangadex"
|
|
extClass = '.MangadexFactory'
|
|
extVersionCode = 27
|
|
extVersionSuffix = 27
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
dependencies {
|
|
provided "com.google.code.gson:gson:2.8.0"
|
|
provided "com.github.salomonbrys.kotson:kotson:2.5.0"
|
|
provided project(':preference-stub')
|
|
provided "com.github.inorichi.injekt:injekt-core:65b0440"
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|