diff --git a/src/en/manhwaworld/build.gradle b/src/en/manhwaworld/build.gradle deleted file mode 100644 index 8e9f50684..000000000 --- a/src/en/manhwaworld/build.gradle +++ /dev/null @@ -1,10 +0,0 @@ -ext { - extName = 'AQUA Scans' - extClass = '.ManhwaWorld' - themePkg = 'madara' - baseUrl = 'https://aquascans.com' - overrideVersionCode = 2 - isNsfw = false -} - -apply from: "$rootDir/common.gradle" diff --git a/src/en/manhwaworld/res/mipmap-hdpi/ic_launcher.png b/src/en/manhwaworld/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index 2b64d7420..000000000 Binary files a/src/en/manhwaworld/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/src/en/manhwaworld/res/mipmap-mdpi/ic_launcher.png b/src/en/manhwaworld/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 77fe6ed7f..000000000 Binary files a/src/en/manhwaworld/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/src/en/manhwaworld/res/mipmap-xhdpi/ic_launcher.png b/src/en/manhwaworld/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 2ebef8dfb..000000000 Binary files a/src/en/manhwaworld/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/src/en/manhwaworld/res/mipmap-xxhdpi/ic_launcher.png b/src/en/manhwaworld/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index f045158ab..000000000 Binary files a/src/en/manhwaworld/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/en/manhwaworld/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/manhwaworld/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 3d3917248..000000000 Binary files a/src/en/manhwaworld/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/en/manhwaworld/src/eu/kanade/tachiyomi/extension/en/manhwaworld/ManhwaWorld.kt b/src/en/manhwaworld/src/eu/kanade/tachiyomi/extension/en/manhwaworld/ManhwaWorld.kt deleted file mode 100644 index df4bf31e0..000000000 --- a/src/en/manhwaworld/src/eu/kanade/tachiyomi/extension/en/manhwaworld/ManhwaWorld.kt +++ /dev/null @@ -1,19 +0,0 @@ -package eu.kanade.tachiyomi.extension.en.manhwaworld - -import eu.kanade.tachiyomi.multisrc.madara.Madara -import eu.kanade.tachiyomi.network.interceptor.rateLimitHost -import okhttp3.HttpUrl.Companion.toHttpUrl - -class ManhwaWorld : Madara( - "AQUA Scans", - "https://aquascans.com", - "en", -) { - override val id = 8857833474626810640 - - override val client = super.client.newBuilder() - .rateLimitHost(baseUrl.toHttpUrl(), 3, 1) - .build() - - override val chapterUrlSuffix = "" -}