diff --git a/src/en/manga1k/build.gradle b/src/en/manga1k/build.gradle new file mode 100644 index 000000000..cdd170a5b --- /dev/null +++ b/src/en/manga1k/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Manga1k' + extClass = '.Manga1k' + themePkg = 'madara' + baseUrl = 'https://manga1k.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/en/manga1k/res/mipmap-hdpi/ic_launcher.png b/src/en/manga1k/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..c1e755c21 Binary files /dev/null and b/src/en/manga1k/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/en/manga1k/res/mipmap-mdpi/ic_launcher.png b/src/en/manga1k/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..558cd0987 Binary files /dev/null and b/src/en/manga1k/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/en/manga1k/res/mipmap-xhdpi/ic_launcher.png b/src/en/manga1k/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..ef063f300 Binary files /dev/null and b/src/en/manga1k/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/en/manga1k/res/mipmap-xxhdpi/ic_launcher.png b/src/en/manga1k/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..e517b52c6 Binary files /dev/null and b/src/en/manga1k/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/en/manga1k/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/manga1k/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..bfecd5fae Binary files /dev/null and b/src/en/manga1k/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/en/manga1k/src/eu/kanade/tachiyomi/extension/en/manga1k/Manga1k.kt b/src/en/manga1k/src/eu/kanade/tachiyomi/extension/en/manga1k/Manga1k.kt new file mode 100644 index 000000000..b73fb7fde --- /dev/null +++ b/src/en/manga1k/src/eu/kanade/tachiyomi/extension/en/manga1k/Manga1k.kt @@ -0,0 +1,12 @@ +package eu.kanade.tachiyomi.extension.en.manga1k + +import eu.kanade.tachiyomi.multisrc.madara.Madara + +class Manga1k : Madara( + "Manga1k", + "https://manga1k.com", + "en", +) { + override val useLoadMoreRequest = LoadMoreStrategy.Never + override val useNewChapterEndpoint = false +}