
* switch to kotlinx * use baseurl in referer * remove default sort cause we don't use at this time update build.gradle * Use correct field when parsing manga pub status * Use current language if available in description map. * potentially fix md@host refresh issue * add default sort back since that's by number of follows * use work around for webview credit @Nar1n Co-authored-by: animusfracto <50589737+animusfracto@users.noreply.github.com> Co-authored-by: Alessandro Jean <alessandrojean@gmail.com>
19 lines
385 B
Groovy
19 lines
385 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'MangaDex'
|
|
pkgNameSuffix = 'all.mangadex'
|
|
extClass = '.MangaDexFactory'
|
|
extVersionCode = 118
|
|
libVersion = '1.2'
|
|
containsNsfw = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':lib-ratelimit')
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|