diff --git a/src/all/eromanhwa/build.gradle b/src/all/eromanhwa/build.gradle new file mode 100644 index 000000000..6afcd64b9 --- /dev/null +++ b/src/all/eromanhwa/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Eromanhwa' + extClass = '.Eromanhwa' + themePkg = 'madara' + baseUrl = 'https://eromanhwa.org' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/all/eromanhwa/res/mipmap-hdpi/ic_launcher.png b/src/all/eromanhwa/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..1f0bbe69f Binary files /dev/null and b/src/all/eromanhwa/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/all/eromanhwa/res/mipmap-mdpi/ic_launcher.png b/src/all/eromanhwa/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..149664b36 Binary files /dev/null and b/src/all/eromanhwa/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/all/eromanhwa/res/mipmap-xhdpi/ic_launcher.png b/src/all/eromanhwa/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..a10dadab0 Binary files /dev/null and b/src/all/eromanhwa/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/all/eromanhwa/res/mipmap-xxhdpi/ic_launcher.png b/src/all/eromanhwa/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..6c6cfb4df Binary files /dev/null and b/src/all/eromanhwa/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/all/eromanhwa/res/mipmap-xxxhdpi/ic_launcher.png b/src/all/eromanhwa/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..76cc009d9 Binary files /dev/null and b/src/all/eromanhwa/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/all/eromanhwa/src/eu/kanade/tachiyomi/extension/all/eromanhwa/Eromanhwa.kt b/src/all/eromanhwa/src/eu/kanade/tachiyomi/extension/all/eromanhwa/Eromanhwa.kt new file mode 100644 index 000000000..0d7ceeaa4 --- /dev/null +++ b/src/all/eromanhwa/src/eu/kanade/tachiyomi/extension/all/eromanhwa/Eromanhwa.kt @@ -0,0 +1,11 @@ +package eu.kanade.tachiyomi.extension.all.eromanhwa + +import eu.kanade.tachiyomi.multisrc.madara.Madara + +class Eromanhwa : Madara( + "Eromanhwa", + "https://eromanhwa.org", + "en", +) { + override val useNewChapterEndpoint = true +}