
* fix: Fix chapter list & prevent future trolling * refactor: Minor refactoration for fun * chore: Bump version * fix: Prevent NPE in manga details Didn't happen to me in my tests, but better be safe than sorry. Thumbnails aren't really worth a (rare but possible?) NPE anyway * fix: Add rate limit to prevent HTTP 429
13 lines
248 B
Groovy
13 lines
248 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
extName = 'MangaInUa'
|
|
pkgNameSuffix = 'uk.mangainua'
|
|
extClass = '.Mangainua'
|
|
extVersionCode = 6
|
|
isNsfw = true
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|