diff --git a/src/id/sheamanga/build.gradle b/src/id/sheamanga/build.gradle deleted file mode 100644 index 93a851688..000000000 --- a/src/id/sheamanga/build.gradle +++ /dev/null @@ -1,9 +0,0 @@ -ext { - extName = 'Shea Manga' - extClass = '.SheaManga' - themePkg = 'mangathemesia' - baseUrl = 'https://sheakomik.com' - overrideVersionCode = 4 -} - -apply from: "$rootDir/common.gradle" diff --git a/src/id/sheamanga/res/mipmap-hdpi/ic_launcher.png b/src/id/sheamanga/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index 4b7509ab4..000000000 Binary files a/src/id/sheamanga/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/src/id/sheamanga/res/mipmap-mdpi/ic_launcher.png b/src/id/sheamanga/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 397427742..000000000 Binary files a/src/id/sheamanga/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/src/id/sheamanga/res/mipmap-xhdpi/ic_launcher.png b/src/id/sheamanga/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 74db56150..000000000 Binary files a/src/id/sheamanga/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/src/id/sheamanga/res/mipmap-xxhdpi/ic_launcher.png b/src/id/sheamanga/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 0184cbf4c..000000000 Binary files a/src/id/sheamanga/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/id/sheamanga/res/mipmap-xxxhdpi/ic_launcher.png b/src/id/sheamanga/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 69e0368cf..000000000 Binary files a/src/id/sheamanga/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/src/id/sheamanga/src/eu/kanade/tachiyomi/extension/id/sheamanga/SheaManga.kt b/src/id/sheamanga/src/eu/kanade/tachiyomi/extension/id/sheamanga/SheaManga.kt deleted file mode 100644 index 70b8b4676..000000000 --- a/src/id/sheamanga/src/eu/kanade/tachiyomi/extension/id/sheamanga/SheaManga.kt +++ /dev/null @@ -1,23 +0,0 @@ -package eu.kanade.tachiyomi.extension.id.sheamanga - -import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia -import eu.kanade.tachiyomi.network.interceptor.rateLimit -import okhttp3.Dns -import okhttp3.OkHttpClient -import java.text.SimpleDateFormat -import java.util.Locale - -class SheaManga : MangaThemesia( - "Shea Manga", - "https://sheakomik.com", - "id", - dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale.forLanguageTag("id")), -) { - - override val client: OkHttpClient = super.client.newBuilder() - .rateLimit(4) - .dns(Dns.SYSTEM) - .build() - - override val hasProjectPage = true -}