
* Mangadex Spanish translations start * MangaDex Spanish translations: Settings done * MangaDex Spanish translation: Content, Format, Genre, Theme done * MangaDex Spanish translation: rest of setting done includes Tag Mode, Sort, hasAvailableChapters, unable to process chapter request, uploaded by $users, and no group * Android Studio: replace deprecated `capitalize` uses `replaceFirstChar` as a replacement (honestly suprising how Android Studio managed that refactor all by itself) * Add template to fill in Russian translations * Added MangaDex Russian Translation * Adding missing Spanish translation for Sort by Rating and also co-author credit for all the other Spanish translations as well Co-authored-by: kouyo <46226504+kouyo-quotient@users.noreply.github.com> * Add missing Russian translation for `intl.sortRating` Also, add co-author credit for all Russian translations Co-authored-by: Grannix1337 <115176186+Grannix1337@users.noreply.github.com> * increment MangaDex.extVersionCode Co-authored-by: kouyo <46226504+kouyo-quotient@users.noreply.github.com> Co-authored-by: Grannix1337 <115176186+Grannix1337@users.noreply.github.com> Co-authored-by: kouyo <46226504+kouyo-quotient@users.noreply.github.com> Co-authored-by: Grannix1337 <115176186+Grannix1337@users.noreply.github.com>
14 lines
293 B
Groovy
14 lines
293 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'MangaDex'
|
|
pkgNameSuffix = 'all.mangadex'
|
|
extClass = '.MangaDexFactory'
|
|
extVersionCode = 170
|
|
isNsfw = true
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|