diff --git a/src/all/hentaicafe/AndroidManifest.xml b/src/all/hentaicafe/AndroidManifest.xml
deleted file mode 100644
index e8b73b39e..000000000
--- a/src/all/hentaicafe/AndroidManifest.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/all/hentaicafe/build.gradle b/src/all/hentaicafe/build.gradle
deleted file mode 100644
index 2f4accb71..000000000
--- a/src/all/hentaicafe/build.gradle
+++ /dev/null
@@ -1,8 +0,0 @@
-ext {
- extName = 'Hentai Cafe'
- extClass = '.HentaiCafe'
- extVersionCode = 1
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/all/hentaicafe/res/mipmap-hdpi/ic_launcher.png b/src/all/hentaicafe/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index dc63ee26e..000000000
Binary files a/src/all/hentaicafe/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/all/hentaicafe/res/mipmap-mdpi/ic_launcher.png b/src/all/hentaicafe/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 1935fce6c..000000000
Binary files a/src/all/hentaicafe/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/all/hentaicafe/res/mipmap-xhdpi/ic_launcher.png b/src/all/hentaicafe/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 74ded80a8..000000000
Binary files a/src/all/hentaicafe/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/all/hentaicafe/res/mipmap-xxhdpi/ic_launcher.png b/src/all/hentaicafe/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index d1735eea8..000000000
Binary files a/src/all/hentaicafe/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/all/hentaicafe/res/mipmap-xxxhdpi/ic_launcher.png b/src/all/hentaicafe/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index bf4eae564..000000000
Binary files a/src/all/hentaicafe/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/all/hentaicafe/src/eu/kanade/tachiyomi/extension/all/hentaicafe/HentaiCafe.kt b/src/all/hentaicafe/src/eu/kanade/tachiyomi/extension/all/hentaicafe/HentaiCafe.kt
deleted file mode 100644
index 7123e72e6..000000000
--- a/src/all/hentaicafe/src/eu/kanade/tachiyomi/extension/all/hentaicafe/HentaiCafe.kt
+++ /dev/null
@@ -1,167 +0,0 @@
-package eu.kanade.tachiyomi.extension.all.hentaicafe
-
-import eu.kanade.tachiyomi.network.GET
-import eu.kanade.tachiyomi.network.asObservableSuccess
-import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
-import eu.kanade.tachiyomi.source.model.FilterList
-import eu.kanade.tachiyomi.source.model.MangasPage
-import eu.kanade.tachiyomi.source.model.Page
-import eu.kanade.tachiyomi.source.model.SChapter
-import eu.kanade.tachiyomi.source.model.SManga
-import eu.kanade.tachiyomi.source.model.UpdateStrategy
-import eu.kanade.tachiyomi.source.online.ParsedHttpSource
-import eu.kanade.tachiyomi.util.asJsoup
-import okhttp3.HttpUrl.Companion.toHttpUrl
-import okhttp3.Request
-import okhttp3.Response
-import org.jsoup.nodes.Document
-import org.jsoup.nodes.Element
-import rx.Observable
-
-class HentaiCafe : ParsedHttpSource() {
-
- override val name = "Hentai Cafe"
-
- override val baseUrl = "https://hentaicafe.xxx"
-
- override val lang = "all"
-
- override val supportsLatest = true
-
- override val client by lazy {
- network.client.newBuilder()
- .rateLimitHost(baseUrl.toHttpUrl(), 2)
- // Image CDN
- .rateLimitHost("https://cdn.hentaibomb.com".toHttpUrl(), 2)
- .build()
- }
-
- override fun headersBuilder() = super.headersBuilder()
- .add("Referer", "$baseUrl/")
- .add("Accept-Language", "en-US,en;q=0.5")
-
- // ============================== Popular ===============================
- override fun popularMangaRequest(page: Int) = GET(baseUrl, headers)
-
- override fun popularMangaSelector() = "div.index-popular > div.gallery > a"
-
- override fun popularMangaFromElement(element: Element) = SManga.create().apply {
- setUrlWithoutDomain(element.attr("href"))
- thumbnail_url = element.selectFirst("img")?.getImageUrl()
- title = element.selectFirst("div.caption")!!.text()
- }
-
- override fun popularMangaNextPageSelector() = null
-
- // =============================== Latest ===============================
- override fun latestUpdatesRequest(page: Int) = GET("$baseUrl/?page=$page", headers)
-
- override fun latestUpdatesSelector() = "div.index-container:contains(new uploads) > div.gallery > a"
-
- override fun latestUpdatesFromElement(element: Element) = popularMangaFromElement(element)
-
- override fun latestUpdatesNextPageSelector() = "section.pagination > a.last:not(.disabled)"
-
- // =============================== Search ===============================
- override fun fetchSearchManga(page: Int, query: String, filters: FilterList): Observable {
- return if (query.startsWith(PREFIX_SEARCH)) { // URL intent handler
- val id = query.removePrefix(PREFIX_SEARCH)
- client.newCall(GET("$baseUrl/g/$id"))
- .asObservableSuccess()
- .map(::searchMangaByIdParse)
- } else {
- super.fetchSearchManga(page, query, filters)
- }
- }
-
- private fun searchMangaByIdParse(response: Response): MangasPage {
- val details = mangaDetailsParse(response.use { it.asJsoup() })
- return MangasPage(listOf(details), false)
- }
-
- override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request {
- val url = "$baseUrl/search".toHttpUrl().newBuilder()
- .addQueryParameter("q", query)
- .addQueryParameter("page", page.toString())
- .build()
-
- return GET(url, headers)
- }
-
- override fun searchMangaSelector() = "div.index-container > div.gallery > a"
-
- override fun searchMangaFromElement(element: Element) = popularMangaFromElement(element)
-
- override fun searchMangaNextPageSelector() = latestUpdatesNextPageSelector()
-
- // =========================== Manga Details ============================
- override fun mangaDetailsParse(document: Document) = SManga.create().apply {
- thumbnail_url = document.selectFirst("#cover > a > img")?.getImageUrl()
-
- with(document.selectFirst("div#bigcontainer > div > div#info")!!) {
- title = selectFirst("h1.title")!!.text()
- artist = getInfo("Artists")
- genre = getInfo("Tags")
-
- description = buildString {
- select(".title > span").eachText().joinToString("\n").also {
- append("Full titles:\n$it\n")
- }
-
- getInfo("Groups")?.also { append("\nGroups: $it") }
- getInfo("Languages")?.also { append("\nLanguages: $it") }
- getInfo("Parodies")?.also { append("\nParodies: $it") }
- getInfo("Pages")?.also { append("\nPages: $it") }
- }
- }
-
- status = SManga.COMPLETED
- update_strategy = UpdateStrategy.ONLY_FETCH_ONCE
- }
-
- private fun Element.getInfo(item: String) =
- select("div.field-name:containsOwn($item) a.tag > span.name")
- .eachText()
- .takeUnless { it.isEmpty() }
- ?.joinToString()
-
- // ============================== Chapters ==============================
- override fun fetchChapterList(manga: SManga): Observable> {
- val chapter = SChapter.create().apply {
- url = manga.url
- name = "Chapter"
- chapter_number = 1F
- }
-
- return Observable.just(listOf(chapter))
- }
-
- override fun chapterListSelector(): String {
- throw UnsupportedOperationException()
- }
-
- override fun chapterFromElement(element: Element): SChapter {
- throw UnsupportedOperationException()
- }
-
- // =============================== Pages ================================
- override fun pageListParse(document: Document): List {
- return document.select("div.thumbs a.gallerythumb > img").mapIndexed { index, item ->
- val url = item.getImageUrl()
- // Show original images instead of previews
- val imageUrl = url.substringBeforeLast('/') + "/" + url.substringAfterLast('/').replace("t.", ".")
- Page(index, "", imageUrl)
- }
- }
-
- override fun imageUrlParse(document: Document): String {
- throw UnsupportedOperationException()
- }
-
- // ============================= Utilities ==============================
- private fun Element.getImageUrl() = absUrl("data-src").ifEmpty { absUrl("src") }
-
- companion object {
- const val PREFIX_SEARCH = "id:"
- }
-}
diff --git a/src/all/hentaicafe/src/eu/kanade/tachiyomi/extension/all/hentaicafe/HentaiCafeUrlActivity.kt b/src/all/hentaicafe/src/eu/kanade/tachiyomi/extension/all/hentaicafe/HentaiCafeUrlActivity.kt
deleted file mode 100644
index 84011a91e..000000000
--- a/src/all/hentaicafe/src/eu/kanade/tachiyomi/extension/all/hentaicafe/HentaiCafeUrlActivity.kt
+++ /dev/null
@@ -1,41 +0,0 @@
-package eu.kanade.tachiyomi.extension.all.hentaicafe
-
-import android.app.Activity
-import android.content.ActivityNotFoundException
-import android.content.Intent
-import android.os.Bundle
-import android.util.Log
-import kotlin.system.exitProcess
-
-/**
- * Springboard that accepts https://hentaicafe.xxx/g/ intents
- * and redirects them to the main Tachiyomi process.
- */
-class HentaiCafeUrlActivity : Activity() {
-
- private val tag = javaClass.simpleName
-
- override fun onCreate(savedInstanceState: Bundle?) {
- super.onCreate(savedInstanceState)
- val pathSegments = intent?.data?.pathSegments
- if (pathSegments != null && pathSegments.size > 1) {
- val item = pathSegments[1]
- val mainIntent = Intent().apply {
- action = "eu.kanade.tachiyomi.SEARCH"
- putExtra("query", "${HentaiCafe.PREFIX_SEARCH}$item")
- putExtra("filter", packageName)
- }
-
- try {
- startActivity(mainIntent)
- } catch (e: ActivityNotFoundException) {
- Log.e(tag, e.toString())
- }
- } else {
- Log.e(tag, "could not parse uri from intent $intent")
- }
-
- finish()
- exitProcess(0)
- }
-}
diff --git a/src/en/comic1000/build.gradle b/src/en/comic1000/build.gradle
deleted file mode 100644
index b60617333..000000000
--- a/src/en/comic1000/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'Comic1000'
- extClass = '.Comic1000'
- themePkg = 'manga18'
- baseUrl = 'https://comic1000.com'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/comic1000/src/eu/kanade/tachiyomi/extension/en/comic1000/Comic1000.kt b/src/en/comic1000/src/eu/kanade/tachiyomi/extension/en/comic1000/Comic1000.kt
deleted file mode 100644
index 06dda4728..000000000
--- a/src/en/comic1000/src/eu/kanade/tachiyomi/extension/en/comic1000/Comic1000.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.comic1000
-
-import eu.kanade.tachiyomi.multisrc.manga18.Manga18
-
-class Comic1000 : Manga18("Comic1000", "https://comic1000.com", "en")
diff --git a/src/en/globalbloging/build.gradle b/src/en/globalbloging/build.gradle
deleted file mode 100644
index 12e2cfa71..000000000
--- a/src/en/globalbloging/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Global Bloging'
- extClass = '.GlobalBloging'
- themePkg = 'madara'
- baseUrl = 'https://globalbloging.com'
- overrideVersionCode = 0
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/globalbloging/res/mipmap-hdpi/ic_launcher.png b/src/en/globalbloging/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index e2fb549a5..000000000
Binary files a/src/en/globalbloging/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/globalbloging/res/mipmap-mdpi/ic_launcher.png b/src/en/globalbloging/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 0f69bc7f2..000000000
Binary files a/src/en/globalbloging/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/globalbloging/res/mipmap-xhdpi/ic_launcher.png b/src/en/globalbloging/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 7aec20395..000000000
Binary files a/src/en/globalbloging/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/globalbloging/res/mipmap-xxhdpi/ic_launcher.png b/src/en/globalbloging/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 2cc6aae92..000000000
Binary files a/src/en/globalbloging/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/globalbloging/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/globalbloging/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index b379038b3..000000000
Binary files a/src/en/globalbloging/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/globalbloging/src/eu/kanade/tachiyomi/extension/en/globalbloging/GlobalBloging.kt b/src/en/globalbloging/src/eu/kanade/tachiyomi/extension/en/globalbloging/GlobalBloging.kt
deleted file mode 100644
index ad47279cf..000000000
--- a/src/en/globalbloging/src/eu/kanade/tachiyomi/extension/en/globalbloging/GlobalBloging.kt
+++ /dev/null
@@ -1,20 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.globalbloging
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import java.text.SimpleDateFormat
-import java.util.Locale
-
-class GlobalBloging : Madara(
- "Global Bloging",
- "https://globalbloging.com",
- "en",
- SimpleDateFormat("dd MMMM yyyy", Locale.US),
-) {
- override val useNewChapterEndpoint = true
-
- // =========================== Manga Details ============================
-
- override val mangaDetailsSelectorThumbnail = "${super.mangaDetailsSelectorThumbnail}[src~=.]"
- override val mangaDetailsSelectorAuthor = "div.manga-authors > a"
- override val mangaDetailsSelectorDescription = "div.manga-summary > p"
-}
diff --git a/src/en/isekaiscaneu/build.gradle b/src/en/isekaiscaneu/build.gradle
deleted file mode 100644
index b2a6184e3..000000000
--- a/src/en/isekaiscaneu/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'IsekaiScan.to (unoriginal)'
- extClass = '.IsekaiScanTo'
- themePkg = 'madara'
- baseUrl = 'https://m.isekaiscan.to'
- overrideVersionCode = 3
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/isekaiscaneu/res/mipmap-hdpi/ic_launcher.png b/src/en/isekaiscaneu/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 17ceabda3..000000000
Binary files a/src/en/isekaiscaneu/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/isekaiscaneu/res/mipmap-mdpi/ic_launcher.png b/src/en/isekaiscaneu/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 2b3441ad4..000000000
Binary files a/src/en/isekaiscaneu/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/isekaiscaneu/res/mipmap-xhdpi/ic_launcher.png b/src/en/isekaiscaneu/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 9367cb060..000000000
Binary files a/src/en/isekaiscaneu/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/isekaiscaneu/res/mipmap-xxhdpi/ic_launcher.png b/src/en/isekaiscaneu/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 386c5ffaf..000000000
Binary files a/src/en/isekaiscaneu/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/isekaiscaneu/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/isekaiscaneu/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 9c05bbd81..000000000
Binary files a/src/en/isekaiscaneu/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/isekaiscaneu/src/eu/kanade/tachiyomi/extension/en/isekaiscaneu/IsekaiScanTo.kt b/src/en/isekaiscaneu/src/eu/kanade/tachiyomi/extension/en/isekaiscaneu/IsekaiScanTo.kt
deleted file mode 100644
index 45797cb35..000000000
--- a/src/en/isekaiscaneu/src/eu/kanade/tachiyomi/extension/en/isekaiscaneu/IsekaiScanTo.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.isekaiscaneu
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import java.text.SimpleDateFormat
-import java.util.Locale
-
-class IsekaiScanTo : Madara("IsekaiScan.to (unoriginal)", "https://m.isekaiscan.to", "en", SimpleDateFormat("MM/dd/yyyy", Locale.US)) {
- override val id = 8608305834807261892L; // from former IsekaiScan.eu source
-
- override val mangaSubString = "mangax"
-}
diff --git a/src/en/komikchan/build.gradle b/src/en/komikchan/build.gradle
deleted file mode 100644
index 492e5d62b..000000000
--- a/src/en/komikchan/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Komik Chan'
- extClass = '.KomikChan'
- themePkg = 'madara'
- baseUrl = 'https://komikchan.com'
- overrideVersionCode = 1
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/komikchan/res/mipmap-hdpi/ic_launcher.png b/src/en/komikchan/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 19cb18f00..000000000
Binary files a/src/en/komikchan/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/komikchan/res/mipmap-mdpi/ic_launcher.png b/src/en/komikchan/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index d521066aa..000000000
Binary files a/src/en/komikchan/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/komikchan/res/mipmap-xhdpi/ic_launcher.png b/src/en/komikchan/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index bdadb6e09..000000000
Binary files a/src/en/komikchan/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/komikchan/res/mipmap-xxhdpi/ic_launcher.png b/src/en/komikchan/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index b685c1aa7..000000000
Binary files a/src/en/komikchan/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/komikchan/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/komikchan/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index f721d1bac..000000000
Binary files a/src/en/komikchan/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/komikchan/src/eu/kanade/tachiyomi/extension/en/komikchan/KomikChan.kt b/src/en/komikchan/src/eu/kanade/tachiyomi/extension/en/komikchan/KomikChan.kt
deleted file mode 100644
index ab5b4d8ff..000000000
--- a/src/en/komikchan/src/eu/kanade/tachiyomi/extension/en/komikchan/KomikChan.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.komikchan
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import eu.kanade.tachiyomi.network.GET
-import okhttp3.Request
-
-class KomikChan : Madara("Komik Chan", "https://komikchan.com", "en") {
- override val filterNonMangaItems = false
- override fun popularMangaRequest(page: Int): Request = GET("$baseUrl/comics/page/$page/?m_orderby=views", headers)
- override fun latestUpdatesRequest(page: Int): Request = GET("$baseUrl/comics/page/$page/?m_orderby=latest", headers)
-}
diff --git a/src/en/mangaaction/build.gradle b/src/en/mangaaction/build.gradle
deleted file mode 100644
index 99664311e..000000000
--- a/src/en/mangaaction/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Manga Action'
- extClass = '.MangaAction'
- themePkg = 'madara'
- baseUrl = 'https://mangaaction.com'
- overrideVersionCode = 2
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/mangaaction/res/mipmap-hdpi/ic_launcher.png b/src/en/mangaaction/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index ca387b84e..000000000
Binary files a/src/en/mangaaction/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaaction/res/mipmap-mdpi/ic_launcher.png b/src/en/mangaaction/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 203b65f88..000000000
Binary files a/src/en/mangaaction/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaaction/res/mipmap-xhdpi/ic_launcher.png b/src/en/mangaaction/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 4184957a6..000000000
Binary files a/src/en/mangaaction/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaaction/res/mipmap-xxhdpi/ic_launcher.png b/src/en/mangaaction/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 394351532..000000000
Binary files a/src/en/mangaaction/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaaction/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/mangaaction/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 06b77da87..000000000
Binary files a/src/en/mangaaction/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaaction/src/eu/kanade/tachiyomi/extension/en/mangaaction/MangaAction.kt b/src/en/mangaaction/src/eu/kanade/tachiyomi/extension/en/mangaaction/MangaAction.kt
deleted file mode 100644
index 0f02074b6..000000000
--- a/src/en/mangaaction/src/eu/kanade/tachiyomi/extension/en/mangaaction/MangaAction.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.mangaaction
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaAction : Madara("Manga Action", "https://mangaaction.com", "en")
diff --git a/src/en/manganerds/build.gradle b/src/en/manganerds/build.gradle
deleted file mode 100644
index 11d5689b8..000000000
--- a/src/en/manganerds/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Manga Nerds'
- extClass = '.MangaNerds'
- themePkg = 'madara'
- baseUrl = 'https://manganerds.com'
- overrideVersionCode = 0
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/manganerds/res/mipmap-hdpi/ic_launcher.png b/src/en/manganerds/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index fb9f9b87b..000000000
Binary files a/src/en/manganerds/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manganerds/res/mipmap-mdpi/ic_launcher.png b/src/en/manganerds/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 8b4ab3601..000000000
Binary files a/src/en/manganerds/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manganerds/res/mipmap-xhdpi/ic_launcher.png b/src/en/manganerds/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 8a5ae6a74..000000000
Binary files a/src/en/manganerds/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manganerds/res/mipmap-xxhdpi/ic_launcher.png b/src/en/manganerds/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index c98a79948..000000000
Binary files a/src/en/manganerds/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manganerds/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/manganerds/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 0214a9882..000000000
Binary files a/src/en/manganerds/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manganerds/src/eu/kanade/tachiyomi/extension/en/manganerds/MangaNerds.kt b/src/en/manganerds/src/eu/kanade/tachiyomi/extension/en/manganerds/MangaNerds.kt
deleted file mode 100644
index 7f448a5e8..000000000
--- a/src/en/manganerds/src/eu/kanade/tachiyomi/extension/en/manganerds/MangaNerds.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.manganerds
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaNerds : Madara("Manga Nerds", "https://manganerds.com", "en") {
- override val useNewChapterEndpoint = true
-}
diff --git a/src/en/mangaowlblog/build.gradle b/src/en/mangaowlblog/build.gradle
deleted file mode 100644
index 60a49b08a..000000000
--- a/src/en/mangaowlblog/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'MangaOwl.blog (unoriginal)'
- extClass = '.MangaOwlBlog'
- themePkg = 'madara'
- baseUrl = 'https://mangaowl.blog'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/mangaowlblog/res/mipmap-hdpi/ic_launcher.png b/src/en/mangaowlblog/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 4862cd83e..000000000
Binary files a/src/en/mangaowlblog/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlblog/res/mipmap-mdpi/ic_launcher.png b/src/en/mangaowlblog/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index a8635c99d..000000000
Binary files a/src/en/mangaowlblog/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlblog/res/mipmap-xhdpi/ic_launcher.png b/src/en/mangaowlblog/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index f74bb6b32..000000000
Binary files a/src/en/mangaowlblog/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlblog/res/mipmap-xxhdpi/ic_launcher.png b/src/en/mangaowlblog/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 4f46369e8..000000000
Binary files a/src/en/mangaowlblog/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlblog/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/mangaowlblog/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 598971dee..000000000
Binary files a/src/en/mangaowlblog/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlblog/src/eu/kanade/tachiyomi/extension/en/mangaowlblog/MangaOwlBlog.kt b/src/en/mangaowlblog/src/eu/kanade/tachiyomi/extension/en/mangaowlblog/MangaOwlBlog.kt
deleted file mode 100644
index e6d953c48..000000000
--- a/src/en/mangaowlblog/src/eu/kanade/tachiyomi/extension/en/mangaowlblog/MangaOwlBlog.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.mangaowlblog
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaOwlBlog : Madara("MangaOwl.blog (unoriginal)", "https://mangaowl.blog", "en") {
- override val useNewChapterEndpoint = false
-}
diff --git a/src/en/mangaowlone/build.gradle b/src/en/mangaowlone/build.gradle
deleted file mode 100644
index 781a70711..000000000
--- a/src/en/mangaowlone/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'MangaOwl.one (unoriginal)'
- extClass = '.MangaOwlOne'
- themePkg = 'madara'
- baseUrl = 'https://mangaowl.one'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/mangaowlone/src/eu/kanade/tachiyomi/extension/en/mangaowlone/MangaOwlOne.kt b/src/en/mangaowlone/src/eu/kanade/tachiyomi/extension/en/mangaowlone/MangaOwlOne.kt
deleted file mode 100644
index 08e2f123f..000000000
--- a/src/en/mangaowlone/src/eu/kanade/tachiyomi/extension/en/mangaowlone/MangaOwlOne.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.mangaowlone
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaOwlOne : Madara("MangaOwl.one (unoriginal)", "https://mangaowl.one", "en") {
- override val useNewChapterEndpoint = false
- override val filterNonMangaItems = false
-}
diff --git a/src/en/mangaowlus/build.gradle b/src/en/mangaowlus/build.gradle
deleted file mode 100644
index 1982be576..000000000
--- a/src/en/mangaowlus/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'MangaOwl.us (unoriginal)'
- extClass = '.MangaOwlUs'
- themePkg = 'madara'
- baseUrl = 'https://mangaowl.us'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/mangaowlus/res/mipmap-hdpi/ic_launcher.png b/src/en/mangaowlus/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 639597b4c..000000000
Binary files a/src/en/mangaowlus/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlus/res/mipmap-mdpi/ic_launcher.png b/src/en/mangaowlus/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 894494f76..000000000
Binary files a/src/en/mangaowlus/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlus/res/mipmap-xhdpi/ic_launcher.png b/src/en/mangaowlus/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index d61ff9e20..000000000
Binary files a/src/en/mangaowlus/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlus/res/mipmap-xxhdpi/ic_launcher.png b/src/en/mangaowlus/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 2f68aecf1..000000000
Binary files a/src/en/mangaowlus/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlus/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/mangaowlus/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index d5f1e7bf4..000000000
Binary files a/src/en/mangaowlus/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlus/src/eu/kanade/tachiyomi/extension/en/mangaowlus/MangaOwlUs.kt b/src/en/mangaowlus/src/eu/kanade/tachiyomi/extension/en/mangaowlus/MangaOwlUs.kt
deleted file mode 100644
index 74d0be3e8..000000000
--- a/src/en/mangaowlus/src/eu/kanade/tachiyomi/extension/en/mangaowlus/MangaOwlUs.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.mangaowlus
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaOwlUs : Madara("MangaOwl.us (unoriginal)", "https://mangaowl.us", "en") {
- override val useNewChapterEndpoint = true
-}
diff --git a/src/en/mangaowlyaoi/build.gradle b/src/en/mangaowlyaoi/build.gradle
deleted file mode 100644
index c28ce4cf5..000000000
--- a/src/en/mangaowlyaoi/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'Mangaowl Yaoi'
- extClass = '.MangaowlYaoi'
- themePkg = 'madara'
- baseUrl = 'https://mangaowlyaoi.com'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/mangaowlyaoi/res/mipmap-hdpi/ic_launcher.png b/src/en/mangaowlyaoi/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 0e37aedea..000000000
Binary files a/src/en/mangaowlyaoi/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlyaoi/res/mipmap-mdpi/ic_launcher.png b/src/en/mangaowlyaoi/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 67a675eb3..000000000
Binary files a/src/en/mangaowlyaoi/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlyaoi/res/mipmap-xhdpi/ic_launcher.png b/src/en/mangaowlyaoi/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 4729acad7..000000000
Binary files a/src/en/mangaowlyaoi/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlyaoi/res/mipmap-xxhdpi/ic_launcher.png b/src/en/mangaowlyaoi/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index ea2f6b948..000000000
Binary files a/src/en/mangaowlyaoi/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlyaoi/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/mangaowlyaoi/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index a1aee13ac..000000000
Binary files a/src/en/mangaowlyaoi/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangaowlyaoi/src/eu/kanade/tachiyomi/extension/en/mangaowlyaoi/MangaowlYaoi.kt b/src/en/mangaowlyaoi/src/eu/kanade/tachiyomi/extension/en/mangaowlyaoi/MangaowlYaoi.kt
deleted file mode 100644
index 929636b16..000000000
--- a/src/en/mangaowlyaoi/src/eu/kanade/tachiyomi/extension/en/mangaowlyaoi/MangaowlYaoi.kt
+++ /dev/null
@@ -1,14 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.mangaowlyaoi
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaowlYaoi : Madara(
- "Mangaowl Yaoi",
- "https://mangaowlyaoi.com",
- "en",
-) {
- override val useLoadMoreRequest = LoadMoreStrategy.Always
- override val useNewChapterEndpoint = true
-
- override val mangaSubString = "read"
-}
diff --git a/src/en/mangarocky/build.gradle b/src/en/mangarocky/build.gradle
deleted file mode 100644
index e259d60e8..000000000
--- a/src/en/mangarocky/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Manga Rocky'
- extClass = '.MangaRocky'
- themePkg = 'madara'
- baseUrl = 'https://mangarocky.com'
- overrideVersionCode = 1
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/mangarocky/res/mipmap-hdpi/ic_launcher.png b/src/en/mangarocky/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index a01a63598..000000000
Binary files a/src/en/mangarocky/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangarocky/res/mipmap-mdpi/ic_launcher.png b/src/en/mangarocky/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 93593fb0e..000000000
Binary files a/src/en/mangarocky/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangarocky/res/mipmap-xhdpi/ic_launcher.png b/src/en/mangarocky/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 3da0a4afb..000000000
Binary files a/src/en/mangarocky/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangarocky/res/mipmap-xxhdpi/ic_launcher.png b/src/en/mangarocky/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 26377baf6..000000000
Binary files a/src/en/mangarocky/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangarocky/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/mangarocky/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index d5f17667b..000000000
Binary files a/src/en/mangarocky/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangarocky/src/eu/kanade/tachiyomi/extension/en/mangarocky/MangaRocky.kt b/src/en/mangarocky/src/eu/kanade/tachiyomi/extension/en/mangarocky/MangaRocky.kt
deleted file mode 100644
index a3ab976da..000000000
--- a/src/en/mangarocky/src/eu/kanade/tachiyomi/extension/en/mangarocky/MangaRocky.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.mangarocky
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaRocky : Madara("Manga Rocky", "https://mangarocky.com", "en")
diff --git a/src/en/mangarubycom/build.gradle b/src/en/mangarubycom/build.gradle
deleted file mode 100644
index ebd9cbc26..000000000
--- a/src/en/mangarubycom/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'MangaRuby.com'
- extClass = '.MangaRubyCom'
- themePkg = 'madara'
- baseUrl = 'https://mangaruby.com'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/mangarubycom/src/eu/kanade/tachiyomi/extension/en/mangarubycom/MangaRubyCom.kt b/src/en/mangarubycom/src/eu/kanade/tachiyomi/extension/en/mangarubycom/MangaRubyCom.kt
deleted file mode 100644
index ed6cb831f..000000000
--- a/src/en/mangarubycom/src/eu/kanade/tachiyomi/extension/en/mangarubycom/MangaRubyCom.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.mangarubycom
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaRubyCom : Madara("MangaRuby.com", "https://mangaruby.com", "en") {
- override val useNewChapterEndpoint = true
- override val filterNonMangaItems = false
-}
diff --git a/src/en/mangasiro/build.gradle b/src/en/mangasiro/build.gradle
deleted file mode 100644
index 4a844f2b3..000000000
--- a/src/en/mangasiro/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'MangaSiro'
- extClass = '.MangaSiro'
- themePkg = 'madara'
- baseUrl = 'https://mangasiro.com'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/mangasiro/res/mipmap-hdpi/ic_launcher.png b/src/en/mangasiro/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 175bb2cad..000000000
Binary files a/src/en/mangasiro/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangasiro/res/mipmap-mdpi/ic_launcher.png b/src/en/mangasiro/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 3a9206458..000000000
Binary files a/src/en/mangasiro/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangasiro/res/mipmap-xhdpi/ic_launcher.png b/src/en/mangasiro/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 79bc54ac0..000000000
Binary files a/src/en/mangasiro/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangasiro/res/mipmap-xxhdpi/ic_launcher.png b/src/en/mangasiro/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 06dcbd01d..000000000
Binary files a/src/en/mangasiro/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangasiro/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/mangasiro/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index c8b82c272..000000000
Binary files a/src/en/mangasiro/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangasiro/src/eu/kanade/tachiyomi/extension/en/mangasiro/MangaSiro.kt b/src/en/mangasiro/src/eu/kanade/tachiyomi/extension/en/mangasiro/MangaSiro.kt
deleted file mode 100644
index c2da44226..000000000
--- a/src/en/mangasiro/src/eu/kanade/tachiyomi/extension/en/mangasiro/MangaSiro.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.mangasiro
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaSiro : Madara("MangaSiro", "https://mangasiro.com", "en")
diff --git a/src/en/mangax1/build.gradle b/src/en/mangax1/build.gradle
deleted file mode 100644
index 7a2803442..000000000
--- a/src/en/mangax1/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'MangaX1'
- extClass = '.MangaX1'
- themePkg = 'madara'
- baseUrl = 'https://mangax1.com'
- overrideVersionCode = 0
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/mangax1/res/mipmap-hdpi/ic_launcher.png b/src/en/mangax1/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index b6bcff852..000000000
Binary files a/src/en/mangax1/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangax1/res/mipmap-mdpi/ic_launcher.png b/src/en/mangax1/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 9ca21d144..000000000
Binary files a/src/en/mangax1/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangax1/res/mipmap-xhdpi/ic_launcher.png b/src/en/mangax1/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 8258a7da3..000000000
Binary files a/src/en/mangax1/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangax1/res/mipmap-xxhdpi/ic_launcher.png b/src/en/mangax1/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index d19769770..000000000
Binary files a/src/en/mangax1/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangax1/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/mangax1/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index ab8254d57..000000000
Binary files a/src/en/mangax1/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/mangax1/src/eu/kanade/tachiyomi/extension/en/mangax1/MangaX1.kt b/src/en/mangax1/src/eu/kanade/tachiyomi/extension/en/mangax1/MangaX1.kt
deleted file mode 100644
index 9deed8743..000000000
--- a/src/en/mangax1/src/eu/kanade/tachiyomi/extension/en/mangax1/MangaX1.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.mangax1
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class MangaX1 : Madara("MangaX1", "https://mangax1.com", "en")
diff --git a/src/en/manhuabox/build.gradle b/src/en/manhuabox/build.gradle
deleted file mode 100644
index e293283d3..000000000
--- a/src/en/manhuabox/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'ManhuaBox'
- extClass = '.ManhuaBox'
- themePkg = 'madara'
- baseUrl = 'https://manhuabox.net'
- overrideVersionCode = 2
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/manhuabox/res/mipmap-hdpi/ic_launcher.png b/src/en/manhuabox/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 1727758ff..000000000
Binary files a/src/en/manhuabox/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuabox/res/mipmap-mdpi/ic_launcher.png b/src/en/manhuabox/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 65492c3ae..000000000
Binary files a/src/en/manhuabox/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuabox/res/mipmap-xhdpi/ic_launcher.png b/src/en/manhuabox/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 22dfa1593..000000000
Binary files a/src/en/manhuabox/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuabox/res/mipmap-xxhdpi/ic_launcher.png b/src/en/manhuabox/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index edd837eb5..000000000
Binary files a/src/en/manhuabox/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuabox/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/manhuabox/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index da53dc3d1..000000000
Binary files a/src/en/manhuabox/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuabox/src/eu/kanade/tachiyomi/extension/en/manhuabox/ManhuaBox.kt b/src/en/manhuabox/src/eu/kanade/tachiyomi/extension/en/manhuabox/ManhuaBox.kt
deleted file mode 100644
index ab8ea398a..000000000
--- a/src/en/manhuabox/src/eu/kanade/tachiyomi/extension/en/manhuabox/ManhuaBox.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.manhuabox
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class ManhuaBox : Madara("ManhuaBox", "https://manhuabox.net", "en")
diff --git a/src/en/manhuamanhwaonline/build.gradle b/src/en/manhuamanhwaonline/build.gradle
deleted file mode 100644
index 5ad7ad9c7..000000000
--- a/src/en/manhuamanhwaonline/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'ManhuaManhwa.online'
- extClass = '.ManhuaManhwaOnline'
- themePkg = 'madara'
- baseUrl = 'https://manhuamanhwa.online'
- overrideVersionCode = 0
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/manhuamanhwaonline/src/eu/kanade/tachiyomi/extension/en/manhuamanhwaonline/ManhuaManhwaOnline.kt b/src/en/manhuamanhwaonline/src/eu/kanade/tachiyomi/extension/en/manhuamanhwaonline/ManhuaManhwaOnline.kt
deleted file mode 100644
index 972a0be64..000000000
--- a/src/en/manhuamanhwaonline/src/eu/kanade/tachiyomi/extension/en/manhuamanhwaonline/ManhuaManhwaOnline.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.manhuamanhwaonline
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class ManhuaManhwaOnline : Madara("ManhuaManhwa.online", "https://manhuamanhwa.online", "en") {
- override val useNewChapterEndpoint = false
-}
diff --git a/src/en/manhuasnet/build.gradle b/src/en/manhuasnet/build.gradle
deleted file mode 100644
index e38f84e47..000000000
--- a/src/en/manhuasnet/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Manhua Mix'
- extClass = '.Manhuasnet'
- themePkg = 'madara'
- baseUrl = 'https://manhuamix.com'
- overrideVersionCode = 3
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/manhuasnet/res/mipmap-hdpi/ic_launcher.png b/src/en/manhuasnet/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 11c97b41b..000000000
Binary files a/src/en/manhuasnet/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuasnet/res/mipmap-mdpi/ic_launcher.png b/src/en/manhuasnet/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 897081bc0..000000000
Binary files a/src/en/manhuasnet/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuasnet/res/mipmap-xhdpi/ic_launcher.png b/src/en/manhuasnet/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 14ba4aa9b..000000000
Binary files a/src/en/manhuasnet/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuasnet/res/mipmap-xxhdpi/ic_launcher.png b/src/en/manhuasnet/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 5070e00ad..000000000
Binary files a/src/en/manhuasnet/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuasnet/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/manhuasnet/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index ba89ede44..000000000
Binary files a/src/en/manhuasnet/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhuasnet/src/eu/kanade/tachiyomi/extension/en/manhuasnet/Manhuasnet.kt b/src/en/manhuasnet/src/eu/kanade/tachiyomi/extension/en/manhuasnet/Manhuasnet.kt
deleted file mode 100644
index c29ceaa3e..000000000
--- a/src/en/manhuasnet/src/eu/kanade/tachiyomi/extension/en/manhuasnet/Manhuasnet.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.manhuasnet
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class Manhuasnet : Madara("Manhua Mix", "https://manhuamix.com", "en") {
- override val id = 4574243309965401439
-}
diff --git a/src/en/manhwa2read/build.gradle b/src/en/manhwa2read/build.gradle
deleted file mode 100644
index 63001ff07..000000000
--- a/src/en/manhwa2read/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Manhwa2Read'
- extClass = '.Manhwa2Read'
- themePkg = 'madara'
- baseUrl = 'https://manhwa2read.com'
- overrideVersionCode = 0
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/manhwa2read/res/mipmap-hdpi/ic_launcher.png b/src/en/manhwa2read/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 98e209fce..000000000
Binary files a/src/en/manhwa2read/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa2read/res/mipmap-mdpi/ic_launcher.png b/src/en/manhwa2read/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index b99e0beb6..000000000
Binary files a/src/en/manhwa2read/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa2read/res/mipmap-xhdpi/ic_launcher.png b/src/en/manhwa2read/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index afa675f20..000000000
Binary files a/src/en/manhwa2read/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa2read/res/mipmap-xxhdpi/ic_launcher.png b/src/en/manhwa2read/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 01ed05c3b..000000000
Binary files a/src/en/manhwa2read/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa2read/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/manhwa2read/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 71ef3de1c..000000000
Binary files a/src/en/manhwa2read/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa2read/src/eu/kanade/tachiyomi/extension/en/manhwa2read/Manhwa2Read.kt b/src/en/manhwa2read/src/eu/kanade/tachiyomi/extension/en/manhwa2read/Manhwa2Read.kt
deleted file mode 100644
index d8f4989db..000000000
--- a/src/en/manhwa2read/src/eu/kanade/tachiyomi/extension/en/manhwa2read/Manhwa2Read.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.manhwa2read
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class Manhwa2Read : Madara("Manhwa2Read", "https://manhwa2read.com", "en") {
- override val useNewChapterEndpoint = true
-}
diff --git a/src/en/manhwa365/build.gradle b/src/en/manhwa365/build.gradle
deleted file mode 100644
index a4766556b..000000000
--- a/src/en/manhwa365/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'Manhwa365'
- extClass = '.Manhwa365'
- themePkg = 'madara'
- baseUrl = 'https://manhwa365.com'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/manhwa365/res/mipmap-hdpi/ic_launcher.png b/src/en/manhwa365/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 38c9d6645..000000000
Binary files a/src/en/manhwa365/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa365/res/mipmap-mdpi/ic_launcher.png b/src/en/manhwa365/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index ecc97b000..000000000
Binary files a/src/en/manhwa365/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa365/res/mipmap-xhdpi/ic_launcher.png b/src/en/manhwa365/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 3a8586d89..000000000
Binary files a/src/en/manhwa365/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa365/res/mipmap-xxhdpi/ic_launcher.png b/src/en/manhwa365/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 61f06dbf3..000000000
Binary files a/src/en/manhwa365/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa365/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/manhwa365/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 84d10abb5..000000000
Binary files a/src/en/manhwa365/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwa365/src/eu/kanade/tachiyomi/extension/en/manhwa365/Manhwa365.kt b/src/en/manhwa365/src/eu/kanade/tachiyomi/extension/en/manhwa365/Manhwa365.kt
deleted file mode 100644
index 89c480d72..000000000
--- a/src/en/manhwa365/src/eu/kanade/tachiyomi/extension/en/manhwa365/Manhwa365.kt
+++ /dev/null
@@ -1,12 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.manhwa365
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import java.text.SimpleDateFormat
-import java.util.Locale
-
-class Manhwa365 : Madara(
- "Manhwa365",
- "https://manhwa365.com",
- "en",
- dateFormat = SimpleDateFormat("MMM d, yyyy", Locale.US),
-)
diff --git a/src/en/manhwalover/build.gradle b/src/en/manhwalover/build.gradle
deleted file mode 100644
index 28b3dffa6..000000000
--- a/src/en/manhwalover/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'Manhwa Lover'
- extClass = '.ManhwaLover'
- themePkg = 'mangathemesia'
- baseUrl = 'https://manhwalover.com'
- overrideVersionCode = 1
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/manhwalover/res/mipmap-hdpi/ic_launcher.png b/src/en/manhwalover/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 119471add..000000000
Binary files a/src/en/manhwalover/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwalover/res/mipmap-mdpi/ic_launcher.png b/src/en/manhwalover/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 00f49209f..000000000
Binary files a/src/en/manhwalover/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwalover/res/mipmap-xhdpi/ic_launcher.png b/src/en/manhwalover/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index d1276ea81..000000000
Binary files a/src/en/manhwalover/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwalover/res/mipmap-xxhdpi/ic_launcher.png b/src/en/manhwalover/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 0515c1fba..000000000
Binary files a/src/en/manhwalover/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwalover/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/manhwalover/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 135b31bae..000000000
Binary files a/src/en/manhwalover/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/manhwalover/src/eu/kanade/tachiyomi/extension/en/manhwalover/ManhwaLover.kt b/src/en/manhwalover/src/eu/kanade/tachiyomi/extension/en/manhwalover/ManhwaLover.kt
deleted file mode 100644
index 03e446d5a..000000000
--- a/src/en/manhwalover/src/eu/kanade/tachiyomi/extension/en/manhwalover/ManhwaLover.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.manhwalover
-
-import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
-
-class ManhwaLover : MangaThemesia("Manhwa Lover", "https://manhwalover.com", "en")
diff --git a/src/en/nekoscan/build.gradle b/src/en/nekoscan/build.gradle
deleted file mode 100644
index d87e1e496..000000000
--- a/src/en/nekoscan/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'NekoScan'
- extClass = '.NekoScan'
- themePkg = 'madara'
- baseUrl = 'https://nekoscan.com'
- overrideVersionCode = 2
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/nekoscan/res/mipmap-hdpi/ic_launcher.png b/src/en/nekoscan/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 7b7a106bb..000000000
Binary files a/src/en/nekoscan/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/nekoscan/res/mipmap-mdpi/ic_launcher.png b/src/en/nekoscan/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 0de62c2b4..000000000
Binary files a/src/en/nekoscan/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/nekoscan/res/mipmap-xhdpi/ic_launcher.png b/src/en/nekoscan/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index ae3604a18..000000000
Binary files a/src/en/nekoscan/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/nekoscan/res/mipmap-xxhdpi/ic_launcher.png b/src/en/nekoscan/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index fbf232c65..000000000
Binary files a/src/en/nekoscan/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/nekoscan/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/nekoscan/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 891973078..000000000
Binary files a/src/en/nekoscan/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/nekoscan/src/eu/kanade/tachiyomi/extension/en/nekoscan/NekoScan.kt b/src/en/nekoscan/src/eu/kanade/tachiyomi/extension/en/nekoscan/NekoScan.kt
deleted file mode 100644
index ac951724a..000000000
--- a/src/en/nekoscan/src/eu/kanade/tachiyomi/extension/en/nekoscan/NekoScan.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.nekoscan
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class NekoScan : Madara("NekoScan", "https://nekoscan.com", "en")
diff --git a/src/en/onlymanhwa/build.gradle b/src/en/onlymanhwa/build.gradle
deleted file mode 100644
index b2dcfd97b..000000000
--- a/src/en/onlymanhwa/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'OnlyManhwa'
- extClass = '.OnlyManhwa'
- themePkg = 'madara'
- baseUrl = 'https://onlymanhwa.org'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/onlymanhwa/src/eu/kanade/tachiyomi/extension/en/onlymanhwa/OnlyManhwa.kt b/src/en/onlymanhwa/src/eu/kanade/tachiyomi/extension/en/onlymanhwa/OnlyManhwa.kt
deleted file mode 100644
index f91a64d35..000000000
--- a/src/en/onlymanhwa/src/eu/kanade/tachiyomi/extension/en/onlymanhwa/OnlyManhwa.kt
+++ /dev/null
@@ -1,16 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.onlymanhwa
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import java.text.SimpleDateFormat
-import java.util.Locale
-
-class OnlyManhwa : Madara(
- "OnlyManhwa",
- "https://onlymanhwa.org",
- "en",
- dateFormat = SimpleDateFormat("d 'de' MMMM 'de' yyyy", Locale.ENGLISH),
-) {
- override val useNewChapterEndpoint = true
- override val mangaSubString = "manhwa"
- override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Status) + div.summary-content"
-}
diff --git a/src/en/pornwha/build.gradle b/src/en/pornwha/build.gradle
deleted file mode 100644
index 468a230f3..000000000
--- a/src/en/pornwha/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'Pornwha'
- extClass = '.Pornwha'
- themePkg = 'madara'
- baseUrl = 'https://pornwha.com'
- overrideVersionCode = 1
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/pornwha/res/mipmap-hdpi/ic_launcher.png b/src/en/pornwha/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 1a5c104c1..000000000
Binary files a/src/en/pornwha/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/pornwha/res/mipmap-mdpi/ic_launcher.png b/src/en/pornwha/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 0f04f48fa..000000000
Binary files a/src/en/pornwha/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/pornwha/res/mipmap-xhdpi/ic_launcher.png b/src/en/pornwha/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index fd392a2b5..000000000
Binary files a/src/en/pornwha/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/pornwha/res/mipmap-xxhdpi/ic_launcher.png b/src/en/pornwha/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 29a6dd8e9..000000000
Binary files a/src/en/pornwha/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/pornwha/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/pornwha/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 979797d8f..000000000
Binary files a/src/en/pornwha/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/pornwha/src/eu/kanade/tachiyomi/extension/en/pornwha/Pornwha.kt b/src/en/pornwha/src/eu/kanade/tachiyomi/extension/en/pornwha/Pornwha.kt
deleted file mode 100644
index 008d16ac7..000000000
--- a/src/en/pornwha/src/eu/kanade/tachiyomi/extension/en/pornwha/Pornwha.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.pornwha
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class Pornwha : Madara("Pornwha", "https://pornwha.com", "en")
diff --git a/src/en/shieldmanga/build.gradle b/src/en/shieldmanga/build.gradle
deleted file mode 100644
index 358ca936a..000000000
--- a/src/en/shieldmanga/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Shield Manga'
- extClass = '.ShieldManga'
- themePkg = 'madara'
- baseUrl = 'https://shieldmanga.io'
- overrideVersionCode = 3
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/shieldmanga/res/mipmap-hdpi/ic_launcher.png b/src/en/shieldmanga/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index a4a4ba5b8..000000000
Binary files a/src/en/shieldmanga/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/shieldmanga/res/mipmap-mdpi/ic_launcher.png b/src/en/shieldmanga/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 07362ffd9..000000000
Binary files a/src/en/shieldmanga/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/shieldmanga/res/mipmap-xhdpi/ic_launcher.png b/src/en/shieldmanga/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 91036ee80..000000000
Binary files a/src/en/shieldmanga/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/shieldmanga/res/mipmap-xxhdpi/ic_launcher.png b/src/en/shieldmanga/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 0c2e92c05..000000000
Binary files a/src/en/shieldmanga/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/shieldmanga/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/shieldmanga/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 4a8b7e763..000000000
Binary files a/src/en/shieldmanga/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/shieldmanga/src/eu/kanade/tachiyomi/extension/en/shieldmanga/ShieldManga.kt b/src/en/shieldmanga/src/eu/kanade/tachiyomi/extension/en/shieldmanga/ShieldManga.kt
deleted file mode 100644
index e33716ae3..000000000
--- a/src/en/shieldmanga/src/eu/kanade/tachiyomi/extension/en/shieldmanga/ShieldManga.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.shieldmanga
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import eu.kanade.tachiyomi.network.interceptor.rateLimit
-import okhttp3.OkHttpClient
-
-class ShieldManga : Madara("Shield Manga", "https://shieldmanga.io", "en") {
-
- override val client: OkHttpClient = super.client.newBuilder()
- .rateLimit(1)
- .build()
-
- // The website does not flag the content.
- override val filterNonMangaItems = false
-
- override fun chapterListSelector() = "li.wp-manga-hapter, .version-chap li"
-}
diff --git a/src/en/skymangaxyz/build.gradle b/src/en/skymangaxyz/build.gradle
deleted file mode 100644
index aca4ab6b6..000000000
--- a/src/en/skymangaxyz/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'SkyManga.xyz'
- extClass = '.SkyMangaXyz'
- themePkg = 'madara'
- baseUrl = 'https://skymanga.xyz'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/skymangaxyz/res/mipmap-hdpi/ic_launcher.png b/src/en/skymangaxyz/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index c30fb00bc..000000000
Binary files a/src/en/skymangaxyz/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/skymangaxyz/res/mipmap-mdpi/ic_launcher.png b/src/en/skymangaxyz/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 241fd875d..000000000
Binary files a/src/en/skymangaxyz/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/skymangaxyz/res/mipmap-xhdpi/ic_launcher.png b/src/en/skymangaxyz/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 12206912b..000000000
Binary files a/src/en/skymangaxyz/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/skymangaxyz/res/mipmap-xxhdpi/ic_launcher.png b/src/en/skymangaxyz/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index d0d1d10a1..000000000
Binary files a/src/en/skymangaxyz/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/skymangaxyz/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/skymangaxyz/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index de68b0d04..000000000
Binary files a/src/en/skymangaxyz/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/skymangaxyz/src/eu/kanade/tachiyomi/extension/en/skymangaxyz/SkyMangaXyz.kt b/src/en/skymangaxyz/src/eu/kanade/tachiyomi/extension/en/skymangaxyz/SkyMangaXyz.kt
deleted file mode 100644
index 0b5afebfb..000000000
--- a/src/en/skymangaxyz/src/eu/kanade/tachiyomi/extension/en/skymangaxyz/SkyMangaXyz.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.skymangaxyz
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class SkyMangaXyz : Madara("SkyManga.xyz", "https://skymanga.xyz", "en") {
- override val useNewChapterEndpoint = true
-}
diff --git a/src/en/theapolloteam/build.gradle b/src/en/theapolloteam/build.gradle
deleted file mode 100644
index f1dffe1e7..000000000
--- a/src/en/theapolloteam/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'The Apollo Team'
- extClass = '.TheApolloTeam'
- themePkg = 'mangathemesia'
- baseUrl = 'https://theapollo.team'
- overrideVersionCode = 0
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/theapolloteam/res/mipmap-hdpi/ic_launcher.png b/src/en/theapolloteam/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 6abf150cc..000000000
Binary files a/src/en/theapolloteam/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/theapolloteam/res/mipmap-mdpi/ic_launcher.png b/src/en/theapolloteam/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 6e19252ea..000000000
Binary files a/src/en/theapolloteam/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/theapolloteam/res/mipmap-xhdpi/ic_launcher.png b/src/en/theapolloteam/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 5a6b86ad1..000000000
Binary files a/src/en/theapolloteam/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/theapolloteam/res/mipmap-xxhdpi/ic_launcher.png b/src/en/theapolloteam/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 274df94fb..000000000
Binary files a/src/en/theapolloteam/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/theapolloteam/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/theapolloteam/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 2aa07ed35..000000000
Binary files a/src/en/theapolloteam/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/theapolloteam/src/eu/kanade/tachiyomi/extension/en/theapolloteam/TheApolloTeam.kt b/src/en/theapolloteam/src/eu/kanade/tachiyomi/extension/en/theapolloteam/TheApolloTeam.kt
deleted file mode 100644
index 43640ad76..000000000
--- a/src/en/theapolloteam/src/eu/kanade/tachiyomi/extension/en/theapolloteam/TheApolloTeam.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.theapolloteam
-
-import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
-
-class TheApolloTeam : MangaThemesia("The Apollo Team", "https://theapollo.team", "en")
diff --git a/src/en/wakamics/build.gradle b/src/en/wakamics/build.gradle
deleted file mode 100644
index 2f12421b2..000000000
--- a/src/en/wakamics/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Wakamics'
- extClass = '.Wakamics'
- themePkg = 'madara'
- baseUrl = 'https://wakamics.net'
- overrideVersionCode = 0
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/wakamics/res/mipmap-hdpi/ic_launcher.png b/src/en/wakamics/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 893d8d1f2..000000000
Binary files a/src/en/wakamics/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/wakamics/res/mipmap-mdpi/ic_launcher.png b/src/en/wakamics/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 8fb4d6bd1..000000000
Binary files a/src/en/wakamics/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/wakamics/res/mipmap-xhdpi/ic_launcher.png b/src/en/wakamics/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index fcfea716e..000000000
Binary files a/src/en/wakamics/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/wakamics/res/mipmap-xxhdpi/ic_launcher.png b/src/en/wakamics/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index d277b6d8a..000000000
Binary files a/src/en/wakamics/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/wakamics/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/wakamics/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index f4583fc7d..000000000
Binary files a/src/en/wakamics/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/wakamics/src/eu/kanade/tachiyomi/extension/en/wakamics/Wakamics.kt b/src/en/wakamics/src/eu/kanade/tachiyomi/extension/en/wakamics/Wakamics.kt
deleted file mode 100644
index 2935d5543..000000000
--- a/src/en/wakamics/src/eu/kanade/tachiyomi/extension/en/wakamics/Wakamics.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.wakamics
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class Wakamics : Madara("Wakamics", "https://wakamics.net", "en")
diff --git a/src/en/webtoonily/build.gradle b/src/en/webtoonily/build.gradle
deleted file mode 100644
index 8a70684c8..000000000
--- a/src/en/webtoonily/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'WebToonily'
- extClass = '.WebToonily'
- themePkg = 'madara'
- baseUrl = 'https://webtoonily.com'
- overrideVersionCode = 1
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/webtoonily/res/mipmap-hdpi/ic_launcher.png b/src/en/webtoonily/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index db6cd48e7..000000000
Binary files a/src/en/webtoonily/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/webtoonily/res/mipmap-mdpi/ic_launcher.png b/src/en/webtoonily/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index ba78b2fde..000000000
Binary files a/src/en/webtoonily/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/webtoonily/res/mipmap-xhdpi/ic_launcher.png b/src/en/webtoonily/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index d576015a7..000000000
Binary files a/src/en/webtoonily/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/webtoonily/res/mipmap-xxhdpi/ic_launcher.png b/src/en/webtoonily/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index ba41bb57b..000000000
Binary files a/src/en/webtoonily/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/webtoonily/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/webtoonily/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 9eefdbe27..000000000
Binary files a/src/en/webtoonily/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/webtoonily/src/eu/kanade/tachiyomi/extension/en/webtoonily/WebToonily.kt b/src/en/webtoonily/src/eu/kanade/tachiyomi/extension/en/webtoonily/WebToonily.kt
deleted file mode 100644
index 2e9c5cec6..000000000
--- a/src/en/webtoonily/src/eu/kanade/tachiyomi/extension/en/webtoonily/WebToonily.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.webtoonily
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-
-class WebToonily : Madara("WebToonily", "https://webtoonily.com", "en")
diff --git a/src/en/yaoihentai/build.gradle b/src/en/yaoihentai/build.gradle
deleted file mode 100644
index 4c03a58ec..000000000
--- a/src/en/yaoihentai/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'Yaoi Hentai'
- extClass = '.YaoiHentai'
- themePkg = 'madara'
- baseUrl = 'https://yaoihentai.me'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/yaoihentai/res/mipmap-hdpi/ic_launcher.png b/src/en/yaoihentai/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index db59b938e..000000000
Binary files a/src/en/yaoihentai/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoihentai/res/mipmap-mdpi/ic_launcher.png b/src/en/yaoihentai/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index e5575b748..000000000
Binary files a/src/en/yaoihentai/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoihentai/res/mipmap-xhdpi/ic_launcher.png b/src/en/yaoihentai/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 4465c5a32..000000000
Binary files a/src/en/yaoihentai/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoihentai/res/mipmap-xxhdpi/ic_launcher.png b/src/en/yaoihentai/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index a1d2ac483..000000000
Binary files a/src/en/yaoihentai/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoihentai/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/yaoihentai/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 884af880b..000000000
Binary files a/src/en/yaoihentai/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoihentai/src/eu/kanade/tachiyomi/extension/en/yaoihentai/YaoiHentai.kt b/src/en/yaoihentai/src/eu/kanade/tachiyomi/extension/en/yaoihentai/YaoiHentai.kt
deleted file mode 100644
index a47350c72..000000000
--- a/src/en/yaoihentai/src/eu/kanade/tachiyomi/extension/en/yaoihentai/YaoiHentai.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.yaoihentai
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import java.text.SimpleDateFormat
-import java.util.Locale
-
-class YaoiHentai : Madara("Yaoi Hentai", "https://yaoihentai.me", "en", dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale.US))
diff --git a/src/en/yaoimanga/build.gradle b/src/en/yaoimanga/build.gradle
deleted file mode 100644
index 4a05da9eb..000000000
--- a/src/en/yaoimanga/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'Yaoi.mobi'
- extClass = '.YaoiManga'
- themePkg = 'madara'
- baseUrl = 'https://yaoi.mobi'
- overrideVersionCode = 4
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/en/yaoimanga/res/mipmap-hdpi/ic_launcher.png b/src/en/yaoimanga/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index ce1a5a1df..000000000
Binary files a/src/en/yaoimanga/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoimanga/res/mipmap-mdpi/ic_launcher.png b/src/en/yaoimanga/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 29dfd4b0f..000000000
Binary files a/src/en/yaoimanga/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoimanga/res/mipmap-xhdpi/ic_launcher.png b/src/en/yaoimanga/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index ee271a18a..000000000
Binary files a/src/en/yaoimanga/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoimanga/res/mipmap-xxhdpi/ic_launcher.png b/src/en/yaoimanga/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index f108ff6f4..000000000
Binary files a/src/en/yaoimanga/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoimanga/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/yaoimanga/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 8a5167d7b..000000000
Binary files a/src/en/yaoimanga/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/en/yaoimanga/src/eu/kanade/tachiyomi/extension/en/yaoimanga/YaoiManga.kt b/src/en/yaoimanga/src/eu/kanade/tachiyomi/extension/en/yaoimanga/YaoiManga.kt
deleted file mode 100644
index c9081c185..000000000
--- a/src/en/yaoimanga/src/eu/kanade/tachiyomi/extension/en/yaoimanga/YaoiManga.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package eu.kanade.tachiyomi.extension.en.yaoimanga
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import eu.kanade.tachiyomi.network.interceptor.rateLimit
-import okhttp3.OkHttpClient
-import java.util.concurrent.TimeUnit
-
-class YaoiManga : Madara("Yaoi.mobi", "https://yaoi.mobi", "en") {
-
- override val client: OkHttpClient = super.client.newBuilder()
- .rateLimit(1, 1, TimeUnit.SECONDS)
- .build()
-}
diff --git a/src/id/komikmanhwa/build.gradle b/src/id/komikmanhwa/build.gradle
deleted file mode 100644
index 993546c40..000000000
--- a/src/id/komikmanhwa/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'KomikManhwa'
- extClass = '.KomikManhwa'
- themePkg = 'mangathemesia'
- baseUrl = 'https://komikmanhwa.me'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/id/komikmanhwa/res/mipmap-hdpi/ic_launcher.png b/src/id/komikmanhwa/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index b340c07ef..000000000
Binary files a/src/id/komikmanhwa/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/id/komikmanhwa/res/mipmap-mdpi/ic_launcher.png b/src/id/komikmanhwa/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 19ae9ba22..000000000
Binary files a/src/id/komikmanhwa/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/id/komikmanhwa/res/mipmap-xhdpi/ic_launcher.png b/src/id/komikmanhwa/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index ef89ed6a7..000000000
Binary files a/src/id/komikmanhwa/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/id/komikmanhwa/res/mipmap-xxhdpi/ic_launcher.png b/src/id/komikmanhwa/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index f520a1dea..000000000
Binary files a/src/id/komikmanhwa/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/id/komikmanhwa/res/mipmap-xxxhdpi/ic_launcher.png b/src/id/komikmanhwa/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 953260274..000000000
Binary files a/src/id/komikmanhwa/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/id/komikmanhwa/src/eu/kanade/tachiyomi/extension/id/komikmanhwa/KomikManhwa.kt b/src/id/komikmanhwa/src/eu/kanade/tachiyomi/extension/id/komikmanhwa/KomikManhwa.kt
deleted file mode 100644
index bfd0fc6e1..000000000
--- a/src/id/komikmanhwa/src/eu/kanade/tachiyomi/extension/id/komikmanhwa/KomikManhwa.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package eu.kanade.tachiyomi.extension.id.komikmanhwa
-
-import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
-import eu.kanade.tachiyomi.network.interceptor.rateLimit
-import okhttp3.OkHttpClient
-
-class KomikManhwa : MangaThemesia("KomikManhwa", "https://komikmanhwa.me", "id", "/series") {
- override val client: OkHttpClient = super.client.newBuilder()
- .rateLimit(4)
- .build()
-}
diff --git a/src/it/shavelproiection/build.gradle b/src/it/shavelproiection/build.gradle
deleted file mode 100644
index 670858d07..000000000
--- a/src/it/shavelproiection/build.gradle
+++ /dev/null
@@ -1,10 +0,0 @@
-ext {
- extName = 'ShavelProiection'
- extClass = '.ShavelProiection'
- themePkg = 'madara'
- baseUrl = 'https://www.shavelproiection.com'
- overrideVersionCode = 0
- isNsfw = true
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/it/shavelproiection/res/mipmap-hdpi/ic_launcher.png b/src/it/shavelproiection/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 883d6a018..000000000
Binary files a/src/it/shavelproiection/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/it/shavelproiection/res/mipmap-mdpi/ic_launcher.png b/src/it/shavelproiection/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 6526d896b..000000000
Binary files a/src/it/shavelproiection/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/it/shavelproiection/res/mipmap-xhdpi/ic_launcher.png b/src/it/shavelproiection/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 010eb6af6..000000000
Binary files a/src/it/shavelproiection/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/it/shavelproiection/res/mipmap-xxhdpi/ic_launcher.png b/src/it/shavelproiection/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 43decf6c4..000000000
Binary files a/src/it/shavelproiection/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/it/shavelproiection/res/mipmap-xxxhdpi/ic_launcher.png b/src/it/shavelproiection/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 28407396f..000000000
Binary files a/src/it/shavelproiection/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/it/shavelproiection/src/eu/kanade/tachiyomi/extension/it/shavelproiection/ShavelProiection.kt b/src/it/shavelproiection/src/eu/kanade/tachiyomi/extension/it/shavelproiection/ShavelProiection.kt
deleted file mode 100644
index fe224dd96..000000000
--- a/src/it/shavelproiection/src/eu/kanade/tachiyomi/extension/it/shavelproiection/ShavelProiection.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.it.shavelproiection
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import java.text.SimpleDateFormat
-import java.util.Locale
-
-class ShavelProiection : Madara("ShavelProiection", "https://www.shavelproiection.com", "it", dateFormat = SimpleDateFormat("d MMM yyy", Locale("it")))
diff --git a/src/tr/clovermanga/build.gradle b/src/tr/clovermanga/build.gradle
deleted file mode 100644
index 26968a26d..000000000
--- a/src/tr/clovermanga/build.gradle
+++ /dev/null
@@ -1,9 +0,0 @@
-ext {
- extName = 'Clover Manga'
- extClass = '.CloverManga'
- themePkg = 'madara'
- baseUrl = 'https://clover-manga.com'
- overrideVersionCode = 2
-}
-
-apply from: "$rootDir/common.gradle"
diff --git a/src/tr/clovermanga/res/mipmap-hdpi/ic_launcher.png b/src/tr/clovermanga/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 5f8c7ed1f..000000000
Binary files a/src/tr/clovermanga/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src/tr/clovermanga/res/mipmap-mdpi/ic_launcher.png b/src/tr/clovermanga/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 421a9aba8..000000000
Binary files a/src/tr/clovermanga/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src/tr/clovermanga/res/mipmap-xhdpi/ic_launcher.png b/src/tr/clovermanga/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 3e875f20a..000000000
Binary files a/src/tr/clovermanga/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/tr/clovermanga/res/mipmap-xxhdpi/ic_launcher.png b/src/tr/clovermanga/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 3a48d001c..000000000
Binary files a/src/tr/clovermanga/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/tr/clovermanga/res/mipmap-xxxhdpi/ic_launcher.png b/src/tr/clovermanga/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 30ac89fcb..000000000
Binary files a/src/tr/clovermanga/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src/tr/clovermanga/src/eu/kanade/tachiyomi/extension/tr/clovermanga/CloverManga.kt b/src/tr/clovermanga/src/eu/kanade/tachiyomi/extension/tr/clovermanga/CloverManga.kt
deleted file mode 100644
index f71792297..000000000
--- a/src/tr/clovermanga/src/eu/kanade/tachiyomi/extension/tr/clovermanga/CloverManga.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package eu.kanade.tachiyomi.extension.tr.clovermanga
-
-import eu.kanade.tachiyomi.multisrc.madara.Madara
-import java.text.SimpleDateFormat
-import java.util.Locale
-
-class CloverManga : Madara("Clover Manga", "https://clover-manga.com", "tr", SimpleDateFormat("MMMM dd, yyyy", Locale("tr")))