diff --git a/src/id/ichiromanga/build.gradle b/src/id/ichiromanga/build.gradle new file mode 100644 index 000000000..07a71b5b6 --- /dev/null +++ b/src/id/ichiromanga/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'IchiroManga' + extClass = '.IchiroManga' + themePkg = 'mangathemesia' + baseUrl = 'https://ichiromanga.my.id' + overrideVersionCode = 0 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/id/ichiromanga/res/mipmap-hdpi/ic_launcher.png b/src/id/ichiromanga/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..0a6a71231 Binary files /dev/null and b/src/id/ichiromanga/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/id/ichiromanga/res/mipmap-mdpi/ic_launcher.png b/src/id/ichiromanga/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..870f9c646 Binary files /dev/null and b/src/id/ichiromanga/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/id/ichiromanga/res/mipmap-xhdpi/ic_launcher.png b/src/id/ichiromanga/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..2ee992253 Binary files /dev/null and b/src/id/ichiromanga/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/id/ichiromanga/res/mipmap-xxhdpi/ic_launcher.png b/src/id/ichiromanga/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..3343114f1 Binary files /dev/null and b/src/id/ichiromanga/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/id/ichiromanga/res/mipmap-xxxhdpi/ic_launcher.png b/src/id/ichiromanga/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..56654bbad Binary files /dev/null and b/src/id/ichiromanga/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/id/ichiromanga/src/eu/kanade/tachiyomi/extension/id/ichiromanga/IchiroManga.kt b/src/id/ichiromanga/src/eu/kanade/tachiyomi/extension/id/ichiromanga/IchiroManga.kt new file mode 100644 index 000000000..1d189bae5 --- /dev/null +++ b/src/id/ichiromanga/src/eu/kanade/tachiyomi/extension/id/ichiromanga/IchiroManga.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.id.ichiromanga + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import eu.kanade.tachiyomi.network.interceptor.rateLimit +import okhttp3.OkHttpClient + +class IchiroManga : MangaThemesia("IchiroManga", "https://ichiromanga.my.id", "id") { + + override val client: OkHttpClient = super.client.newBuilder() + .rateLimit(4) + .build() + + override val hasProjectPage = false +}