diff --git a/src/vi/ruahapchanhday/build.gradle b/src/vi/ruahapchanhday/build.gradle new file mode 100644 index 000000000..e61ba9e47 --- /dev/null +++ b/src/vi/ruahapchanhday/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Rua Hap Chanh Day' + extClass = '.RuaHapChanhDay' + themePkg = 'madara' + baseUrl = 'https://ruahapchanhday.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/vi/ruahapchanhday/res/mipmap-hdpi/ic_launcher.png b/src/vi/ruahapchanhday/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..bd71f16ed Binary files /dev/null and b/src/vi/ruahapchanhday/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/vi/ruahapchanhday/res/mipmap-mdpi/ic_launcher.png b/src/vi/ruahapchanhday/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..3690827a7 Binary files /dev/null and b/src/vi/ruahapchanhday/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/vi/ruahapchanhday/res/mipmap-xhdpi/ic_launcher.png b/src/vi/ruahapchanhday/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..6e6f161c4 Binary files /dev/null and b/src/vi/ruahapchanhday/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/vi/ruahapchanhday/res/mipmap-xxhdpi/ic_launcher.png b/src/vi/ruahapchanhday/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..bc18c876d Binary files /dev/null and b/src/vi/ruahapchanhday/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/vi/ruahapchanhday/res/mipmap-xxxhdpi/ic_launcher.png b/src/vi/ruahapchanhday/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..d82453ffa Binary files /dev/null and b/src/vi/ruahapchanhday/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/vi/ruahapchanhday/src/eu/kanade/tachiyomi/extension/vi/ruahapchanhday/RuaHapChanhDay.kt b/src/vi/ruahapchanhday/src/eu/kanade/tachiyomi/extension/vi/ruahapchanhday/RuaHapChanhDay.kt new file mode 100644 index 000000000..1cfd0a587 --- /dev/null +++ b/src/vi/ruahapchanhday/src/eu/kanade/tachiyomi/extension/vi/ruahapchanhday/RuaHapChanhDay.kt @@ -0,0 +1,16 @@ +package eu.kanade.tachiyomi.extension.vi.ruahapchanhday + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class RuaHapChanhDay : Madara( + "Rua Hap Chanh Day", + "https://ruahapchanhday.com", + "vi", + SimpleDateFormat("dd/MM/yyyy", Locale.ROOT), +) { + override val useNewChapterEndpoint = true + + override val useLoadMoreRequest = LoadMoreStrategy.Always +}