
* fix an edge case on chapter name cleaner maybe closes https://github.com/tachiyomiorg/tachiyomi-extensions/issues/18407 * forgot about alt titles * update javadoc to match the function usage
18 lines
352 B
Groovy
18 lines
352 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'MangaDex'
|
|
pkgNameSuffix = 'all.mangadex'
|
|
extClass = '.MangaDexFactory'
|
|
extVersionCode = 189
|
|
isNsfw = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":lib-i18n"))
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|