stevenyomi 75605af7a9
MangaReader.to: refactor, fixes and improvements (#13300)
* MangaReader.to: refactor, fixes and improvements

* rewrite image descrambling interceptor

* add changelog

* use contains to check dupe number instead of endsWith

* memoize calculation result instead of using lookup table

* make SeedRandom private

* add some line breaks to better align diffs

* fix media type

* use the same buffer to reduce memory allocations

* Review changes and inline stuff

* get rid of the hassle of calculating piece count
2022-09-01 17:15:21 -03:00

14 lines
305 B
Groovy

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlinx-serialization'
ext {
extName = 'MangaReader.to'
pkgNameSuffix = 'all.mangareaderto'
extClass = '.MangaReaderFactory'
extVersionCode = 3
isNsfw = true
}
apply from: "$rootDir/common.gradle"