
* Mitigation about IP Ban by bunch of request on latest on manatoki. RateLimit, And make default to not make bunch of request. Split ManaToki into separate file as it became bigger. * More rate limit NewToki and ManaToki Shares IP bans. Also when refresh the batch of mangas, It could be banned too. So rate limit on ChapterList and MangaDetail request too. (And apply both of them) * Fix lint about `java.util` and some format
17 lines
329 B
Groovy
17 lines
329 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
extName = 'NewToki / ManaToki'
|
|
pkgNameSuffix = 'ko.newtoki'
|
|
extClass = '.NewTokiFactory'
|
|
extVersionCode = 19
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':lib-ratelimit')
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|