
* Fixing artist NullPointer exception * Added https://mangamutiny.org/title/* link handler Can now open manga from the mangamutiny.org website (when accessed with a web browser) in the Tachiyomi app. Borrowed the method from the Mangadex extension and adapted it to fit the Manga Mutiny extension. * Removed logging + changed comment * Adding containsNsfw = true Most manga offered are sfw, but a couple of manga cross the "not appropriate" line here and there.
14 lines
284 B
Groovy
14 lines
284 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
extName = 'Manga Mutiny'
|
|
pkgNameSuffix = "en.mangamutiny"
|
|
extClass = '.MangaMutiny'
|
|
extVersionCode = 4
|
|
libVersion = '1.2'
|
|
containsNsfw = true
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|