├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 01_report_issue.yml │ ├── 02_request_source.yml │ ├── 03_report_url_change.yml │ ├── 04_report_dead_source.yml │ ├── 05_request_feature.yml │ ├── 06_request_meta.yml │ ├── 07_request_removal.yml │ └── config.yml ├── always_build.json ├── dependabot.yml ├── pull_request_template.md ├── readme-images │ └── app-icon.png ├── renovate.json ├── scripts │ ├── bump-versions.py │ ├── create-repo.py │ ├── generate-build-matrices.py │ ├── merge-repo.py │ └── move-built-apks.py └── workflows │ ├── auto_merge_upstream.yml │ ├── build_pull_request.yml │ ├── build_push.yml │ ├── codeberg_mirror.yml │ ├── delete_merged_branch.yml │ ├── issue_moderator.yml │ └── lock.yml ├── .gitignore ├── .idea └── icon.png ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── common.gradle ├── core ├── AndroidManifest.xml ├── build.gradle.kts └── src │ └── main │ ├── kotlin │ └── extensions │ │ └── utils │ │ ├── Collections.kt │ │ ├── Date.kt │ │ ├── Json.kt │ │ ├── Network.kt │ │ ├── Preferences.kt │ │ ├── Source.kt │ │ └── Url.kt │ └── res │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ └── mipmap-xxxhdpi │ └── ic_launcher.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ktlintCodeStyle.xml ├── lib-multisrc ├── anilist │ ├── build.gradle.kts │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── multisrc │ │ └── anilist │ │ ├── AniListAnimeHttpSource.kt │ │ ├── AniListFilters.kt │ │ ├── AniListRequest.kt │ │ └── AniListResponse.kt ├── animestream │ ├── AndroidManifest.xml │ ├── build.gradle.kts │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── multisrc │ │ └── animestream │ │ ├── AnimeStream.kt │ │ ├── AnimeStreamFilters.kt │ │ └── AnimeStreamUrlActivity.kt ├── datalifeengine │ ├── build.gradle.kts │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── multisrc │ │ └── datalifeengine │ │ └── DataLifeEngine.kt ├── dooplay │ ├── AndroidManifest.xml │ ├── build.gradle.kts │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── multisrc │ │ └── dooplay │ │ ├── DooPlay.kt │ │ └── DooPlayUrlActivity.kt ├── dopeflix │ ├── build.gradle.kts │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── multisrc │ │ └── dopeflix │ │ ├── DopeFlix.kt │ │ ├── DopeFlixFilters.kt │ │ └── dto │ │ └── DopeFlixDto.kt ├── wcotheme │ ├── build.gradle.kts │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── multisrc │ │ └── wcotheme │ │ ├── Filters.kt │ │ └── WcoTheme.kt └── zorotheme │ ├── build.gradle.kts │ └── src │ └── eu │ └── kanade │ └── tachiyomi │ └── multisrc │ └── zorotheme │ ├── ZoroTheme.kt │ ├── ZoroThemeFilters.kt │ └── dto │ └── ZoroThemeDto.kt ├── lib ├── amazon-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── amazonextractor │ │ └── AmazonExtractor.kt ├── bangumi-scraper │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── bangumiscraper │ │ ├── BangumiDTO.kt │ │ ├── BangumiScraper.kt │ │ └── BangumiScraperException.kt ├── blogger-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── bloggerextractor │ │ └── BloggerExtractor.kt ├── burstcloud-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── burstcloudextractor │ │ ├── BurstCloudExtractor.kt │ │ └── BurstCloudExtractorDto.kt ├── buzzheavier-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── buzzheavierextractor │ │ └── BuzzheavierExtractor.kt ├── cda-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── cdaextractor │ │ └── CdaExtractor.kt ├── chillx-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── chillxextractor │ │ ├── ChillxExtractor.kt │ │ └── WebViewResolver.kt ├── cloudflare-interceptor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── cloudflareinterceptor │ │ └── CloudflareInterceptor.kt ├── cryptoaes │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── cryptoaes │ │ ├── CryptoAES.kt │ │ └── Deobfuscator.kt ├── dailymotion-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── dailymotionextractor │ │ ├── DailymotionDto.kt │ │ └── DailymotionExtractor.kt ├── dataimage │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── dataimage │ │ └── DataImageInterceptor.kt ├── dood-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── doodextractor │ │ └── DoodExtractor.kt ├── dopeflix-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── dopeflixextractor │ │ └── DopeFlixExtractor.kt ├── fastream-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── fastreamextractor │ │ └── FastreamExtractor.kt ├── filemoon-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── filemoonextractor │ │ └── FilemoonExtractor.kt ├── fireplayer-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── fireplayerextractor │ │ └── FireplayerExtractor.kt ├── fusevideo-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── fusevideoextractor │ │ └── FusevideoExtractor.kt ├── gdriveplayer-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── gdriveplayerextractor │ │ └── GdrivePlayerExtractor.kt ├── gogostream-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── gogostreamextractor │ │ ├── GogoStreamExtractor.kt │ │ └── GogoStreamExtractorDto.kt ├── goodstream-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── goodstramextractor │ │ └── GoodStreamExtractor.kt ├── googledrive-episodes │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── googledriveepisodes │ │ └── GoogleDriveEpisodes.kt ├── googledrive-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── googledriveextractor │ │ └── GoogleDriveExtractor.kt ├── i18n │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── i18n │ │ └── Intl.kt ├── javcoverfetcher │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── javcoverfetcher │ │ └── JavCoverFetcher.kt ├── lulu-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── luluextractor │ │ └── LuluExtractor.kt ├── lycoris-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── lycorisextractor │ │ └── LycorisExtractor.kt ├── megacloud-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── megacloudextractor │ │ └── MegaCloudExtractor.kt ├── mixdrop-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── mixdropextractor │ │ └── MixDropExtractor.kt ├── mp4upload-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── mp4uploadextractor │ │ └── Mp4uploadExtractor.kt ├── okru-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── okruextractor │ │ └── OkruExtractor.kt ├── playlist-utils │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── playlistutils │ │ └── PlaylistUtils.kt ├── rapidcloud-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── assets │ │ ├── crypto-js.js │ │ ├── megacloud.decodedpng.js │ │ └── megacloud.getsrcs.js │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── rapidcloudextractor │ │ ├── RapidCloudExtractor.kt │ │ └── WebViewResolver.kt ├── savefile-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── savefileextractor │ │ └── SavefileExtractor.kt ├── sendvid-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── sendvidextractor │ │ └── SendvidExtractor.kt ├── sibnet-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── sibnetextractor │ │ └── SibnetExtractor.kt ├── streamdav-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── streamdavextractor │ │ └── StreamDavExtractor.kt ├── streamhidevid-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── streamhidevidextractor │ │ └── StreamHideVidExtractor.kt ├── streamhub-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── streamhubextractor │ │ └── StreamHubExtractor.kt ├── streamlare-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── streamlareextractor │ │ └── StreamlareExtractor.kt ├── streamsilk-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── streamsilkextractor │ │ ├── JsHunter.kt │ │ └── StreamSilkExtractor.kt ├── streamtape-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── streamtapeextractor │ │ └── StreamTapeExtractor.kt ├── streamvid-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── streamvidextractor │ │ └── StreamVidExtractor.kt ├── streamwish-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── streamwishextractor │ │ └── StreamWishExtractor.kt ├── synchrony │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── assets │ │ └── synchrony-v2.4.5.1.js │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── synchrony │ │ └── Deobfuscator.kt ├── universal-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── universalextractor │ │ └── UniversalExtractor.kt ├── unpacker │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── unpacker │ │ ├── SubstringExtractor.kt │ │ └── Unpacker.kt ├── upstream-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── upstreamextractor │ │ └── UpstreamExtractor.kt ├── uqload-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── uqloadextractor │ │ └── UqloadExtractor.kt ├── vidbom-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── vidbomextractor │ │ └── VidBomExtractor.kt ├── vidguard-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── vidguardextractor │ │ └── VidGuardExtractor.kt ├── vidhide-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── vidhideextractor │ │ ├── JsUnpacker.kt │ │ └── VidHideExtractor.kt ├── vidmoly-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── vidmolyextractor │ │ └── VidMolyExtractor.kt ├── vido-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── vidoextractor │ │ └── VidoExtractor.kt ├── vidsrc-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── vidsrcextractor │ │ └── VidSrcExtractor.kt ├── vk-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── vkextractor │ │ └── VkExtractor.kt ├── voe-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── voeextractor │ │ ├── DdosGuardInterceptor.kt │ │ └── VoeExtractor.kt ├── vudeo-extractor │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── vudeoextractor │ │ └── VudeoExtractor.kt └── yourupload-extractor │ ├── build.gradle.kts │ └── src │ └── main │ └── java │ └── eu │ └── kanade │ └── tachiyomi │ └── lib │ └── youruploadextractor │ └── YourUploadExtractor.kt ├── settings.gradle.kts ├── src ├── all │ ├── animeonsen │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── animeonsen │ │ │ ├── AOAPIInterceptor.kt │ │ │ ├── AnimeOnsen.kt │ │ │ └── dto │ │ │ └── AnimeOnsenDto.kt │ ├── animeworldindia │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── animeworldindia │ │ │ ├── AnimeWorldIndia.kt │ │ │ ├── AnimeWorldIndiaFactory.kt │ │ │ ├── AnimeWorldIndiaFilters.kt │ │ │ └── MyStreamExtractor.kt │ ├── animexin │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── animexin │ │ │ ├── AnimeXin.kt │ │ │ └── extractors │ │ │ ├── VidstreamingExtractor.kt │ │ │ └── YouTubeExtractor.kt │ ├── anizone │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── anizone │ │ │ ├── AniZone.kt │ │ │ └── LivewireDto.kt │ ├── chineseanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── chineseanime │ │ │ ├── ChineseAnime.kt │ │ │ └── extractors │ │ │ └── VatchusExtractor.kt │ ├── debridindex │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── debridindex │ │ │ ├── DebirdIndexUrlActivity.kt │ │ │ ├── DebridIndex.kt │ │ │ └── dto │ │ │ └── DebridIndexDto.kt │ ├── googledrive │ │ ├── README.md │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── googledrive │ │ │ ├── GoogleDrive.kt │ │ │ ├── GoogleDriveDto.kt │ │ │ └── GoogleDriveMultiFormReqs.kt │ ├── googledriveindex │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── googledriveindex │ │ │ ├── GoogleDriveIndex.kt │ │ │ └── GoogleDriveIndexDto.kt │ ├── hentaitorrent │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── hentaitorrent │ │ │ ├── HentaiTorrent.kt │ │ │ └── HentaiTorrentUrlActivity.kt │ ├── jable │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── jable │ │ │ ├── Jable.kt │ │ │ ├── JableFactory.kt │ │ │ ├── JableFilters.kt │ │ │ └── JableIntl.kt │ ├── javgg │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── javgg │ │ │ └── Javgg.kt │ ├── javguru │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── javguru │ │ │ ├── JavGuru.kt │ │ │ ├── JavGuruFilters.kt │ │ │ ├── JavGuruUrlActivity.kt │ │ │ └── extractors │ │ │ ├── EmTurboExtractor.kt │ │ │ └── MaxStreamExtractor.kt │ ├── jellyfin │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── jellyfin │ │ │ ├── Jellyfin.kt │ │ │ ├── JellyfinFactory.kt │ │ │ ├── Utils.kt │ │ │ └── dto │ │ │ ├── ItemDto.kt │ │ │ ├── ItemType.kt │ │ │ ├── LoginDto.kt │ │ │ ├── MediaLibraryDto.kt │ │ │ └── PlaybackInfoDto.kt │ ├── lmanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── lmanime │ │ │ └── LMAnime.kt │ ├── missav │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── missav │ │ │ ├── MissAV.kt │ │ │ ├── MissAVFilters.kt │ │ │ ├── MissAvApi.kt │ │ │ └── MissAvDtoModels.kt │ ├── myreadingmanga │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── myreadingmanga │ │ │ ├── MyReadingManga.kt │ │ │ └── MyReadingMangaFactory.kt │ ├── newgrounds │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── newgrounds │ │ │ ├── DateUtils.kt │ │ │ ├── NewGrounds.kt │ │ │ └── NewGroundsFilters.kt │ ├── nyaatorrent │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── nyaatorrent │ │ │ ├── NyaaFactory.kt │ │ │ ├── NyaaTorrent.kt │ │ │ └── NyaaTorrentUrlActivity.kt │ ├── ptorrent │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── ptorrent │ │ │ ├── PTorrent.kt │ │ │ └── PTorrentUrlActivity.kt │ ├── rouvideo │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── i18n │ │ │ │ ├── messages_en.properties │ │ │ │ ├── messages_vi.properties │ │ │ │ └── messages_zh.properties │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── rouvideo │ │ │ ├── RouVideo.kt │ │ │ ├── RouVideoDto.kt │ │ │ ├── RouVideoFactory.kt │ │ │ ├── RouVideoFilter.kt │ │ │ └── RouVideoUrlActivity.kt │ ├── shabakatycinemana │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── shabakatycinemana │ │ │ └── ShabakatyCinemana.kt │ ├── streamingcommunity │ │ ├── assets │ │ │ └── i18n │ │ │ │ ├── messages_en.properties │ │ │ │ └── messages_it.properties │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── streamingcommunity │ │ │ ├── Dto.kt │ │ │ ├── Filters.kt │ │ │ ├── StreamingCommunity.kt │ │ │ └── StreamingCommunityFactory.kt │ ├── stremio │ │ ├── README.md │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── stremio │ │ │ ├── Dto.kt │ │ │ ├── Stremio.kt │ │ │ ├── Utils.kt │ │ │ └── addon │ │ │ ├── AddonManager.kt │ │ │ └── dto │ │ │ ├── AddonDto.kt │ │ │ ├── CatalogDto.kt │ │ │ └── ResourceDto.kt │ ├── subsplease │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── subsplease │ │ │ └── Subsplease.kt │ ├── sudatchi │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── sudatchi │ │ │ ├── Sudatchi.kt │ │ │ ├── SudatchiFilters.kt │ │ │ ├── SudatchiUrlActivity.kt │ │ │ └── dto │ │ │ └── SudatchiDto.kt │ ├── supjav │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── supjav │ │ │ ├── SupJav.kt │ │ │ ├── SupJavFactory.kt │ │ │ └── SupJavUrlActivity.kt │ ├── torrentio │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── torrentio │ │ │ ├── Torrentio.kt │ │ │ ├── TorrentioUrlActivity.kt │ │ │ └── dto │ │ │ └── TorrentioDto.kt │ ├── torrentioanime │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── torrentioanime │ │ │ ├── AniListFilters.kt │ │ │ ├── AniListQueries.kt │ │ │ ├── Torrentio.kt │ │ │ ├── TorrentioUrlActivity.kt │ │ │ └── dto │ │ │ ├── AniZipDto.kt │ │ │ └── TorrentioDto.kt │ ├── xnxx │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── all │ │ │ └── xnxx │ │ │ └── Xnxx.kt │ └── xvideos │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.jpg │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.jpg │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.jpg │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.jpg │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.jpg │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── all │ │ └── xvideos │ │ └── Xvideos.kt ├── ar │ ├── anime4up │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── anime4up │ │ │ ├── Anime4Up.kt │ │ │ ├── Anime4UpFilters.kt │ │ │ └── extractors │ │ │ ├── SharedExtractor.kt │ │ │ └── VidYardExtractor.kt │ ├── animeblkom │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── animeblkom │ │ │ └── AnimeBlkom.kt │ ├── animeiat │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── animeiat │ │ │ ├── Animeiat.kt │ │ │ └── dto │ │ │ └── AnimeiatDto.kt │ ├── animelek │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── animelek │ │ │ ├── AnimeLek.kt │ │ │ └── extractors │ │ │ └── SharedExtractor.kt │ ├── animerco │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── animerco │ │ │ ├── Animerco.kt │ │ │ └── extractors │ │ │ └── SharedExtractor.kt │ ├── arabanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── arabanime │ │ │ ├── ArabAnime.kt │ │ │ └── dto │ │ │ └── ArabAnimeDto.kt │ ├── arabseed │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── arabseed │ │ │ └── ArabSeed.kt │ ├── asia2tv │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── asia2tv │ │ │ └── Asia2TV.kt │ ├── cimaleek │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── cimaleek │ │ │ ├── Cimaleek.kt │ │ │ └── interceptor │ │ │ └── WebViewResolver.kt │ ├── egydead │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── egydead │ │ │ └── EgyDead.kt │ ├── faselhd │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── faselhd │ │ │ └── FASELHD.kt │ ├── mycima │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── mycima │ │ │ ├── MyCima.kt │ │ │ └── extractors │ │ │ └── GoVadExtractor.kt │ ├── okanime │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ar │ │ │ └── okanime │ │ │ ├── Okanime.kt │ │ │ └── OkanimeUrlActivity.kt │ └── witanime │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── ar │ │ └── witanime │ │ ├── WitAnime.kt │ │ └── extractors │ │ ├── SharedExtractor.kt │ │ └── SoraPlayExtractor.kt ├── de │ ├── animebase │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── animebase │ │ │ ├── AnimeBase.kt │ │ │ ├── AnimeBaseFilters.kt │ │ │ └── extractors │ │ │ └── UnpackerExtractor.kt │ ├── animeloads │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── animeloads │ │ │ ├── AnimeLoads.kt │ │ │ └── DdosGuardInterceptor.kt │ ├── animestream │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── animestream │ │ │ ├── AnimeStream.kt │ │ │ └── extractors │ │ │ └── MetaExtractor.kt │ ├── animetoast │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── animetoast │ │ │ └── AnimeToast.kt │ ├── aniworld │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── aniworld │ │ │ ├── AWConstants.kt │ │ │ ├── AniWorld.kt │ │ │ ├── DdosGuardInterceptor.kt │ │ │ └── extractors │ │ │ └── VidozaExtractor.kt │ ├── cinemathek │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── cinemathek │ │ │ └── Cinemathek.kt │ ├── einfach │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── einfach │ │ │ ├── Einfach.kt │ │ │ ├── EinfachUrlActivity.kt │ │ │ └── extractors │ │ │ ├── MyStreamExtractor.kt │ │ │ ├── UnpackerExtractor.kt │ │ │ └── VidozaExtractor.kt │ ├── filmpalast │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── filmpalast │ │ │ ├── FilmPalast.kt │ │ │ └── extractors │ │ │ ├── EvoloadExtractor.kt │ │ │ ├── JsUnpacker.kt │ │ │ ├── StreamHideVidExtractor.kt │ │ │ └── UpstreamExtractor.kt │ ├── kinoking │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── kinoking │ │ │ └── Kinoking.kt │ ├── kool │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── kool │ │ │ ├── Kool.kt │ │ │ └── extractors │ │ │ ├── JsUnpacker.kt │ │ │ └── VidozaExtractor.kt │ ├── moflixstream │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── moflixstream │ │ │ ├── MoflixStream.kt │ │ │ ├── dto │ │ │ └── MoflixStreamDto.kt │ │ │ └── extractors │ │ │ └── UnpackerExtractor.kt │ ├── movie4k │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── de │ │ │ └── movie4k │ │ │ ├── Movie4k.kt │ │ │ └── extractors │ │ │ ├── StreamZExtractor.kt │ │ │ └── VidozaExtractor.kt │ └── serienstream │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── de │ │ └── serienstream │ │ ├── DdosGuardInterceptor.kt │ │ ├── SConstants.kt │ │ └── Serienstream.kt ├── en │ ├── allanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── allanime │ │ │ ├── AllAnime.kt │ │ │ ├── AllAnimeDto.kt │ │ │ ├── AllAnimeFilters.kt │ │ │ ├── AllAnimeQueries.kt │ │ │ └── extractors │ │ │ └── AllAnimeExtractor.kt │ ├── allanimechi │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── allanimechi │ │ │ ├── AllAnimeChi.kt │ │ │ ├── AllAnimeChiDto.kt │ │ │ ├── AllAnimeChiFilters.kt │ │ │ └── extractors │ │ │ ├── AllAnimeExtractor.kt │ │ │ └── InternalExtractor.kt │ ├── anilist │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── anilist │ │ │ ├── AniList.kt │ │ │ ├── CoverProviders.kt │ │ │ ├── Dto.kt │ │ │ ├── Filters.kt │ │ │ ├── Queries.kt │ │ │ └── Utils.kt │ ├── animegg │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── animegg │ │ │ └── AnimeGG.kt │ ├── animekai │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── animekai │ │ │ ├── AnimeKai.kt │ │ │ ├── AnimeKaiDto.kt │ │ │ ├── AnimeKaiFilters.kt │ │ │ └── MegaUpExtractor.kt │ ├── animekhor │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── animekhor │ │ │ ├── AnimeKhor.kt │ │ │ └── extractors │ │ │ ├── AnimeABCExtractor.kt │ │ │ └── StreamHideExtractor.kt │ ├── animenosub │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── animenosub │ │ │ ├── Animenosub.kt │ │ │ └── extractors │ │ │ ├── VidMolyExtractor.kt │ │ │ ├── VtubeExtractor.kt │ │ │ └── WolfstreamExtractor.kt │ ├── animepahe │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── animepahe │ │ │ ├── AnimePahe.kt │ │ │ ├── DdosGuardInterceptor.kt │ │ │ ├── Filters.kt │ │ │ ├── KwikExtractor.kt │ │ │ └── dto │ │ │ └── AnimePaheDto.kt │ ├── animeparadise │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── animeparadise │ │ │ ├── AnimeParadise.kt │ │ │ └── AnimeParadiseDto.kt │ ├── animetake │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── animetake │ │ │ ├── AnimeTake.kt │ │ │ └── AnimeTakeFilters.kt │ ├── aniplay │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── aniplay │ │ │ ├── AniPlay.kt │ │ │ └── AniPlayDto.kt │ ├── aniwatch │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── aniwatch │ │ │ └── AniWatchtv.kt │ ├── aniwavese │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── aniwavese │ │ │ ├── AniwaveSe.kt │ │ │ ├── AniwaveSeDto.kt │ │ │ ├── AniwaveSeFilters.kt │ │ │ └── AniwaveSeUtils.kt │ ├── asiaflix │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── asiaflix │ │ │ ├── AsiaFlix.kt │ │ │ └── dto │ │ │ ├── DetailsResponseDto.kt │ │ │ ├── EpisodeResponseDto.kt │ │ │ ├── SearchResponseDto.kt │ │ │ └── VideoResponseDto.kt │ ├── bestdubbedanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── bestdubbedanime │ │ │ └── BestDubbedAnime.kt │ ├── blzone │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── blzone │ │ │ └── BLZone.kt │ ├── donghuastream │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── donghuastream │ │ │ ├── DonghuaStream.kt │ │ │ └── extractors │ │ │ └── StreamPlayExtractor.kt │ ├── dopebox │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── dopebox │ │ │ └── DopeBox.kt │ ├── dopeflix │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── dopeflix │ │ │ └── DopeFlix.kt │ ├── dramafull │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── dramafull │ │ │ ├── DramaFull.kt │ │ │ ├── DramaFullDto.kt │ │ │ └── DramaFullFilters.kt │ ├── edytjedhgmdhm │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── edytjedhgmdhm │ │ │ └── Edytjedhgmdhm.kt │ ├── hahomoe │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── hahomoe │ │ │ ├── HahoMoe.kt │ │ │ └── HahoMoeFilters.kt │ ├── hanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── hanime │ │ │ ├── DataModel.kt │ │ │ └── Hanime.kt │ ├── hentaimama │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── hentaimama │ │ │ └── HentaiMama.kt │ ├── hexawatch │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── hexawatch │ │ │ ├── HexaWatch.kt │ │ │ ├── HexaWatchDto.kt │ │ │ └── HexaWatchFilters.kt │ ├── hstream │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── hstream │ │ │ ├── Hstream.kt │ │ │ ├── HstreamFilters.kt │ │ │ └── HstreamUrlActivity.kt │ ├── jpfilms │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── jpfilms │ │ │ └── JPFilms.kt │ ├── kaido │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── kaido │ │ │ └── Kaido.kt │ ├── kawaiifu │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── kawaiifu │ │ │ ├── Kawaiifu.kt │ │ │ └── KawaiifuFilters.kt │ ├── kayoanime │ │ ├── README.md │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── kayoanime │ │ │ ├── DriveIndexExtractor.kt │ │ │ └── Kayoanime.kt │ ├── kickassanime │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── kickassanime │ │ │ ├── KickAssAnime.kt │ │ │ ├── KickAssAnimeFilters.kt │ │ │ ├── KickAssAnimeUrlActivity.kt │ │ │ ├── dto │ │ │ └── KickAssAnimeDto.kt │ │ │ └── extractors │ │ │ └── KickAssAnimeExtractor.kt │ ├── kimoitv │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── kimoitv │ │ │ └── KimoiTV.kt │ ├── kissanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── kissanime │ │ │ ├── KissAnime.kt │ │ │ ├── KissAnimeFilters.kt │ │ │ └── extractors │ │ │ └── VodstreamExtractor.kt │ ├── kisskh │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── kisskh │ │ │ ├── KissKH.kt │ │ │ └── SubDecryptor.kt │ ├── luciferdonghua │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── luciferdonghua │ │ │ └── LuciferDonghua.kt │ ├── moviesmod │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── moviesmod │ │ │ ├── MoviesMod.kt │ │ │ └── RedirectorBypasser.kt │ ├── myanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── myanime │ │ │ ├── Myanime.kt │ │ │ └── extractors │ │ │ └── YouTubeExtractor.kt │ ├── myrunningman │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── myrunningman │ │ │ ├── MyRunningMan.kt │ │ │ └── MyRunningManUrlActivity.kt │ ├── nineanimetv │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── nineanimetv │ │ │ └── NineAnimeTv.kt │ ├── noobsubs │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── noobsubs │ │ │ └── NoobSubs.kt │ ├── oppaistream │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── oppaistream │ │ │ ├── OppaiStream.kt │ │ │ ├── OppaiStreamFilters.kt │ │ │ └── dto │ │ │ └── OppaiStreamDto.kt │ ├── pinoymoviepedia │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.webp │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.webp │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.webp │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.webp │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.webp │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── pinoymoviepedia │ │ │ ├── PinoyMoviePedia.kt │ │ │ └── PinoyMoviePediaFilters.kt │ ├── putlocker │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── putlocker │ │ │ ├── CryptoAES.kt │ │ │ ├── JSONUtil.kt │ │ │ ├── PutLocker.kt │ │ │ ├── PutLockerDto.kt │ │ │ └── extractors │ │ │ └── PutServerExtractor.kt │ ├── rule34video │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── rule34video │ │ │ ├── DdosGuardInterceptor.kt │ │ │ ├── Rule34Video.kt │ │ │ └── Rule34VideoUrlActivity.kt │ ├── sflix │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── sflix │ │ │ └── SFlix.kt │ ├── superstream │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── superstream │ │ │ ├── DataModel.kt │ │ │ ├── SuperStream.kt │ │ │ └── SuperStreamAPI.kt │ ├── tokuzilla │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── tokuzilla │ │ │ └── Tokuzilla.kt │ ├── uhdmovies │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── uhdmovies │ │ │ ├── RedirectorBypasser.kt │ │ │ └── UHDMovies.kt │ ├── uniquestream │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── uniquestream │ │ │ └── UniqueStream.kt │ ├── wcoanimedub │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── wcoanimedub │ │ │ └── WcoAnimeDub.kt │ ├── wcoanimesub │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── wcoanimesub │ │ │ └── WcoAnimeSub.kt │ ├── wcoforever │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── wcoforever │ │ │ └── WcoForever.kt │ ├── wcofun │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── wcofun │ │ │ └── Wcofun.kt │ ├── wcostream │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── wcostream │ │ │ └── WCOStream.kt │ ├── wcotv │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── wcotv │ │ │ └── WcoTv.kt │ ├── xprime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── xprime │ │ │ ├── XPrime.kt │ │ │ ├── XPrimeDto.kt │ │ │ └── XPrimeFilters.kt │ ├── yflix │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── en │ │ │ └── yflix │ │ │ ├── RapidShareExtractor.kt │ │ │ ├── YFlix.kt │ │ │ ├── YFlixDto.kt │ │ │ └── YFlixFilters.kt │ └── zoro │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── en │ │ └── zoro │ │ └── HiAnime.kt ├── es │ ├── animebum │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animebum │ │ │ └── AnimeBum.kt │ ├── animefenix │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animefenix │ │ │ ├── AnimeFenixFilters.kt │ │ │ └── Animefenix.kt │ ├── animeflv │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animeflv │ │ │ ├── AnimeFlv.kt │ │ │ └── AnimeFlvFilters.kt │ ├── animeid │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animeid │ │ │ └── AnimeID.kt │ ├── animejl │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animejl │ │ │ ├── Animejl.kt │ │ │ └── AnimejlFilters.kt │ ├── animelatinohd │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animelatinohd │ │ │ ├── AnimeLatinoHD.kt │ │ │ └── extractors │ │ │ ├── JsUnpacker.kt │ │ │ └── SolidFilesExtractor.kt │ ├── animemovil │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animemovil │ │ │ └── AnimeMovil.kt │ ├── animenix │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animenix │ │ │ ├── Animenix.kt │ │ │ └── AnimenixFilters.kt │ ├── animeonlineninja │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animeonlineninja │ │ │ ├── AnimeOnlineNinja.kt │ │ │ ├── AnimeOnlineNinjaFilters.kt │ │ │ └── VrfInterceptor.kt │ ├── animeyt │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animeyt │ │ │ └── Animeyt.kt │ ├── animeytes │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── animeytes │ │ │ └── AnimeYTES.kt │ ├── asialiveaction │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── asialiveaction │ │ │ └── AsiaLiveAction.kt │ ├── azanimex │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── azanimex │ │ │ ├── Azanimex.kt │ │ │ ├── AzanimexUrlActivity.kt │ │ │ └── Serializable.kt │ ├── beatzanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── beatzanime │ │ │ ├── BeatZAnime.kt │ │ │ └── Filters.kt │ ├── cine24h │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── cine24h │ │ │ └── Cine24h.kt │ ├── cinecalidad │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── cinecalidad │ │ │ └── CineCalidad.kt │ ├── cineplus123 │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── cineplus123 │ │ │ ├── Cineplus123.kt │ │ │ └── Cineplus123Filters.kt │ ├── cuevana │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── cuevana │ │ │ ├── CuevanaCh.kt │ │ │ ├── CuevanaEu.kt │ │ │ ├── CuevanaFactory.kt │ │ │ └── models │ │ │ ├── AnimeEpisodesList.kt │ │ │ └── PopularAnimeList.kt │ ├── detodopeliculas │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── detodopeliculas │ │ │ ├── DeTodoPeliculas.kt │ │ │ └── DeTodoPeliculasFilters.kt │ ├── doramasflix │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── doramasflix │ │ │ ├── DataModel.kt │ │ │ └── Doramasflix.kt │ ├── doramasyt │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── doramasyt │ │ │ ├── Doramasyt.kt │ │ │ ├── DoramasytDto.kt │ │ │ ├── DoramasytFilters.kt │ │ │ └── extractors │ │ │ └── SolidFilesExtractor.kt │ ├── ennovelas │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── ennovelas │ │ │ └── EnNovelas.kt │ ├── estrenosdoramas │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── estrenosdoramas │ │ │ ├── EstrenosDoramas.kt │ │ │ └── EstrenosDoramasFilters.kt │ ├── fanpelis │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── fanpelis │ │ │ └── FanPelis.kt │ ├── flixlatam │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── flixlatam │ │ │ ├── FlixLatam.kt │ │ │ └── FlixLatamFilters.kt │ ├── gnula │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── gnula │ │ │ ├── DataModel.kt │ │ │ └── Gnula.kt │ ├── hackstore │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── hackstore │ │ │ ├── Hackstore.kt │ │ │ └── HackstoreUrlActivity.kt │ ├── hentaijk │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── hentaijk │ │ │ └── Hentaijk.kt │ ├── hentaila │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── hentaila │ │ │ ├── Hentaila.kt │ │ │ ├── HentailaDto.kt │ │ │ └── extractors │ │ │ ├── FireLoadExtractor.kt │ │ │ └── MediaFireExtractor.kt │ ├── hentaitk │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── hentaitk │ │ │ └── Hentaitk.kt │ ├── homecine │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── homecine │ │ │ └── HomeCine.kt │ ├── jkanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── jkanime │ │ │ ├── JkAnimeFilters.kt │ │ │ ├── Jkanime.kt │ │ │ ├── JkanimeDto.kt │ │ │ └── extractors │ │ │ └── JkanimeExtractor.kt │ ├── jkhentai │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── jkhentai │ │ │ ├── Jkhentai.kt │ │ │ └── extractors │ │ │ └── SolidFilesExtractor.kt │ ├── katanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── katanime │ │ │ ├── CryptoAES.kt │ │ │ ├── Katanime.kt │ │ │ ├── KatanimeFilters.kt │ │ │ └── extractors │ │ │ └── UnpackerExtractor.kt │ ├── lacartoons │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── lacartoons │ │ │ └── Lacartoons.kt │ ├── latanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── latanime │ │ │ └── Latanime.kt │ ├── legionanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── legionanime │ │ │ ├── LegionAnime.kt │ │ │ ├── Utils.kt │ │ │ └── extractors │ │ │ ├── JkanimeExtractor.kt │ │ │ └── MediaFireExtractor.kt │ ├── locopelis │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── locopelis │ │ │ └── LocoPelis.kt │ ├── metroseries │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── metroseries │ │ │ └── MetroSeries.kt │ ├── mhdflix │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── mhdflix │ │ │ ├── MhdFlix.kt │ │ │ └── MhdFlixFilters.kt │ ├── monoschinos │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── monoschinos │ │ │ ├── MonosChinos.kt │ │ │ ├── MonosChinosDto.kt │ │ │ ├── MonosChinosFilters.kt │ │ │ └── extractors │ │ │ └── SolidFilesExtractor.kt │ ├── mundodonghua │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── mundodonghua │ │ │ ├── MundoDonghua.kt │ │ │ └── extractors │ │ │ ├── JsUnpacker.kt │ │ │ └── ProteaExtractor.kt │ ├── otakuverso │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── otakuverso │ │ │ ├── Otakuverso.kt │ │ │ ├── OtakuversoFilters.kt │ │ │ └── extractors │ │ │ └── UnpackerExtractor.kt │ ├── pandrama │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── pandrama │ │ │ └── Pandrama.kt │ ├── pelisforte │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── pelisforte │ │ │ └── PelisForte.kt │ ├── pelisplushd │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── pelisplushd │ │ │ ├── Pelisplushd.kt │ │ │ ├── PelisplushdFactory.kt │ │ │ ├── Pelisplusph.kt │ │ │ └── Pelisplusto.kt │ ├── serieskao │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── serieskao │ │ │ └── Serieskao.kt │ ├── sololatino │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── sololatino │ │ │ ├── SoloLatino.kt │ │ │ └── SoloLatinoFilters.kt │ ├── tioanimeh │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── tioanimeh │ │ │ ├── TioAnimeHFilters.kt │ │ │ ├── TioanimeH.kt │ │ │ ├── TioanimeHFactory.kt │ │ │ └── extractors │ │ │ └── VidGuardExtractor.kt │ ├── tiodonghua │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── tiodonghua │ │ │ └── Tiodonghua.kt │ ├── veohentai │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── veohentai │ │ │ └── VeoHentai.kt │ ├── veranimes │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── veranimes │ │ │ ├── VerAnimes.kt │ │ │ └── VerAnimesFilters.kt │ ├── verseriesonline │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── verseriesonline │ │ │ ├── VerSeriesOnline.kt │ │ │ └── VerSeriesOnlineUrlActivity.kt │ ├── zeroanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── es │ │ │ └── zeroanime │ │ │ ├── ZeroAnimeFilters.kt │ │ │ └── Zeroanime.kt │ └── zonaleros │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── es │ │ └── zonaleros │ │ ├── Zonaleros.kt │ │ ├── ZonalerosDto.kt │ │ └── ZonalerosFilters.kt ├── fr │ ├── animesama │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── animesama │ │ │ ├── AnimeSama.kt │ │ │ ├── AnimeSamaFilters.kt │ │ │ └── AnimeSamaUrlActivity.kt │ ├── animevostfr │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── animevostfr │ │ │ ├── AnimeVostFr.kt │ │ │ ├── CloudFlareInterceptor.kt │ │ │ └── extractors │ │ │ └── CdopeExtractor.kt │ ├── anisama │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── anisama │ │ │ ├── AniSama.kt │ │ │ ├── AniSamaFilters.kt │ │ │ ├── AniSamaUrlActivity.kt │ │ │ └── extractors │ │ │ └── VidCdnExtractor.kt │ ├── empirestreaming │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── empirestreaming │ │ │ ├── EmpireStreaming.kt │ │ │ ├── dto │ │ │ └── EmpireStreamingDto.kt │ │ │ └── extractors │ │ │ └── EplayerExtractor.kt │ ├── franime │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── franime │ │ │ ├── FrAnime.kt │ │ │ ├── FrAnimeUrlActivity.kt │ │ │ └── dto │ │ │ └── FrAnimeDto.kt │ ├── frenchanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── frenchanime │ │ │ └── FrenchAnime.kt │ ├── hds │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── hds │ │ │ └── Hds.kt │ ├── jetanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── jetanime │ │ │ ├── JetAnime.kt │ │ │ └── extractors │ │ │ ├── HdsplayExtractor.kt │ │ │ └── SentinelExtractor.kt │ ├── mykdrama │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── mykdrama │ │ │ ├── MyKdrama.kt │ │ │ └── MyKdramaFilters.kt │ ├── otakufr │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── otakufr │ │ │ ├── OtakuFR.kt │ │ │ └── extractors │ │ │ ├── UpstreamExtractor.kt │ │ │ └── VidbmExtractor.kt │ ├── voircartoon │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── voircartoon │ │ │ ├── VoirCartoon.kt │ │ │ ├── VoirCartoonFilters.kt │ │ │ └── extractors │ │ │ └── ComedyShowExtractor.kt │ ├── vostfree │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── fr │ │ │ └── vostfree │ │ │ └── Vostfree.kt │ └── wiflix │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── fr │ │ └── wiflix │ │ └── Wiflix.kt ├── hi │ ├── animesaga │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── hi │ │ │ └── animesaga │ │ │ └── AniSAGA.kt │ └── yomovies │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── hi │ │ └── yomovies │ │ ├── YoMovies.kt │ │ └── extractors │ │ ├── MinoplresExtractor.kt │ │ ├── MovembedExtractor.kt │ │ └── SpeedostreamExtractor.kt ├── id │ ├── animeindo │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── id │ │ │ └── animeindo │ │ │ ├── AnimeIndo.kt │ │ │ └── AnimeIndoFilters.kt │ ├── kuramanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── id │ │ │ └── kuramanime │ │ │ └── Kuramanime.kt │ ├── kuronime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── id │ │ │ └── kuronime │ │ │ ├── Kuronime.kt │ │ │ └── extractors │ │ │ ├── AnimekuExtractor.kt │ │ │ ├── HxFileExtractor.kt │ │ │ └── LinkBoxExtractor.kt │ ├── minioppai │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── id │ │ │ └── minioppai │ │ │ ├── MiniOppai.kt │ │ │ ├── MiniOppaiFilters.kt │ │ │ └── extractors │ │ │ └── MiniOppaiExtractor.kt │ ├── neonime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── id │ │ │ └── neonime │ │ │ ├── NeoNime.kt │ │ │ └── extractors │ │ │ └── LinkBoxExtractor.kt │ ├── nimegami │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── id │ │ │ └── nimegami │ │ │ ├── NimeGami.kt │ │ │ └── NimeGamiUrlActivity.kt │ ├── oploverz │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── id │ │ │ └── oploverz │ │ │ ├── Oploverz.kt │ │ │ └── OploverzFilters.kt │ ├── otakudesu │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── id │ │ │ └── otakudesu │ │ │ └── OtakuDesu.kt │ └── samehadaku │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── id │ │ └── samehadaku │ │ ├── Samehadaku.kt │ │ └── SamehadakuFilters.kt ├── it │ ├── animesaturn │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── it │ │ │ └── animesaturn │ │ │ └── AnimeSaturn.kt │ ├── animeunity │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── it │ │ │ └── animeunity │ │ │ ├── AnimeUnity.kt │ │ │ ├── AnimeUnityDto.kt │ │ │ └── AnimeUnityFilters.kt │ ├── animeworld │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── it │ │ │ └── animeworld │ │ │ ├── ANIMEWORLD.kt │ │ │ └── ShittyRedirectionInterceptor.kt │ ├── aniplay │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── it │ │ │ └── aniplay │ │ │ ├── AniPlay.kt │ │ │ ├── AniPlayFilters.kt │ │ │ ├── AniPlayUrlActivity.kt │ │ │ └── dto │ │ │ └── AniPlayDto.kt │ ├── hentaisaturn │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── it │ │ │ └── hentaisaturn │ │ │ └── HentaiSaturn.kt │ ├── toonitalia │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── it │ │ │ └── toonitalia │ │ │ ├── Toonitalia.kt │ │ │ └── extractors │ │ │ ├── MaxStreamExtractor.kt │ │ │ └── StreamZExtractor.kt │ └── vvvvid │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── it │ │ └── vvvvid │ │ ├── VVVVID.kt │ │ └── VVVVIDDto.kt ├── ko │ └── aniweek │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── ko │ │ └── aniweek │ │ └── Aniweek.kt ├── pl │ ├── desuonline │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pl │ │ │ └── desuonline │ │ │ ├── DesuOnline.kt │ │ │ └── extractors │ │ │ └── CDAExtractor.kt │ ├── docchi │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pl │ │ │ └── docchi │ │ │ └── Docchi.kt │ ├── ogladajanime │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pl │ │ │ └── ogladajanime │ │ │ └── OgladajAnime.kt │ └── wbijam │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── pl │ │ └── wbijam │ │ ├── Wbijam.kt │ │ └── extractors │ │ ├── CdaPlExtractor.kt │ │ └── VkExtractor.kt ├── pt │ ├── animefire │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animefire │ │ │ ├── AFFilters.kt │ │ │ ├── AFUrlActivity.kt │ │ │ ├── AnimeFire.kt │ │ │ ├── dto │ │ │ └── AnimeFireDto.kt │ │ │ └── extractors │ │ │ ├── AnimeFireExtractor.kt │ │ │ └── IframeExtractor.kt │ ├── animeplayer │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animeplayer │ │ │ └── AnimePlayer.kt │ ├── animeq │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animeq │ │ │ ├── AnimeQ.kt │ │ │ └── AnimeQUrlActivity.kt │ ├── animesbr │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesbr │ │ │ ├── AnimesBr.kt │ │ │ └── extractors │ │ │ ├── FourNimesExtractor.kt │ │ │ └── RuplayExtractor.kt │ ├── animescx │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animescx │ │ │ ├── AnimesCX.kt │ │ │ └── AnimesCXUrlActivity.kt │ ├── animesdigital │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesdigital │ │ │ ├── AnimesDigital.kt │ │ │ ├── AnimesDigitalFilters.kt │ │ │ ├── AnimesDigitalUrlActivity.kt │ │ │ └── extractors │ │ │ ├── ProtectorExtractor.kt │ │ │ └── ScriptExtractor.kt │ ├── animesdrive │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesdrive │ │ │ └── AnimesDrive.kt │ ├── animesgames │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesgames │ │ │ ├── AnimesGames.kt │ │ │ ├── AnimesGamesFilters.kt │ │ │ └── AnimesGamesUrlActivity.kt │ ├── animesgratis │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesgratis │ │ │ ├── Q1N.kt │ │ │ └── extractors │ │ │ ├── NoaExtractor.kt │ │ │ ├── RuplayExtractor.kt │ │ │ └── UniversalExtractor.kt │ ├── animeshouse │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesgratis │ │ │ ├── AnimesHouse.kt │ │ │ └── extractors │ │ │ └── AnimeBlackMarketExtractor.kt │ ├── animesonlinecc │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesgratis │ │ │ └── AnimesOnlineCC.kt │ ├── animesonlinecloud │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesgratis │ │ │ └── AnimesOnlineCloud.kt │ ├── animesonlinevip │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesonlinevip │ │ │ ├── AnimesOnlineVip.kt │ │ │ └── AnimesOnlineVipUrlActivity.kt │ ├── animesotaku │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesotaku │ │ │ ├── AnimesOtaku.kt │ │ │ ├── AnimesOtakuFilters.kt │ │ │ ├── AnimesOtakuUrlActivity.kt │ │ │ └── dto │ │ │ └── AnimesOtakuDto.kt │ ├── animesroll │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── animesroll │ │ │ ├── AnimesROLL.kt │ │ │ ├── AnimesROLLUrlActivity.kt │ │ │ └── dto │ │ │ └── AnimesROLLDto.kt │ ├── anitube │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── anitube │ │ │ ├── Anitube.kt │ │ │ ├── AnitubeFilters.kt │ │ │ ├── AnitubeUrlActivity.kt │ │ │ └── extractors │ │ │ ├── AnitubeDownloadExtractor.kt │ │ │ └── AnitubeExtractor.kt │ ├── betteranime │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── betteranime │ │ │ ├── BAFilters.kt │ │ │ ├── BAUrlActivity.kt │ │ │ ├── BAUtils.kt │ │ │ ├── BetterAnime.kt │ │ │ ├── LoginInterceptor.kt │ │ │ ├── RecaptchaV3Bypasser.kt │ │ │ ├── dto │ │ │ └── BetterAnimeDto.kt │ │ │ └── extractors │ │ │ └── BetterAnimeExtractor.kt │ ├── darkmahou │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── darkmahou │ │ │ ├── DarkMahou.kt │ │ │ └── extractors │ │ │ └── DarkMahouExtractor.kt │ ├── donghuanosekai │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── donghuanosekai │ │ │ ├── DonghuaNoSekai.kt │ │ │ ├── DonghuaNoSekaiFilters.kt │ │ │ ├── DonghuaNoSekaiUrlActivity.kt │ │ │ └── extractors │ │ │ └── DonghuaNoSekaiExtractor.kt │ ├── doramogo │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── doramogo │ │ │ ├── Doramogo.kt │ │ │ ├── DoramogoFilters.kt │ │ │ ├── DoramogoUrlActivity.kt │ │ │ └── extractors │ │ │ └── DoramogoExtractor.kt │ ├── goyabu │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── goyabu │ │ │ ├── Goyabu.kt │ │ │ └── GoyabuUrlActivity.kt │ ├── hentaistube │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── hentaistube │ │ │ ├── HentaisTube.kt │ │ │ ├── HentaisTubeFilters.kt │ │ │ ├── HentaisTubeUrlActivity.kt │ │ │ └── dto │ │ │ └── HentaisTubeDto.kt │ ├── muitohentai │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── muitohentai │ │ │ └── MuitoHentai.kt │ ├── pifansubs │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── pt │ │ │ └── pifansubs │ │ │ ├── PiFansubs.kt │ │ │ └── extractors │ │ │ └── BlembedExtractor.kt │ └── tomato │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── pt │ │ └── tomato │ │ ├── Tomato.kt │ │ ├── TomatoFilters.kt │ │ └── dto │ │ └── TomatoDto.kt ├── ru │ ├── animelib │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── ru │ │ │ └── animelib │ │ │ ├── Animelib.kt │ │ │ ├── AnimelibDto.kt │ │ │ └── AnimelibFilters.kt │ └── animevost │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── ru │ │ └── animevost │ │ ├── Animevost.kt │ │ └── AnimevostSource.kt ├── sr │ ├── animebalkan │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── sr │ │ │ └── animebalkan │ │ │ ├── AnimeBalkan.kt │ │ │ └── extractors │ │ │ └── MailRuExtractor.kt │ └── animesrbija │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── sr │ │ └── animesrbija │ │ ├── AnimeSrbija.kt │ │ ├── AnimeSrbijaFilters.kt │ │ ├── AnimeSrbijaUrlActivity.kt │ │ └── dto │ │ └── AnimeSrbijaDto.kt ├── tr │ ├── animeler │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── tr │ │ │ └── animeler │ │ │ ├── Animeler.kt │ │ │ ├── AnimelerFilters.kt │ │ │ ├── AnimelerUrlActivity.kt │ │ │ └── dto │ │ │ └── AnimelerDto.kt │ ├── anizm │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── tr │ │ │ └── anizm │ │ │ ├── Anizm.kt │ │ │ ├── AnizmFilters.kt │ │ │ ├── AnizmUrlActivity.kt │ │ │ ├── SearchItemDto.kt │ │ │ └── extractors │ │ │ └── AincradExtractor.kt │ ├── asyaanimeleri │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── tr │ │ │ └── asyaanimeleri │ │ │ ├── AsyaAnimeleri.kt │ │ │ ├── AsyaAnimeleriFilters.kt │ │ │ └── ShittyProtectionInterceptor.kt │ ├── hdfilmcehennemi │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── tr │ │ │ └── hdfilmcehennemi │ │ │ ├── HDFilmCehennemi.kt │ │ │ ├── HDFilmCehennemiFilters.kt │ │ │ ├── HDFilmCehennemiUrlActivity.kt │ │ │ └── extractors │ │ │ ├── CloseloadExtractor.kt │ │ │ ├── RapidrameExtractor.kt │ │ │ ├── VidmolyExtractor.kt │ │ │ └── XBetExtractor.kt │ ├── hentaizm │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── tr │ │ │ └── hentaizm │ │ │ ├── HentaiZM.kt │ │ │ ├── HentaiZMUrlActivity.kt │ │ │ └── extractors │ │ │ └── VideaExtractor.kt │ ├── tranimeci │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── tr │ │ │ └── tranimeci │ │ │ ├── ShittyProtectionInterceptor.kt │ │ │ ├── TRAnimeCI.kt │ │ │ └── TRAnimeCIFilters.kt │ ├── tranimeizle │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── tr │ │ │ └── tranimeizle │ │ │ ├── ShittyCaptchaInterceptor.kt │ │ │ ├── TRAnimeIzle.kt │ │ │ └── TRAnimeIzleUrlActivity.kt │ └── turkanime │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── tr │ │ └── turkanime │ │ ├── TurkAnime.kt │ │ ├── TurkAnimeFilters.kt │ │ └── extractors │ │ ├── AlucardExtractor.kt │ │ ├── EmbedgramExtractor.kt │ │ ├── MVidooExtractor.kt │ │ ├── MailRuExtractor.kt │ │ ├── StreamVidExtractor.kt │ │ ├── VTubeExtractor.kt │ │ └── WolfstreamExtractor.kt ├── uk │ ├── uakino │ │ ├── build.gradle │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ └── src │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ └── animeextension │ │ │ └── uk │ │ │ └── uakino │ │ │ ├── AshdiModel.kt │ │ │ └── UAKino.kt │ └── ufdub │ │ ├── build.gradle │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── uk │ │ └── ufdub │ │ └── UFDub.kt └── zh │ ├── anime1 │ ├── build.gradle │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── zh │ │ └── anime1 │ │ └── Anime1.kt │ ├── hanime1 │ ├── build.gradle │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── zh │ │ └── hanime1 │ │ ├── Filters.kt │ │ └── Hanime1.kt │ ├── iyf │ ├── build.gradle │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── zh │ │ └── iyf │ │ ├── Filters.kt │ │ ├── Iyf.kt │ │ └── IyfDTO.kt │ ├── nivod │ ├── build.gradle │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── zh │ │ └── nivod │ │ ├── Filters.kt │ │ ├── Nivod.kt │ │ └── NivodDTO.kt │ ├── xfani │ ├── build.gradle │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── src │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── animeextension │ │ └── zh │ │ └── xfani │ │ ├── Filters.kt │ │ ├── Signature.kt │ │ ├── Xfani.kt │ │ └── XfaniDTO.kt │ └── xiaoxintv │ ├── build.gradle │ ├── res │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png │ └── src │ └── eu │ └── kanade │ └── tachiyomi │ └── animeextension │ └── zh │ └── xiaoxintv │ ├── Filters.kt │ └── Xiaoxintv.kt └── template ├── README-REMOVED-TEMPLATE.md └── README-TEMPLATE.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_report_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/ISSUE_TEMPLATE/01_report_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_request_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/ISSUE_TEMPLATE/02_request_source.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_report_url_change.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/ISSUE_TEMPLATE/03_report_url_change.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_report_dead_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/ISSUE_TEMPLATE/04_report_dead_source.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/05_request_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/ISSUE_TEMPLATE/05_request_feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/06_request_meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/ISSUE_TEMPLATE/06_request_meta.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/07_request_removal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/ISSUE_TEMPLATE/07_request_removal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/always_build.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/readme-images/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/readme-images/app-icon.png -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/scripts/bump-versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/scripts/bump-versions.py -------------------------------------------------------------------------------- /.github/scripts/create-repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/scripts/create-repo.py -------------------------------------------------------------------------------- /.github/scripts/generate-build-matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/scripts/generate-build-matrices.py -------------------------------------------------------------------------------- /.github/scripts/merge-repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/scripts/merge-repo.py -------------------------------------------------------------------------------- /.github/scripts/move-built-apks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/scripts/move-built-apks.py -------------------------------------------------------------------------------- /.github/workflows/auto_merge_upstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/workflows/auto_merge_upstream.yml -------------------------------------------------------------------------------- /.github/workflows/build_pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/workflows/build_pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/build_push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/workflows/build_push.yml -------------------------------------------------------------------------------- /.github/workflows/codeberg_mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/workflows/codeberg_mirror.yml -------------------------------------------------------------------------------- /.github/workflows/delete_merged_branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/workflows/delete_merged_branch.yml -------------------------------------------------------------------------------- /.github/workflows/issue_moderator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/workflows/issue_moderator.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.idea/icon.png -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/README.md -------------------------------------------------------------------------------- /common.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/common.gradle -------------------------------------------------------------------------------- /core/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/AndroidManifest.xml -------------------------------------------------------------------------------- /core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/build.gradle.kts -------------------------------------------------------------------------------- /core/src/main/kotlin/extensions/utils/Date.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/kotlin/extensions/utils/Date.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/extensions/utils/Json.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/kotlin/extensions/utils/Json.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/extensions/utils/Network.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/kotlin/extensions/utils/Network.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/extensions/utils/Source.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/kotlin/extensions/utils/Source.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/extensions/utils/Url.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/kotlin/extensions/utils/Url.kt -------------------------------------------------------------------------------- /core/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/core/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ktlintCodeStyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/ktlintCodeStyle.xml -------------------------------------------------------------------------------- /lib-multisrc/anilist/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-multisrc") 3 | } 4 | 5 | baseVersionCode = 4 6 | -------------------------------------------------------------------------------- /lib-multisrc/animestream/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib-multisrc/animestream/AndroidManifest.xml -------------------------------------------------------------------------------- /lib-multisrc/animestream/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-multisrc") 3 | } 4 | 5 | baseVersionCode = 3 6 | -------------------------------------------------------------------------------- /lib-multisrc/datalifeengine/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-multisrc") 3 | } 4 | 5 | baseVersionCode = 1 6 | -------------------------------------------------------------------------------- /lib-multisrc/dooplay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib-multisrc/dooplay/AndroidManifest.xml -------------------------------------------------------------------------------- /lib-multisrc/dooplay/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-multisrc") 3 | } 4 | 5 | baseVersionCode = 3 6 | -------------------------------------------------------------------------------- /lib-multisrc/dopeflix/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib-multisrc/dopeflix/build.gradle.kts -------------------------------------------------------------------------------- /lib-multisrc/wcotheme/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib-multisrc/wcotheme/build.gradle.kts -------------------------------------------------------------------------------- /lib-multisrc/zorotheme/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-multisrc") 3 | } 4 | 5 | baseVersionCode = 8 6 | -------------------------------------------------------------------------------- /lib/amazon-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/amazon-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/bangumi-scraper/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/bangumi-scraper/build.gradle.kts -------------------------------------------------------------------------------- /lib/blogger-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/burstcloud-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/buzzheavier-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/cda-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/chillx-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/chillx-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/cloudflare-interceptor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/cryptoaes/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/dailymotion-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/dailymotion-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/dataimage/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/dood-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/dopeflix-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/dopeflix-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/fastream-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/fastream-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/filemoon-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/filemoon-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/fireplayer-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/fireplayer-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/fusevideo-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/fusevideo-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/gdriveplayer-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/gdriveplayer-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/gogostream-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/gogostream-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/goodstream-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/googledrive-episodes/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/googledrive-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/i18n/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/javcoverfetcher/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/javcoverfetcher/build.gradle.kts -------------------------------------------------------------------------------- /lib/lulu-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/lycoris-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/megacloud-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/megacloud-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/mixdrop-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/mixdrop-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/mp4upload-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/mp4upload-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/okru-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/okru-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/playlist-utils/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/playlist-utils/build.gradle.kts -------------------------------------------------------------------------------- /lib/rapidcloud-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/rapidcloud-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/savefile-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/savefile-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/sendvid-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/sendvid-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/sibnet-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/streamdav-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/streamhidevid-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/streamhidevid-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/streamhub-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/streamhub-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/streamlare-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/streamsilk-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/streamsilk-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/streamtape-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/streamvid-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/streamvid-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/streamwish-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/streamwish-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/synchrony/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/universal-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/universal-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/unpacker/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/unpacker/build.gradle.kts -------------------------------------------------------------------------------- /lib/upstream-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/upstream-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/uqload-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/vidbom-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/vidguard-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/vidguard-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/vidhide-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/vidhide-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/vidmoly-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/vidmoly-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/vido-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/vido-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/vidsrc-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/vidsrc-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/vk-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/voe-extractor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/lib/voe-extractor/build.gradle.kts -------------------------------------------------------------------------------- /lib/vudeo-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/yourupload-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/all/animeonsen/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/animeonsen/build.gradle -------------------------------------------------------------------------------- /src/all/animeworldindia/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/animeworldindia/build.gradle -------------------------------------------------------------------------------- /src/all/animexin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/animexin/build.gradle -------------------------------------------------------------------------------- /src/all/animexin/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/animexin/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/animexin/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/animexin/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/anizone/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/anizone/build.gradle -------------------------------------------------------------------------------- /src/all/anizone/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/anizone/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/anizone/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/anizone/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/anizone/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/anizone/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/chineseanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/chineseanime/build.gradle -------------------------------------------------------------------------------- /src/all/debridindex/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/debridindex/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/debridindex/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/debridindex/build.gradle -------------------------------------------------------------------------------- /src/all/googledrive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/googledrive/README.md -------------------------------------------------------------------------------- /src/all/googledrive/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/googledrive/build.gradle -------------------------------------------------------------------------------- /src/all/googledriveindex/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/googledriveindex/build.gradle -------------------------------------------------------------------------------- /src/all/hentaitorrent/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/hentaitorrent/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/hentaitorrent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/hentaitorrent/build.gradle -------------------------------------------------------------------------------- /src/all/jable/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/jable/build.gradle -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/jable/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/jable/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/jable/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/jable/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/jable/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javgg/build.gradle -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javgg/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javgg/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javgg/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javgg/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javgg/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javguru/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javguru/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/javguru/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javguru/build.gradle -------------------------------------------------------------------------------- /src/all/javguru/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javguru/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javguru/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javguru/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javguru/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/javguru/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jellyfin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/jellyfin/build.gradle -------------------------------------------------------------------------------- /src/all/jellyfin/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/jellyfin/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jellyfin/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/jellyfin/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/lmanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/lmanime/build.gradle -------------------------------------------------------------------------------- /src/all/lmanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/lmanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/lmanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/lmanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/lmanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/lmanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/missav/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/missav/build.gradle -------------------------------------------------------------------------------- /src/all/missav/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/missav/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/missav/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/missav/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/missav/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/missav/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/missav/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/missav/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/myreadingmanga/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/myreadingmanga/build.gradle -------------------------------------------------------------------------------- /src/all/newgrounds/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/newgrounds/build.gradle -------------------------------------------------------------------------------- /src/all/nyaatorrent/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/nyaatorrent/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/nyaatorrent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/nyaatorrent/build.gradle -------------------------------------------------------------------------------- /src/all/ptorrent/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/ptorrent/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/ptorrent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/ptorrent/build.gradle -------------------------------------------------------------------------------- /src/all/ptorrent/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/ptorrent/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/ptorrent/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/ptorrent/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/rouvideo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/rouvideo/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/rouvideo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/rouvideo/build.gradle -------------------------------------------------------------------------------- /src/all/rouvideo/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/rouvideo/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/rouvideo/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/rouvideo/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/shabakatycinemana/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/shabakatycinemana/build.gradle -------------------------------------------------------------------------------- /src/all/streamingcommunity/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/streamingcommunity/build.gradle -------------------------------------------------------------------------------- /src/all/stremio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/stremio/README.md -------------------------------------------------------------------------------- /src/all/stremio/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/stremio/build.gradle -------------------------------------------------------------------------------- /src/all/stremio/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/stremio/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/stremio/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/stremio/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/stremio/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/stremio/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/subsplease/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/subsplease/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/subsplease/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/subsplease/build.gradle -------------------------------------------------------------------------------- /src/all/sudatchi/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/sudatchi/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/sudatchi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/sudatchi/build.gradle -------------------------------------------------------------------------------- /src/all/sudatchi/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/sudatchi/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/sudatchi/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/sudatchi/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/supjav/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/supjav/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/supjav/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/supjav/build.gradle -------------------------------------------------------------------------------- /src/all/supjav/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/supjav/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/supjav/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/supjav/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/supjav/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/supjav/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/supjav/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/supjav/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/torrentio/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/torrentio/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/torrentio/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/torrentio/build.gradle -------------------------------------------------------------------------------- /src/all/torrentioanime/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/torrentioanime/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/torrentioanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/torrentioanime/build.gradle -------------------------------------------------------------------------------- /src/all/xnxx/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xnxx/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/xnxx/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xnxx/build.gradle -------------------------------------------------------------------------------- /src/all/xnxx/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xnxx/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/xnxx/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xnxx/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/xnxx/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xnxx/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/xnxx/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xnxx/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/xnxx/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xnxx/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/xvideos/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xvideos/AndroidManifest.xml -------------------------------------------------------------------------------- /src/all/xvideos/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xvideos/build.gradle -------------------------------------------------------------------------------- /src/all/xvideos/res/mipmap-hdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xvideos/res/mipmap-hdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /src/all/xvideos/res/mipmap-mdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xvideos/res/mipmap-mdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /src/all/xvideos/res/mipmap-xhdpi/ic_launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/all/xvideos/res/mipmap-xhdpi/ic_launcher.jpg -------------------------------------------------------------------------------- /src/ar/anime4up/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/anime4up/build.gradle -------------------------------------------------------------------------------- /src/ar/anime4up/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/anime4up/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/anime4up/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/anime4up/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/anime4up/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/anime4up/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeblkom/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animeblkom/build.gradle -------------------------------------------------------------------------------- /src/ar/animeiat/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animeiat/build.gradle -------------------------------------------------------------------------------- /src/ar/animeiat/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animeiat/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeiat/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animeiat/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeiat/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animeiat/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animelek/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animelek/build.gradle -------------------------------------------------------------------------------- /src/ar/animelek/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animelek/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animelek/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animelek/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animelek/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animelek/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animerco/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animerco/build.gradle -------------------------------------------------------------------------------- /src/ar/animerco/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animerco/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animerco/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animerco/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animerco/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/animerco/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/arabanime/build.gradle -------------------------------------------------------------------------------- /src/ar/arabanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/arabanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/arabanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabseed/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/arabseed/build.gradle -------------------------------------------------------------------------------- /src/ar/arabseed/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/arabseed/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabseed/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/arabseed/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabseed/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/arabseed/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/asia2tv/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/asia2tv/build.gradle -------------------------------------------------------------------------------- /src/ar/asia2tv/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/asia2tv/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/asia2tv/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/asia2tv/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/asia2tv/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/asia2tv/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/asia2tv/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/asia2tv/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/cimaleek/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/cimaleek/build.gradle -------------------------------------------------------------------------------- /src/ar/cimaleek/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/cimaleek/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/cimaleek/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/cimaleek/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/cimaleek/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/cimaleek/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/egydead/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/egydead/build.gradle -------------------------------------------------------------------------------- /src/ar/egydead/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/egydead/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/egydead/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/egydead/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/egydead/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/egydead/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/egydead/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/egydead/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/faselhd/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/faselhd/build.gradle -------------------------------------------------------------------------------- /src/ar/faselhd/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/faselhd/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/faselhd/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/faselhd/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/faselhd/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/faselhd/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/faselhd/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/faselhd/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/mycima/build.gradle -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/mycima/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/mycima/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/mycima/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/mycima/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/mycima/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/okanime/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/okanime/AndroidManifest.xml -------------------------------------------------------------------------------- /src/ar/okanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/okanime/build.gradle -------------------------------------------------------------------------------- /src/ar/okanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/okanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/okanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/okanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/okanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/okanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/okanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/okanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/witanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/witanime/build.gradle -------------------------------------------------------------------------------- /src/ar/witanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/witanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/witanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/witanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/witanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ar/witanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animebase/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/animebase/build.gradle -------------------------------------------------------------------------------- /src/de/animebase/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/animebase/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animebase/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/animebase/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animeloads/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/animeloads/build.gradle -------------------------------------------------------------------------------- /src/de/animestream/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/animestream/build.gradle -------------------------------------------------------------------------------- /src/de/animetoast/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/animetoast/build.gradle -------------------------------------------------------------------------------- /src/de/aniworld/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/aniworld/build.gradle -------------------------------------------------------------------------------- /src/de/aniworld/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/aniworld/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/aniworld/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/aniworld/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/aniworld/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/aniworld/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/cinemathek/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/cinemathek/build.gradle -------------------------------------------------------------------------------- /src/de/einfach/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/einfach/AndroidManifest.xml -------------------------------------------------------------------------------- /src/de/einfach/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/einfach/build.gradle -------------------------------------------------------------------------------- /src/de/einfach/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/einfach/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/einfach/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/einfach/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/einfach/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/einfach/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/einfach/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/einfach/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/filmpalast/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/filmpalast/build.gradle -------------------------------------------------------------------------------- /src/de/kinoking/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kinoking/build.gradle -------------------------------------------------------------------------------- /src/de/kinoking/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kinoking/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kinoking/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kinoking/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kinoking/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kinoking/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kool/build.gradle -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kool/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kool/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kool/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kool/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/kool/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/moflixstream/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/moflixstream/build.gradle -------------------------------------------------------------------------------- /src/de/movie4k/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/movie4k/build.gradle -------------------------------------------------------------------------------- /src/de/movie4k/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/movie4k/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/movie4k/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/movie4k/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/movie4k/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/movie4k/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/movie4k/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/movie4k/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/serienstream/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/de/serienstream/build.gradle -------------------------------------------------------------------------------- /src/en/allanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/allanime/build.gradle -------------------------------------------------------------------------------- /src/en/allanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/allanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/allanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/allanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanimechi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/allanimechi/build.gradle -------------------------------------------------------------------------------- /src/en/anilist/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/anilist/build.gradle -------------------------------------------------------------------------------- /src/en/anilist/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/anilist/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/anilist/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/anilist/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/anilist/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/anilist/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/anilist/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/anilist/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animegg/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animegg/build.gradle -------------------------------------------------------------------------------- /src/en/animegg/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animegg/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animegg/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animegg/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animegg/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animegg/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animegg/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animegg/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animekai/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animekai/build.gradle -------------------------------------------------------------------------------- /src/en/animekai/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animekai/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animekai/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animekai/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animekai/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animekai/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animekhor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animekhor/build.gradle -------------------------------------------------------------------------------- /src/en/animekhor/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animekhor/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animekhor/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animekhor/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animenosub/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animenosub/build.gradle -------------------------------------------------------------------------------- /src/en/animepahe/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animepahe/build.gradle -------------------------------------------------------------------------------- /src/en/animepahe/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animepahe/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animepahe/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animepahe/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animeparadise/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animeparadise/build.gradle -------------------------------------------------------------------------------- /src/en/animetake/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animetake/build.gradle -------------------------------------------------------------------------------- /src/en/animetake/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animetake/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animetake/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/animetake/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniplay/build.gradle -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniplay/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniplay/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniplay/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniplay/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniplay/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwatch/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniwatch/build.gradle -------------------------------------------------------------------------------- /src/en/aniwatch/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniwatch/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwatch/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniwatch/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwatch/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniwatch/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwavese/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniwavese/build.gradle -------------------------------------------------------------------------------- /src/en/aniwavese/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniwavese/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwavese/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/aniwavese/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/asiaflix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/asiaflix/build.gradle -------------------------------------------------------------------------------- /src/en/asiaflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/asiaflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/asiaflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/asiaflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/asiaflix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/asiaflix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/bestdubbedanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/bestdubbedanime/build.gradle -------------------------------------------------------------------------------- /src/en/blzone/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/blzone/build.gradle -------------------------------------------------------------------------------- /src/en/blzone/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/blzone/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/blzone/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/blzone/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/blzone/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/blzone/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/blzone/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/blzone/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/blzone/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/blzone/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/donghuastream/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/donghuastream/build.gradle -------------------------------------------------------------------------------- /src/en/dopebox/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dopebox/build.gradle -------------------------------------------------------------------------------- /src/en/dopebox/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dopebox/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopebox/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dopebox/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopebox/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dopebox/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopebox/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dopebox/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopeflix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dopeflix/build.gradle -------------------------------------------------------------------------------- /src/en/dopeflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dopeflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopeflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dopeflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopeflix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dopeflix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dramafull/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dramafull/build.gradle -------------------------------------------------------------------------------- /src/en/dramafull/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dramafull/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dramafull/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/dramafull/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/edytjedhgmdhm/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/edytjedhgmdhm/build.gradle -------------------------------------------------------------------------------- /src/en/hahomoe/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hahomoe/build.gradle -------------------------------------------------------------------------------- /src/en/hahomoe/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hahomoe/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hahomoe/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hahomoe/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hahomoe/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hahomoe/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hahomoe/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hahomoe/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hanime/build.gradle -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hentaimama/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hentaimama/build.gradle -------------------------------------------------------------------------------- /src/en/hexawatch/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hexawatch/build.gradle -------------------------------------------------------------------------------- /src/en/hexawatch/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hexawatch/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hexawatch/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hexawatch/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hstream/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hstream/AndroidManifest.xml -------------------------------------------------------------------------------- /src/en/hstream/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hstream/build.gradle -------------------------------------------------------------------------------- /src/en/hstream/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hstream/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hstream/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hstream/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hstream/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hstream/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hstream/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/hstream/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/jpfilms/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/jpfilms/build.gradle -------------------------------------------------------------------------------- /src/en/jpfilms/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/jpfilms/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/jpfilms/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/jpfilms/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/jpfilms/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/jpfilms/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/jpfilms/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/jpfilms/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kaido/build.gradle -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kaido/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kaido/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kaido/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kaido/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kaido/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kawaiifu/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kawaiifu/build.gradle -------------------------------------------------------------------------------- /src/en/kawaiifu/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kawaiifu/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kawaiifu/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kawaiifu/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kawaiifu/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kawaiifu/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kayoanime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kayoanime/README.md -------------------------------------------------------------------------------- /src/en/kayoanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kayoanime/build.gradle -------------------------------------------------------------------------------- /src/en/kayoanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kayoanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kayoanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kayoanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kickassanime/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kickassanime/AndroidManifest.xml -------------------------------------------------------------------------------- /src/en/kickassanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kickassanime/build.gradle -------------------------------------------------------------------------------- /src/en/kimoitv/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kimoitv/build.gradle -------------------------------------------------------------------------------- /src/en/kimoitv/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kimoitv/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kimoitv/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kimoitv/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kimoitv/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kimoitv/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kimoitv/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kimoitv/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kissanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kissanime/build.gradle -------------------------------------------------------------------------------- /src/en/kissanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kissanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kissanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kissanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kisskh/build.gradle -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kisskh/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kisskh/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kisskh/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kisskh/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/kisskh/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/luciferdonghua/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/luciferdonghua/build.gradle -------------------------------------------------------------------------------- /src/en/moviesmod/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/moviesmod/build.gradle -------------------------------------------------------------------------------- /src/en/moviesmod/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/moviesmod/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/moviesmod/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/moviesmod/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/myanime/build.gradle -------------------------------------------------------------------------------- /src/en/myanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/myanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/myanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/myanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/myanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myrunningman/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/myrunningman/AndroidManifest.xml -------------------------------------------------------------------------------- /src/en/myrunningman/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/myrunningman/build.gradle -------------------------------------------------------------------------------- /src/en/nineanimetv/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/nineanimetv/build.gradle -------------------------------------------------------------------------------- /src/en/noobsubs/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/noobsubs/build.gradle -------------------------------------------------------------------------------- /src/en/noobsubs/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/noobsubs/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/noobsubs/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/noobsubs/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/noobsubs/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/noobsubs/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/oppaistream/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/oppaistream/build.gradle -------------------------------------------------------------------------------- /src/en/pinoymoviepedia/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/pinoymoviepedia/build.gradle -------------------------------------------------------------------------------- /src/en/putlocker/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/putlocker/build.gradle -------------------------------------------------------------------------------- /src/en/putlocker/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/putlocker/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/putlocker/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/putlocker/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/rule34video/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/rule34video/AndroidManifest.xml -------------------------------------------------------------------------------- /src/en/rule34video/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/rule34video/build.gradle -------------------------------------------------------------------------------- /src/en/sflix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/sflix/build.gradle -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/sflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/sflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/sflix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/sflix/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/sflix/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/superstream/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/superstream/build.gradle -------------------------------------------------------------------------------- /src/en/tokuzilla/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/tokuzilla/build.gradle -------------------------------------------------------------------------------- /src/en/tokuzilla/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/tokuzilla/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/tokuzilla/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/tokuzilla/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/uhdmovies/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/uhdmovies/build.gradle -------------------------------------------------------------------------------- /src/en/uhdmovies/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/uhdmovies/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/uhdmovies/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/uhdmovies/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/uniquestream/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/uniquestream/build.gradle -------------------------------------------------------------------------------- /src/en/wcoanimedub/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcoanimedub/build.gradle -------------------------------------------------------------------------------- /src/en/wcoanimesub/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcoanimesub/build.gradle -------------------------------------------------------------------------------- /src/en/wcoforever/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcoforever/build.gradle -------------------------------------------------------------------------------- /src/en/wcofun/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcofun/build.gradle -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcofun/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcofun/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcofun/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcofun/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcofun/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcostream/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcostream/build.gradle -------------------------------------------------------------------------------- /src/en/wcostream/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcostream/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcostream/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcostream/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcotv/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcotv/build.gradle -------------------------------------------------------------------------------- /src/en/wcotv/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcotv/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcotv/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcotv/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcotv/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcotv/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcotv/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcotv/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcotv/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/wcotv/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/xprime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/xprime/build.gradle -------------------------------------------------------------------------------- /src/en/xprime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/xprime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/xprime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/xprime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/xprime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/xprime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/xprime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/xprime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/xprime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/xprime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/yflix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/yflix/build.gradle -------------------------------------------------------------------------------- /src/en/yflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/yflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/yflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/yflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/yflix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/yflix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/yflix/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/yflix/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/yflix/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/yflix/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/zoro/build.gradle -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/zoro/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/zoro/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/zoro/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/zoro/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/en/zoro/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animebum/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animebum/build.gradle -------------------------------------------------------------------------------- /src/es/animebum/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animebum/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animebum/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animebum/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animebum/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animebum/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animefenix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animefenix/build.gradle -------------------------------------------------------------------------------- /src/es/animeflv/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeflv/build.gradle -------------------------------------------------------------------------------- /src/es/animeflv/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeflv/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeflv/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeflv/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeflv/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeflv/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeid/build.gradle -------------------------------------------------------------------------------- /src/es/animeid/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeid/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeid/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeid/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeid/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeid/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeid/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeid/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animejl/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animejl/build.gradle -------------------------------------------------------------------------------- /src/es/animejl/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animejl/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animejl/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animejl/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animejl/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animejl/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animejl/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animejl/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animelatinohd/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animelatinohd/build.gradle -------------------------------------------------------------------------------- /src/es/animemovil/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animemovil/build.gradle -------------------------------------------------------------------------------- /src/es/animenix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animenix/build.gradle -------------------------------------------------------------------------------- /src/es/animenix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animenix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animenix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animenix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animenix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animenix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeonlineninja/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeonlineninja/build.gradle -------------------------------------------------------------------------------- /src/es/animeyt/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeyt/build.gradle -------------------------------------------------------------------------------- /src/es/animeyt/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeyt/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeyt/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeyt/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeyt/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeyt/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeyt/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeyt/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeytes/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeytes/build.gradle -------------------------------------------------------------------------------- /src/es/animeytes/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeytes/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeytes/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/animeytes/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/asialiveaction/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/asialiveaction/build.gradle -------------------------------------------------------------------------------- /src/es/azanimex/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/azanimex/AndroidManifest.xml -------------------------------------------------------------------------------- /src/es/azanimex/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/azanimex/build.gradle -------------------------------------------------------------------------------- /src/es/azanimex/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/azanimex/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/azanimex/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/azanimex/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/azanimex/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/azanimex/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/beatzanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/beatzanime/build.gradle -------------------------------------------------------------------------------- /src/es/cine24h/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cine24h/build.gradle -------------------------------------------------------------------------------- /src/es/cine24h/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cine24h/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cine24h/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cine24h/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cine24h/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cine24h/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cine24h/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cine24h/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cinecalidad/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cinecalidad/build.gradle -------------------------------------------------------------------------------- /src/es/cineplus123/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cineplus123/AndroidManifest.xml -------------------------------------------------------------------------------- /src/es/cineplus123/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cineplus123/build.gradle -------------------------------------------------------------------------------- /src/es/cuevana/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cuevana/build.gradle -------------------------------------------------------------------------------- /src/es/cuevana/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cuevana/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cuevana/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cuevana/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cuevana/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cuevana/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cuevana/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/cuevana/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/detodopeliculas/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/detodopeliculas/build.gradle -------------------------------------------------------------------------------- /src/es/doramasflix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/doramasflix/build.gradle -------------------------------------------------------------------------------- /src/es/doramasyt/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/doramasyt/build.gradle -------------------------------------------------------------------------------- /src/es/doramasyt/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/doramasyt/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/doramasyt/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/doramasyt/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/ennovelas/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/ennovelas/build.gradle -------------------------------------------------------------------------------- /src/es/ennovelas/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/ennovelas/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/ennovelas/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/ennovelas/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/estrenosdoramas/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/estrenosdoramas/build.gradle -------------------------------------------------------------------------------- /src/es/fanpelis/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/fanpelis/build.gradle -------------------------------------------------------------------------------- /src/es/fanpelis/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/fanpelis/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/fanpelis/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/fanpelis/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/fanpelis/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/fanpelis/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/flixlatam/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/flixlatam/build.gradle -------------------------------------------------------------------------------- /src/es/flixlatam/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/flixlatam/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/flixlatam/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/flixlatam/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/gnula/build.gradle -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/gnula/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/gnula/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/gnula/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/gnula/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/gnula/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hackstore/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hackstore/build.gradle -------------------------------------------------------------------------------- /src/es/hackstore/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hackstore/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hackstore/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hackstore/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaijk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaijk/build.gradle -------------------------------------------------------------------------------- /src/es/hentaijk/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaijk/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaijk/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaijk/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaijk/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaijk/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaila/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaila/build.gradle -------------------------------------------------------------------------------- /src/es/hentaila/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaila/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaila/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaila/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaila/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaila/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaitk/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaitk/build.gradle -------------------------------------------------------------------------------- /src/es/hentaitk/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/hentaitk/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/homecine/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/homecine/build.gradle -------------------------------------------------------------------------------- /src/es/jkanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/jkanime/build.gradle -------------------------------------------------------------------------------- /src/es/jkanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/jkanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/jkanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkhentai/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/jkhentai/build.gradle -------------------------------------------------------------------------------- /src/es/katanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/katanime/build.gradle -------------------------------------------------------------------------------- /src/es/lacartoons/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/lacartoons/build.gradle -------------------------------------------------------------------------------- /src/es/latanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/latanime/build.gradle -------------------------------------------------------------------------------- /src/es/legionanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/legionanime/build.gradle -------------------------------------------------------------------------------- /src/es/locopelis/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/locopelis/build.gradle -------------------------------------------------------------------------------- /src/es/metroseries/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/metroseries/build.gradle -------------------------------------------------------------------------------- /src/es/mhdflix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/mhdflix/build.gradle -------------------------------------------------------------------------------- /src/es/mhdflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/mhdflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/mhdflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/mhdflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/monoschinos/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/monoschinos/build.gradle -------------------------------------------------------------------------------- /src/es/mundodonghua/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/mundodonghua/build.gradle -------------------------------------------------------------------------------- /src/es/otakuverso/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/otakuverso/build.gradle -------------------------------------------------------------------------------- /src/es/pandrama/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/pandrama/build.gradle -------------------------------------------------------------------------------- /src/es/pelisforte/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/pelisforte/build.gradle -------------------------------------------------------------------------------- /src/es/pelisplushd/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/pelisplushd/build.gradle -------------------------------------------------------------------------------- /src/es/serieskao/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/serieskao/build.gradle -------------------------------------------------------------------------------- /src/es/sololatino/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/sololatino/build.gradle -------------------------------------------------------------------------------- /src/es/tioanimeh/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/tioanimeh/build.gradle -------------------------------------------------------------------------------- /src/es/tiodonghua/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/tiodonghua/build.gradle -------------------------------------------------------------------------------- /src/es/veohentai/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/veohentai/build.gradle -------------------------------------------------------------------------------- /src/es/veranimes/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/veranimes/build.gradle -------------------------------------------------------------------------------- /src/es/verseriesonline/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/verseriesonline/AndroidManifest.xml -------------------------------------------------------------------------------- /src/es/verseriesonline/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/verseriesonline/build.gradle -------------------------------------------------------------------------------- /src/es/zeroanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/zeroanime/build.gradle -------------------------------------------------------------------------------- /src/es/zonaleros/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/es/zonaleros/build.gradle -------------------------------------------------------------------------------- /src/fr/animesama/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/animesama/AndroidManifest.xml -------------------------------------------------------------------------------- /src/fr/animesama/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/animesama/build.gradle -------------------------------------------------------------------------------- /src/fr/animevostfr/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/animevostfr/build.gradle -------------------------------------------------------------------------------- /src/fr/anisama/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/anisama/AndroidManifest.xml -------------------------------------------------------------------------------- /src/fr/anisama/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/anisama/build.gradle -------------------------------------------------------------------------------- /src/fr/anisama/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/anisama/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/anisama/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/anisama/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/empirestreaming/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/empirestreaming/build.gradle -------------------------------------------------------------------------------- /src/fr/franime/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/franime/AndroidManifest.xml -------------------------------------------------------------------------------- /src/fr/franime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/franime/build.gradle -------------------------------------------------------------------------------- /src/fr/franime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/franime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/franime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/franime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/frenchanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/frenchanime/build.gradle -------------------------------------------------------------------------------- /src/fr/hds/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/hds/build.gradle -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/hds/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/hds/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/hds/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/hds/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/hds/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/jetanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/jetanime/build.gradle -------------------------------------------------------------------------------- /src/fr/mykdrama/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/mykdrama/build.gradle -------------------------------------------------------------------------------- /src/fr/otakufr/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/otakufr/build.gradle -------------------------------------------------------------------------------- /src/fr/otakufr/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/otakufr/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/otakufr/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/otakufr/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/voircartoon/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/voircartoon/build.gradle -------------------------------------------------------------------------------- /src/fr/vostfree/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/vostfree/build.gradle -------------------------------------------------------------------------------- /src/fr/wiflix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/wiflix/build.gradle -------------------------------------------------------------------------------- /src/fr/wiflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/wiflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/wiflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/wiflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/wiflix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/fr/wiflix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/hi/animesaga/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/hi/animesaga/build.gradle -------------------------------------------------------------------------------- /src/hi/yomovies/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/hi/yomovies/build.gradle -------------------------------------------------------------------------------- /src/id/animeindo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/animeindo/build.gradle -------------------------------------------------------------------------------- /src/id/kuramanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/kuramanime/build.gradle -------------------------------------------------------------------------------- /src/id/kuronime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/kuronime/build.gradle -------------------------------------------------------------------------------- /src/id/minioppai/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/minioppai/build.gradle -------------------------------------------------------------------------------- /src/id/neonime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/neonime/build.gradle -------------------------------------------------------------------------------- /src/id/neonime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/neonime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/neonime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/neonime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/nimegami/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/nimegami/AndroidManifest.xml -------------------------------------------------------------------------------- /src/id/nimegami/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/nimegami/build.gradle -------------------------------------------------------------------------------- /src/id/oploverz/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/oploverz/build.gradle -------------------------------------------------------------------------------- /src/id/otakudesu/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/otakudesu/build.gradle -------------------------------------------------------------------------------- /src/id/samehadaku/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/id/samehadaku/build.gradle -------------------------------------------------------------------------------- /src/it/animesaturn/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/animesaturn/build.gradle -------------------------------------------------------------------------------- /src/it/animeunity/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/animeunity/build.gradle -------------------------------------------------------------------------------- /src/it/animeworld/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/animeworld/build.gradle -------------------------------------------------------------------------------- /src/it/aniplay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/aniplay/AndroidManifest.xml -------------------------------------------------------------------------------- /src/it/aniplay/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/aniplay/build.gradle -------------------------------------------------------------------------------- /src/it/aniplay/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/aniplay/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/aniplay/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/aniplay/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/hentaisaturn/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/hentaisaturn/build.gradle -------------------------------------------------------------------------------- /src/it/toonitalia/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/toonitalia/build.gradle -------------------------------------------------------------------------------- /src/it/vvvvid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/vvvvid/build.gradle -------------------------------------------------------------------------------- /src/it/vvvvid/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/vvvvid/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/vvvvid/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/vvvvid/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/vvvvid/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/it/vvvvid/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ko/aniweek/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ko/aniweek/build.gradle -------------------------------------------------------------------------------- /src/ko/aniweek/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ko/aniweek/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ko/aniweek/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ko/aniweek/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/desuonline/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/desuonline/build.gradle -------------------------------------------------------------------------------- /src/pl/docchi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/docchi/build.gradle -------------------------------------------------------------------------------- /src/pl/docchi/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/docchi/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/docchi/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/docchi/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/docchi/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/docchi/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/ogladajanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/ogladajanime/build.gradle -------------------------------------------------------------------------------- /src/pl/wbijam/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/wbijam/build.gradle -------------------------------------------------------------------------------- /src/pl/wbijam/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/wbijam/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/wbijam/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/wbijam/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/wbijam/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pl/wbijam/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animefire/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animefire/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/animefire/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animefire/build.gradle -------------------------------------------------------------------------------- /src/pt/animeplayer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animeplayer/build.gradle -------------------------------------------------------------------------------- /src/pt/animeq/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animeq/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/animeq/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animeq/build.gradle -------------------------------------------------------------------------------- /src/pt/animeq/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animeq/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animeq/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animeq/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animeq/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animeq/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animesbr/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesbr/build.gradle -------------------------------------------------------------------------------- /src/pt/animescx/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animescx/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/animescx/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animescx/build.gradle -------------------------------------------------------------------------------- /src/pt/animesdigital/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesdigital/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/animesdigital/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesdigital/build.gradle -------------------------------------------------------------------------------- /src/pt/animesdrive/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesdrive/build.gradle -------------------------------------------------------------------------------- /src/pt/animesgames/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesgames/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/animesgames/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesgames/build.gradle -------------------------------------------------------------------------------- /src/pt/animesgratis/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesgratis/build.gradle -------------------------------------------------------------------------------- /src/pt/animeshouse/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animeshouse/build.gradle -------------------------------------------------------------------------------- /src/pt/animesonlinecc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesonlinecc/build.gradle -------------------------------------------------------------------------------- /src/pt/animesonlinecloud/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesonlinecloud/build.gradle -------------------------------------------------------------------------------- /src/pt/animesonlinevip/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesonlinevip/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/animesonlinevip/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesonlinevip/build.gradle -------------------------------------------------------------------------------- /src/pt/animesotaku/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesotaku/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/animesotaku/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesotaku/build.gradle -------------------------------------------------------------------------------- /src/pt/animesroll/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesroll/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/animesroll/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/animesroll/build.gradle -------------------------------------------------------------------------------- /src/pt/anitube/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/anitube/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/anitube/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/anitube/build.gradle -------------------------------------------------------------------------------- /src/pt/anitube/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/anitube/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/anitube/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/anitube/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/betteranime/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/betteranime/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/betteranime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/betteranime/build.gradle -------------------------------------------------------------------------------- /src/pt/darkmahou/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/darkmahou/build.gradle -------------------------------------------------------------------------------- /src/pt/donghuanosekai/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/donghuanosekai/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/donghuanosekai/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/donghuanosekai/build.gradle -------------------------------------------------------------------------------- /src/pt/doramogo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/doramogo/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/doramogo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/doramogo/build.gradle -------------------------------------------------------------------------------- /src/pt/goyabu/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/goyabu/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/goyabu/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/goyabu/build.gradle -------------------------------------------------------------------------------- /src/pt/goyabu/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/goyabu/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/goyabu/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/goyabu/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/goyabu/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/goyabu/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/hentaistube/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/hentaistube/AndroidManifest.xml -------------------------------------------------------------------------------- /src/pt/hentaistube/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/hentaistube/build.gradle -------------------------------------------------------------------------------- /src/pt/muitohentai/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/muitohentai/build.gradle -------------------------------------------------------------------------------- /src/pt/pifansubs/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/pifansubs/build.gradle -------------------------------------------------------------------------------- /src/pt/tomato/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/tomato/build.gradle -------------------------------------------------------------------------------- /src/pt/tomato/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/tomato/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/tomato/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/tomato/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/tomato/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/pt/tomato/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ru/animelib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ru/animelib/build.gradle -------------------------------------------------------------------------------- /src/ru/animevost/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/ru/animevost/build.gradle -------------------------------------------------------------------------------- /src/sr/animebalkan/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/sr/animebalkan/build.gradle -------------------------------------------------------------------------------- /src/sr/animesrbija/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/sr/animesrbija/AndroidManifest.xml -------------------------------------------------------------------------------- /src/sr/animesrbija/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/sr/animesrbija/build.gradle -------------------------------------------------------------------------------- /src/tr/animeler/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/animeler/AndroidManifest.xml -------------------------------------------------------------------------------- /src/tr/animeler/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/animeler/build.gradle -------------------------------------------------------------------------------- /src/tr/anizm/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/anizm/AndroidManifest.xml -------------------------------------------------------------------------------- /src/tr/anizm/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/anizm/build.gradle -------------------------------------------------------------------------------- /src/tr/anizm/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/anizm/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/anizm/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/anizm/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/anizm/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/anizm/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/anizm/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/anizm/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/asyaanimeleri/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/asyaanimeleri/build.gradle -------------------------------------------------------------------------------- /src/tr/hdfilmcehennemi/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/hdfilmcehennemi/AndroidManifest.xml -------------------------------------------------------------------------------- /src/tr/hdfilmcehennemi/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/hdfilmcehennemi/build.gradle -------------------------------------------------------------------------------- /src/tr/hentaizm/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/hentaizm/AndroidManifest.xml -------------------------------------------------------------------------------- /src/tr/hentaizm/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/hentaizm/build.gradle -------------------------------------------------------------------------------- /src/tr/tranimeci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/tranimeci/build.gradle -------------------------------------------------------------------------------- /src/tr/tranimeizle/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/tranimeizle/AndroidManifest.xml -------------------------------------------------------------------------------- /src/tr/tranimeizle/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/tranimeizle/build.gradle -------------------------------------------------------------------------------- /src/tr/turkanime/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/tr/turkanime/build.gradle -------------------------------------------------------------------------------- /src/uk/uakino/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/uk/uakino/build.gradle -------------------------------------------------------------------------------- /src/uk/uakino/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/uk/uakino/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/uakino/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/uk/uakino/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/uakino/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/uk/uakino/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/ufdub/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/uk/ufdub/build.gradle -------------------------------------------------------------------------------- /src/uk/ufdub/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/uk/ufdub/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/ufdub/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/uk/ufdub/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/ufdub/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/uk/ufdub/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/ufdub/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/uk/ufdub/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/anime1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/anime1/build.gradle -------------------------------------------------------------------------------- /src/zh/anime1/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/anime1/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/anime1/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/anime1/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/anime1/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/anime1/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/hanime1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/hanime1/build.gradle -------------------------------------------------------------------------------- /src/zh/hanime1/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/hanime1/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/hanime1/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/hanime1/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/iyf/build.gradle -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/iyf/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/iyf/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/iyf/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/iyf/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/iyf/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/nivod/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/nivod/build.gradle -------------------------------------------------------------------------------- /src/zh/nivod/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/nivod/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/nivod/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/nivod/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/nivod/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/nivod/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/nivod/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/nivod/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xfani/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/xfani/build.gradle -------------------------------------------------------------------------------- /src/zh/xfani/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/xfani/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xfani/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/xfani/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xfani/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/xfani/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xfani/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/xfani/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xiaoxintv/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/src/zh/xiaoxintv/build.gradle -------------------------------------------------------------------------------- /template/README-REMOVED-TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/template/README-REMOVED-TEMPLATE.md -------------------------------------------------------------------------------- /template/README-TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuzono/aniyomi-extensions/HEAD/template/README-TEMPLATE.md --------------------------------------------------------------------------------