diff --git a/src/pt/lichmangas/build.gradle b/src/pt/lichmangas/build.gradle new file mode 100644 index 000000000..beff38445 --- /dev/null +++ b/src/pt/lichmangas/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Lich Mangas' + extClass = '.LichMangas' + themePkg = 'madara' + baseUrl = 'https://lichmangas.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/pt/lichmangas/res/mipmap-hdpi/ic_launcher.png b/src/pt/lichmangas/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..20acea3f0 Binary files /dev/null and b/src/pt/lichmangas/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/pt/lichmangas/res/mipmap-mdpi/ic_launcher.png b/src/pt/lichmangas/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..30651dbed Binary files /dev/null and b/src/pt/lichmangas/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/pt/lichmangas/res/mipmap-xhdpi/ic_launcher.png b/src/pt/lichmangas/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..f3dc7618d Binary files /dev/null and b/src/pt/lichmangas/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/pt/lichmangas/res/mipmap-xxhdpi/ic_launcher.png b/src/pt/lichmangas/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..a3df9a12e Binary files /dev/null and b/src/pt/lichmangas/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/pt/lichmangas/res/mipmap-xxxhdpi/ic_launcher.png b/src/pt/lichmangas/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..6212b922b Binary files /dev/null and b/src/pt/lichmangas/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/pt/lichmangas/src/eu/kanade/tachiyomi/extension/pt/lichmangas/LichMangas.kt b/src/pt/lichmangas/src/eu/kanade/tachiyomi/extension/pt/lichmangas/LichMangas.kt new file mode 100644 index 000000000..8992b1236 --- /dev/null +++ b/src/pt/lichmangas/src/eu/kanade/tachiyomi/extension/pt/lichmangas/LichMangas.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.pt.lichmangas + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class LichMangas : Madara( + "Lich Mangas", + "https://lichmangas.com", + "pt-BR", + dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale.ROOT), +) { + override val useNewChapterEndpoint = true +}