diff --git a/src/en/mangaclick/build.gradle b/src/en/mangaclick/build.gradle new file mode 100644 index 000000000..2dcc20aed --- /dev/null +++ b/src/en/mangaclick/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'MangaClick' + extClass = '.MangaClick' + themePkg = 'madara' + baseUrl = 'https://mangaclick.org' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/en/mangaclick/res/mipmap-hdpi/ic_launcher.png b/src/en/mangaclick/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..d15064df8 Binary files /dev/null and b/src/en/mangaclick/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/en/mangaclick/res/mipmap-mdpi/ic_launcher.png b/src/en/mangaclick/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..032f8ff53 Binary files /dev/null and b/src/en/mangaclick/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/en/mangaclick/res/mipmap-xhdpi/ic_launcher.png b/src/en/mangaclick/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..a9c9f64bd Binary files /dev/null and b/src/en/mangaclick/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/en/mangaclick/res/mipmap-xxhdpi/ic_launcher.png b/src/en/mangaclick/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..5da5d6d1b Binary files /dev/null and b/src/en/mangaclick/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/en/mangaclick/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/mangaclick/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..f73b782cf Binary files /dev/null and b/src/en/mangaclick/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/en/mangaclick/src/eu/kanade/tachiyomi/extension/en/mangaclick/MangaClick.kt b/src/en/mangaclick/src/eu/kanade/tachiyomi/extension/en/mangaclick/MangaClick.kt new file mode 100644 index 000000000..3feb6feb9 --- /dev/null +++ b/src/en/mangaclick/src/eu/kanade/tachiyomi/extension/en/mangaclick/MangaClick.kt @@ -0,0 +1,12 @@ +package eu.kanade.tachiyomi.extension.en.mangaclick + +import eu.kanade.tachiyomi.multisrc.madara.Madara + +class MangaClick : Madara( + "MangaClick", + "https://mangaclick.org", + "en", +) { + override val useLoadMoreRequest = LoadMoreStrategy.Always + override val useNewChapterEndpoint = false +}