
* Added originalLanguage filters * add content preference in chapter list * Remove zero width space * change default originLanguagepref to false * made originLang work in browse too * actually fixed nsfw chapter list maybe * added new MangaDex icons * filter all chapters with external links * change browse sort to followCount * add origin language filtering to browse and properly set default filter values * add all contentRating queries to the actual chapterlist request no matter what
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 = 131
|
|
libVersion = '1.2'
|
|
containsNsfw = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':lib-ratelimit')
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|