diff --git a/src/pt/mangalivre/build.gradle b/src/pt/mangalivre/build.gradle deleted file mode 100644 index 34af04a79..000000000 --- a/src/pt/mangalivre/build.gradle +++ /dev/null @@ -1,12 +0,0 @@ -apply plugin: 'com.android.application' -apply plugin: 'kotlin-android' - -ext { - appName = 'Tachiyomi: Mangá Livre' - pkgNameSuffix = 'pt.mangalivre' - extClass = '.MangaLivre' - extVersionCode = 4 - libVersion = '1.2' -} - -apply from: "$rootDir/common.gradle" diff --git a/src/pt/mangalivre/res/mipmap-hdpi/ic_launcher.png b/src/pt/mangalivre/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index 45cd9ebfd..000000000 Binary files a/src/pt/mangalivre/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/mangalivre/res/mipmap-mdpi/ic_launcher.png b/src/pt/mangalivre/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index b119ba6e5..000000000 Binary files a/src/pt/mangalivre/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/mangalivre/res/mipmap-xhdpi/ic_launcher.png b/src/pt/mangalivre/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 07ce22188..000000000 Binary files a/src/pt/mangalivre/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/mangalivre/res/mipmap-xxhdpi/ic_launcher.png b/src/pt/mangalivre/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index ac31a8514..000000000 Binary files a/src/pt/mangalivre/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/mangalivre/res/mipmap-xxxhdpi/ic_launcher.png b/src/pt/mangalivre/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 3c3e7d9c5..000000000 Binary files a/src/pt/mangalivre/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/pt/mangalivre/res/web_hi_res_512.png b/src/pt/mangalivre/res/web_hi_res_512.png deleted file mode 100644 index 7e1857fb3..000000000 Binary files a/src/pt/mangalivre/res/web_hi_res_512.png and /dev/null differ diff --git a/src/pt/mangalivre/src/eu/kanade/tachiyomi/extension/pt/mangalivre/MangaLivre.kt b/src/pt/mangalivre/src/eu/kanade/tachiyomi/extension/pt/mangalivre/MangaLivre.kt deleted file mode 100644 index dc6694c9f..000000000 --- a/src/pt/mangalivre/src/eu/kanade/tachiyomi/extension/pt/mangalivre/MangaLivre.kt +++ /dev/null @@ -1,31 +0,0 @@ -package eu.kanade.tachiyomi.extension.pt.mangalivre - -import eu.kanade.tachiyomi.source.model.* -import eu.kanade.tachiyomi.source.online.HttpSource -import okhttp3.Response -import java.lang.Exception - -class MangaLivre : HttpSource() { - override val name = "MangaLivre" - - override val baseUrl = "https://mangalivre.com" - - override val lang = "pt" - - override val supportsLatest = true - - override fun popularMangaRequest(page: Int) = throw Exception(NEED_MIGRATION) - override fun popularMangaParse(response: Response) = throw Exception(NEED_MIGRATION) - override fun latestUpdatesRequest(page: Int) = throw Exception(NEED_MIGRATION) - override fun latestUpdatesParse(response: Response) = throw Exception(NEED_MIGRATION) - override fun searchMangaRequest(page: Int, query: String, filters: FilterList) = throw Exception(NEED_MIGRATION) - override fun searchMangaParse(response: Response) = throw Exception(NEED_MIGRATION) - override fun mangaDetailsParse(response: Response) = throw Exception(NEED_MIGRATION) - override fun chapterListParse(response: Response) = throw Exception(NEED_MIGRATION) - override fun pageListParse(response: Response) = throw Exception(NEED_MIGRATION) - override fun imageUrlParse(response: Response) = throw Exception(NEED_MIGRATION) - - companion object { - private const val NEED_MIGRATION = "Catálogo incorporado na nova versão da extensão mangásPROJECT." - } -}