E3FxGaming 98f0495b4d
MangaMutiny bugfix + link handler (#5623)
* 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.
2021-02-02 06:50:24 -05:00

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"