
* 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
14 lines
305 B
Groovy
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"
|