├── .editorconfig ├── .gitattributes ├── .github ├── 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_removal.yml ├── pull_request_template.md ├── readme-images │ └── app-icon.png ├── scripts │ ├── bump-versions.py │ ├── commit-repo.sh │ ├── create-repo.py │ ├── move-apks.py │ └── sign-apks.sh └── workflows │ ├── batch_close_issues.yml │ ├── build_pull_request.yml │ ├── build_push.yml │ ├── issue_moderator.yml │ └── lock.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build.gradle.kts ├── buildSrc ├── build.gradle.kts ├── settings.gradle.kts └── src │ └── main │ └── kotlin │ ├── AndroidConfig.kt │ ├── Extensions.kt │ ├── lib-android.gradle.kts │ ├── lib-kotlin.gradle.kts │ └── lib-multisrc.gradle.kts ├── common.gradle ├── core ├── AndroidManifest.xml ├── build.gradle.kts └── 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 │ │ └── extractors │ │ └── DopeFlixExtractor.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 ├── 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 ├── 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 │ │ ├── assets │ │ ├── crypto-js.js │ │ ├── megacloud.decodedpng.js │ │ └── megacloud.getsrcs.js │ │ └── java │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── lib │ │ └── megacloudextractor │ │ ├── MegaCloudExtractor.kt │ │ └── WebViewResolver.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 ├── 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 ├── renovate.json ├── repositories.gradle.kts ├── 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 │ ├── hikari │ │ ├── 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 │ │ │ └── hikari │ │ │ ├── Dto.kt │ │ │ ├── Filters.kt │ │ │ └── Hikari.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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 ├── 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 │ │ │ └── WebViewResolver.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 │ ├── 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 │ ├── 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 │ ├── animeowl │ │ ├── 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 │ │ │ └── animeowl │ │ │ ├── AnimeOwl.kt │ │ │ ├── AnimeOwlDto.kt │ │ │ └── extractors │ │ │ └── OwlExtractor.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 │ │ │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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 │ └── 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 │ ├── 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 │ │ │ ├── Jkanime.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 │ ├── streamingcommunity │ │ ├── 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 │ │ │ └── streamingcommunity │ │ │ ├── StreamingCommunity.kt │ │ │ └── StreamingCommunityDto.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 │ ├── 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 /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/readme-images/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/.github/readme-images/app-icon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | .DS_Store 5 | build/ 6 | /captures 7 | .idea/ 8 | *.iml 9 | repo/ 10 | apk/ 11 | gen 12 | generated-src/ 13 | -------------------------------------------------------------------------------- /core/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/core/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/core/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/core/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/core/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/core/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /lib-multisrc/anilist/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-multisrc") 3 | } 4 | 5 | baseVersionCode = 4 6 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /lib-multisrc/dooplay/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-multisrc") 3 | } 4 | 5 | baseVersionCode = 3 6 | -------------------------------------------------------------------------------- /lib/amazon-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } -------------------------------------------------------------------------------- /lib/bangumi-scraper/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | compileOnly(libs.aniyomi.lib) 7 | } -------------------------------------------------------------------------------- /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/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: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /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/fusevideo-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /lib/gogostream-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /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/javcoverfetcher/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/lulu-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } -------------------------------------------------------------------------------- /lib/lycoris-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/mixdrop-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:unpacker")) 7 | } 8 | -------------------------------------------------------------------------------- /lib/okru-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /lib/playlist-utils/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/savefile-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /lib/sendvid-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /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/streamhub-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /lib/streamlare-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/streamsilk-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /lib/streamtape-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/synchrony/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/universal-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /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/vidhide-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /lib/vidmoly-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } -------------------------------------------------------------------------------- /lib/vidsrc-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } 8 | -------------------------------------------------------------------------------- /lib/vk-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | -------------------------------------------------------------------------------- /lib/voe-extractor/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("lib-android") 3 | } 4 | 5 | dependencies { 6 | implementation(project(":lib:playlist-utils")) 7 | } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "config:base", 5 | ":dependencyDashboard" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /src/all/animeonsen/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'AnimeOnsen' 3 | extClass = '.AnimeOnsen' 4 | extVersionCode = 7 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/all/animeonsen/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/animeonsen/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/animeonsen/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/animeonsen/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/animexin/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/animexin/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/animexin/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/animexin/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/animexin/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/animexin/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/animexin/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/animexin/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/anizone/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/anizone/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/anizone/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/anizone/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/anizone/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/anizone/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/anizone/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/anizone/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/anizone/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/anizone/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/hikari/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/hikari/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/hikari/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/hikari/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/hikari/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/hikari/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/hikari/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/hikari/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/hikari/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/hikari/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jable/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Jable' 3 | extClass = '.JableFactory' 4 | extVersionCode = 2 5 | isNsfw = true 6 | } 7 | 8 | apply from: "$rootDir/common.gradle" 9 | -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/jable/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/jable/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/jable/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/jable/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/jable/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/jable/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javgg/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javgg/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javgg/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javgg/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javgg/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javgg/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javguru/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javguru/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javguru/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javguru/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javguru/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javguru/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javguru/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javguru/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/javguru/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/javguru/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/lmanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/lmanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/lmanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/lmanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/lmanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/lmanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/lmanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/lmanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/lmanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/lmanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/missav/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/missav/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/missav/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/missav/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/missav/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/missav/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/missav/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/missav/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/missav/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/missav/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/newgrounds/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/newgrounds/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/newgrounds/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/newgrounds/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/subsplease/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/subsplease/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/subsplease/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/subsplease/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/sudatchi/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/sudatchi/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/sudatchi/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/sudatchi/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/sudatchi/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/sudatchi/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/sudatchi/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/sudatchi/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/supjav/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/supjav/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/supjav/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/supjav/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/supjav/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/supjav/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/supjav/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/supjav/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/supjav/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/supjav/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/torrentio/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/torrentio/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/torrentio/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/torrentio/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/all/torrentio/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/all/torrentio/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/anime4up/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/anime4up/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/anime4up/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/anime4up/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/anime4up/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/anime4up/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/anime4up/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/anime4up/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/anime4up/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/anime4up/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeblkom/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animeblkom/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeblkom/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animeblkom/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeblkom/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animeblkom/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeiat/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Animeiat' 3 | extClass = '.Animeiat' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/ar/animeiat/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animeiat/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeiat/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animeiat/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeiat/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animeiat/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeiat/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animeiat/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animeiat/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animeiat/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animelek/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animelek/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animelek/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animelek/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animelek/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animelek/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animelek/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animelek/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animelek/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animelek/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animerco/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animerco/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animerco/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animerco/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animerco/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animerco/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animerco/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animerco/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/animerco/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/animerco/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabanime/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'ArabAnime' 3 | extClass = '.ArabAnime' 4 | extVersionCode = 2 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/ar/arabanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/arabanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/arabanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/arabanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/arabanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabseed/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/arabseed/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabseed/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/arabseed/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabseed/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/arabseed/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabseed/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/arabseed/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/arabseed/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/arabseed/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/asia2tv/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/asia2tv/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/asia2tv/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/asia2tv/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/asia2tv/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/asia2tv/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/asia2tv/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/asia2tv/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/asia2tv/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/asia2tv/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/cimaleek/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/cimaleek/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/cimaleek/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/cimaleek/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/cimaleek/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/cimaleek/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/cimaleek/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/cimaleek/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/cimaleek/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/cimaleek/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/egydead/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/egydead/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/egydead/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/egydead/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/egydead/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/egydead/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/egydead/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/egydead/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/egydead/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/egydead/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/faselhd/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/faselhd/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/faselhd/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/faselhd/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/faselhd/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/faselhd/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/faselhd/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/faselhd/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/faselhd/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/faselhd/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/mycima/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/mycima/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/mycima/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/mycima/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/mycima/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/mycima/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/okanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/okanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/okanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/okanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/okanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/okanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/okanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/okanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/okanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/okanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/witanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/witanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/witanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/witanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/witanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/witanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/witanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/witanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ar/witanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ar/witanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animebase/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animebase/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animebase/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animebase/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animebase/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animebase/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animebase/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animebase/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animeloads/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animeloads/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animeloads/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animeloads/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animeloads/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animeloads/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animestream/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Anime-Stream' 3 | extClass = '.AnimeStream' 4 | extVersionCode = 2 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/de/animestream/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animestream/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animestream/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animestream/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animetoast/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animetoast/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animetoast/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animetoast/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/animetoast/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/animetoast/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/aniworld/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/aniworld/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/aniworld/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/aniworld/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/aniworld/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/aniworld/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/aniworld/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/aniworld/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/aniworld/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/aniworld/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/cinemathek/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/cinemathek/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/cinemathek/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/cinemathek/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/cinemathek/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/cinemathek/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/einfach/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/einfach/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/einfach/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/einfach/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/einfach/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/einfach/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/einfach/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/einfach/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/einfach/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/einfach/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/filmpalast/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/filmpalast/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/filmpalast/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/filmpalast/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/filmpalast/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/filmpalast/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kinoking/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kinoking/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kinoking/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kinoking/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kinoking/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kinoking/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kinoking/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kinoking/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kinoking/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kinoking/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kool/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kool/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kool/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kool/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/kool/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/kool/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/movie4k/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/movie4k/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/movie4k/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/movie4k/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/movie4k/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/movie4k/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/movie4k/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/movie4k/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/de/movie4k/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/de/movie4k/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/allanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/allanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/allanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/allanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/allanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanimechi/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/allanimechi/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/allanimechi/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/allanimechi/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animegg/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'AnimeGG' 3 | extClass = '.AnimeGG' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/animegg/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animegg/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animegg/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animegg/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animegg/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animegg/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animegg/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animegg/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animegg/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animegg/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animekhor/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animekhor/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animekhor/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animekhor/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animekhor/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animekhor/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animekhor/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animekhor/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animenosub/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animenosub/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animenosub/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animenosub/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animenosub/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animenosub/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animeowl/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animeowl/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animeowl/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animeowl/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animeowl/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animeowl/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animeowl/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animeowl/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animeowl/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animeowl/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animepahe/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animepahe/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animepahe/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animepahe/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animepahe/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animepahe/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animepahe/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animepahe/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animeparadise/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'AnimeParadise' 3 | extClass = '.AnimeParadise' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/animetake/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animetake/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animetake/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animetake/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animetake/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animetake/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/animetake/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/animetake/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniplay/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniplay/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniplay/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniplay/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniplay/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniplay/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniplay/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwatch/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniwatch/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwatch/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniwatch/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwatch/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniwatch/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwatch/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniwatch/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/aniwatch/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/aniwatch/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/asiaflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/asiaflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/asiaflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/asiaflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/asiaflix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/asiaflix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/asiaflix/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/asiaflix/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/asiaflix/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/asiaflix/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/bestdubbedanime/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'BestDubbedAnime' 3 | extClass = '.BestDubbedAnime' 4 | extVersionCode = 4 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/dopebox/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/dopebox/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopebox/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/dopebox/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopebox/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/dopebox/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopebox/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/dopebox/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/dopebox/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/dopebox/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/edytjedhgmdhm/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'edytjedhgmdhm' 3 | extClass = '.Edytjedhgmdhm' 4 | extVersionCode = 5 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/hahomoe/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'haho.moe' 3 | extClass = '.HahoMoe' 4 | extVersionCode = 10 5 | isNsfw = true 6 | } 7 | 8 | apply from: "$rootDir/common.gradle" 9 | -------------------------------------------------------------------------------- /src/en/hahomoe/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hahomoe/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hahomoe/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hahomoe/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hahomoe/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hahomoe/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hahomoe/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hahomoe/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hahomoe/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hahomoe/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'hanime.tv' 3 | extClass = '.Hanime' 4 | extVersionCode = 18 5 | isNsfw = true 6 | } 7 | 8 | apply from: "$rootDir/common.gradle" -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hentaimama/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hentaimama/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hentaimama/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hentaimama/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hentaimama/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hentaimama/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hstream/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Hstream' 3 | extClass = '.Hstream' 4 | extVersionCode = 9 5 | isNsfw = true 6 | } 7 | 8 | apply from: "$rootDir/common.gradle" 9 | -------------------------------------------------------------------------------- /src/en/hstream/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hstream/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hstream/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hstream/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hstream/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hstream/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hstream/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hstream/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/hstream/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/hstream/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/jpfilms/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/jpfilms/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/jpfilms/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/jpfilms/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/jpfilms/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/jpfilms/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/jpfilms/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/jpfilms/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/jpfilms/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/jpfilms/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kaido/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kaido/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kaido/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kaido/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kaido/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kaido/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kawaiifu/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kawaiifu/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kawaiifu/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kawaiifu/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kawaiifu/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kawaiifu/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kawaiifu/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kawaiifu/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kawaiifu/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kawaiifu/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kayoanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kayoanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kayoanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kayoanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kayoanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kayoanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kayoanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kayoanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kimoitv/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'KimoiTV' 3 | extClass = '.KimoiTV' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/kimoitv/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kimoitv/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kimoitv/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kimoitv/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kimoitv/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kimoitv/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kimoitv/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kimoitv/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kimoitv/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kimoitv/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kissanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kissanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kissanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kissanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kissanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kissanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kissanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kissanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'KissKH' 3 | extClass = '.KissKH' 4 | extVersionCode = 3 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kisskh/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kisskh/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kisskh/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kisskh/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/kisskh/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/kisskh/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/moviesmod/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'MoviesMod' 3 | extClass = '.MoviesMod' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/moviesmod/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/moviesmod/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/moviesmod/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/moviesmod/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/moviesmod/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/moviesmod/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/moviesmod/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/moviesmod/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/myanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/myanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/myanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/myanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/myanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/myanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/noobsubs/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'NoobSubs' 3 | extClass = '.NoobSubs' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/noobsubs/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/noobsubs/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/noobsubs/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/noobsubs/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/noobsubs/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/noobsubs/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/noobsubs/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/noobsubs/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/noobsubs/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/noobsubs/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/oppaistream/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/oppaistream/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/oppaistream/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/oppaistream/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/putlocker/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/putlocker/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/putlocker/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/putlocker/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/putlocker/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/putlocker/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/putlocker/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/putlocker/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/rule34video/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/rule34video/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/rule34video/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/rule34video/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/sflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/sflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/sflix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/sflix/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/sflix/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/sflix/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/superstream/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/superstream/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/superstream/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/superstream/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/tokuzilla/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/tokuzilla/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/tokuzilla/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/tokuzilla/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/tokuzilla/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/tokuzilla/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/tokuzilla/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/tokuzilla/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/uhdmovies/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'UHD Movies' 3 | extClass = '.UHDMovies' 4 | extVersionCode = 19 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/uhdmovies/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/uhdmovies/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/uhdmovies/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/uhdmovies/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/uhdmovies/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/uhdmovies/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/uhdmovies/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/uhdmovies/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcofun/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Wcofun' 3 | extClass = '.Wcofun' 4 | extVersionCode = 14 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/wcofun/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/wcofun/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/wcofun/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/wcofun/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcofun/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/wcofun/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcostream/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'WCOStream' 3 | extClass = '.WCOStream' 4 | extVersionCode = 6 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/en/wcostream/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/wcostream/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcostream/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/wcostream/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcostream/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/wcostream/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/wcostream/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/wcostream/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/zoro/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/zoro/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/zoro/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/zoro/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/en/zoro/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/en/zoro/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animebum/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animebum/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animebum/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animebum/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animebum/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animebum/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animebum/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animebum/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animebum/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animebum/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animefenix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animefenix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animefenix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animefenix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animefenix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animefenix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeflv/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeflv/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeflv/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeflv/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeflv/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeflv/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeflv/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeflv/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeflv/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeflv/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeid/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeid/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeid/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeid/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeid/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeid/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeid/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeid/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeid/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeid/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animejl/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animejl/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animejl/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animejl/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animejl/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animejl/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animejl/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animejl/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animejl/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animejl/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animemovil/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animemovil/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animemovil/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animemovil/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animemovil/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animemovil/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animenix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animenix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animenix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animenix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animenix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animenix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animenix/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animenix/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animenix/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animenix/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeyt/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeyt/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeyt/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeyt/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeyt/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeyt/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeyt/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeyt/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeyt/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeyt/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeytes/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeytes/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeytes/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeytes/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeytes/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeytes/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/animeytes/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/animeytes/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/azanimex/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'az-animex' 3 | extClass = '.Azanimex' 4 | extVersionCode = 2 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/es/azanimex/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/azanimex/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/azanimex/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/azanimex/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/azanimex/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/azanimex/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/azanimex/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/azanimex/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/azanimex/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/azanimex/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/beatzanime/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'BeatZ Anime' 3 | extClass = '.BeatZAnime' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" -------------------------------------------------------------------------------- /src/es/beatzanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/beatzanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/beatzanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/beatzanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/beatzanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/beatzanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cine24h/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cine24h/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cine24h/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cine24h/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cine24h/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cine24h/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cine24h/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cine24h/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cine24h/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cine24h/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cinecalidad/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cinecalidad/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cinecalidad/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cinecalidad/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cineplus123/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cineplus123/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cineplus123/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cineplus123/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cuevana/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cuevana/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cuevana/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cuevana/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cuevana/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cuevana/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cuevana/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cuevana/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/cuevana/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/cuevana/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/doramasflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/doramasflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/doramasflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/doramasflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/doramasyt/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/doramasyt/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/doramasyt/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/doramasyt/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/doramasyt/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/doramasyt/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/doramasyt/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/doramasyt/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/ennovelas/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/ennovelas/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/ennovelas/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/ennovelas/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/ennovelas/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/ennovelas/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/ennovelas/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/ennovelas/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/fanpelis/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/fanpelis/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/fanpelis/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/fanpelis/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/fanpelis/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/fanpelis/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/fanpelis/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/fanpelis/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/fanpelis/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/fanpelis/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/flixlatam/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/flixlatam/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/flixlatam/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/flixlatam/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/flixlatam/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/flixlatam/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/flixlatam/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/flixlatam/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/gnula/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/gnula/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/gnula/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/gnula/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/gnula/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/gnula/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hackstore/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hackstore/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hackstore/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hackstore/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hackstore/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hackstore/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hackstore/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hackstore/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaijk/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaijk/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaijk/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaijk/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaijk/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaijk/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaijk/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaijk/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaijk/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaijk/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaila/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaila/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaila/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaila/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaila/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaila/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaila/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaila/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaila/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaila/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaitk/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaitk/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaitk/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaitk/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaitk/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaitk/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaitk/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaitk/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/hentaitk/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/hentaitk/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/homecine/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/homecine/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/homecine/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/homecine/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/homecine/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/homecine/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/homecine/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/homecine/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/homecine/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/homecine/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkhentai/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkhentai/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkhentai/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkhentai/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkhentai/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkhentai/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkhentai/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkhentai/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/jkhentai/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/jkhentai/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/katanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/katanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/katanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/katanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/katanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/katanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/katanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/katanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/katanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/katanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/lacartoons/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/lacartoons/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/lacartoons/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/lacartoons/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/lacartoons/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/lacartoons/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/latanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/latanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/latanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/latanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/latanime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/latanime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/latanime/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/latanime/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/latanime/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/latanime/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/legionanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/legionanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/legionanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/legionanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/locopelis/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/locopelis/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/locopelis/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/locopelis/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/locopelis/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/locopelis/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/locopelis/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/locopelis/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/metroseries/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/metroseries/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/metroseries/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/metroseries/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/mhdflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/mhdflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/mhdflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/mhdflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/mhdflix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/mhdflix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/mhdflix/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/mhdflix/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/mhdflix/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/mhdflix/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/monoschinos/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/monoschinos/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/monoschinos/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/monoschinos/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/otakuverso/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/otakuverso/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/otakuverso/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/otakuverso/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/otakuverso/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/otakuverso/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pandrama/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pandrama/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pandrama/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pandrama/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pandrama/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pandrama/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pandrama/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pandrama/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pandrama/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pandrama/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pelisforte/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pelisforte/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pelisforte/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pelisforte/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pelisforte/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pelisforte/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pelisplushd/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pelisplushd/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/es/pelisplushd/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/es/pelisplushd/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/animevostfr/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'AnimeVostFr' 3 | extClass = '.AnimeVostFr' 4 | extVersionCode = 2 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/fr/anisama/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/anisama/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/anisama/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/anisama/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/anisama/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/anisama/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/franime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/franime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/franime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/franime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/franime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/franime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/hds/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/hds/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/hds/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/hds/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/hds/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/hds/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/jetanime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/jetanime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/jetanime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/jetanime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/mykdrama/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/mykdrama/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/mykdrama/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/mykdrama/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/otakufr/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/otakufr/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/otakufr/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/otakufr/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/otakufr/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/otakufr/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/vostfree/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/vostfree/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/vostfree/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/vostfree/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/wiflix/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/wiflix/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/wiflix/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/wiflix/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/wiflix/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/wiflix/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/fr/wiflix/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/fr/wiflix/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/hi/yomovies/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/hi/yomovies/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/hi/yomovies/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/hi/yomovies/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/kuronime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/id/kuronime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/kuronime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/id/kuronime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/neonime/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/id/neonime/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/neonime/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/id/neonime/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/neonime/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/id/neonime/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/nimegami/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/id/nimegami/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/nimegami/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/id/nimegami/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/oploverz/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Oploverz' 3 | extClass = '.Oploverz' 4 | extVersionCode = 26 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/id/oploverz/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/id/oploverz/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/oploverz/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/id/oploverz/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/id/samehadaku/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Samehadaku' 3 | extClass = '.Samehadaku' 4 | extVersionCode = 7 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/it/animesaturn/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Anime Saturn' 3 | extClass = '.AnimeSaturn' 4 | extVersionCode = 10 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/it/animeunity/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'AnimeUnity' 3 | extClass = '.AnimeUnity' 4 | extVersionCode = 9 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/it/aniplay/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/it/aniplay/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/aniplay/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/it/aniplay/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/aniplay/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/it/aniplay/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/vvvvid/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'VVVVID' 3 | extClass = '.VVVVID' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/it/vvvvid/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/it/vvvvid/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/vvvvid/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/it/vvvvid/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/vvvvid/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/it/vvvvid/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/it/vvvvid/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/it/vvvvid/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ko/aniweek/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ko/aniweek/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ko/aniweek/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ko/aniweek/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ko/aniweek/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ko/aniweek/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/docchi/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pl/docchi/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/docchi/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pl/docchi/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/docchi/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pl/docchi/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/docchi/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pl/docchi/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/wbijam/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pl/wbijam/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/wbijam/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pl/wbijam/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/wbijam/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pl/wbijam/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pl/wbijam/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pl/wbijam/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animefire/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Anime Fire' 3 | extClass = '.AnimeFire' 4 | extVersionCode = 7 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/pt/animeq/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/animeq/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animeq/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/animeq/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animeq/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/animeq/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animeq/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/animeq/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animesbr/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/animesbr/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animesbr/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/animesbr/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animescx/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/animescx/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animescx/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/animescx/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/animesroll/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'AnimesROLL' 3 | extClass = '.AnimesROLL' 4 | extVersionCode = 5 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/pt/anitube/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Anitube' 3 | extClass = '.Anitube' 4 | extVersionCode = 24 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/pt/anitube/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/anitube/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/anitube/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/anitube/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/anitube/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/anitube/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/betteranime/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Better Anime' 3 | extClass = '.BetterAnime' 4 | extVersionCode = 12 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/pt/doramogo/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/doramogo/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/doramogo/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/doramogo/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/goyabu/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/goyabu/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/goyabu/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/goyabu/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/goyabu/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/goyabu/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/goyabu/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/goyabu/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/tomato/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Tomato' 3 | extClass = '.Tomato' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/pt/tomato/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/tomato/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/tomato/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/tomato/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/tomato/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/tomato/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/pt/tomato/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/pt/tomato/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ru/animelib/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ru/animelib/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ru/animelib/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/ru/animelib/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/ru/animevost/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Animevost' 3 | extClass = '.Animevost' 4 | extVersionCode = 7 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/tr/animeler/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/tr/animeler/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/animeler/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/tr/animeler/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/anizm/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/tr/anizm/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/anizm/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/tr/anizm/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/anizm/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/tr/anizm/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/anizm/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/tr/anizm/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/anizm/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/tr/anizm/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/hentaizm/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/tr/hentaizm/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/tr/hentaizm/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/tr/hentaizm/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/uakino/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'UAKino' 3 | extClass = '.UAKino' 4 | extVersionCode = 2 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/uk/uakino/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/uk/uakino/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/uakino/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/uk/uakino/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/uakino/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/uk/uakino/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/uakino/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/uk/uakino/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/ufdub/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'UFDub' 3 | extClass = '.UFDub' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/uk/ufdub/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/uk/ufdub/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/ufdub/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/uk/ufdub/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/ufdub/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/uk/ufdub/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/ufdub/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/uk/ufdub/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/uk/ufdub/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/uk/ufdub/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/anime1/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/anime1/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/anime1/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/anime1/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/anime1/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/anime1/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/anime1/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/anime1/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/hanime1/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/hanime1/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/hanime1/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/hanime1/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/hanime1/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/hanime1/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'iyf' 3 | extClass = '.Iyf' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/iyf/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/iyf/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/iyf/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/iyf/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/iyf/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/iyf/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/nivod/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Nivod' 3 | extClass = '.Nivod' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/zh/nivod/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/nivod/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/nivod/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/nivod/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/nivod/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/nivod/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/nivod/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/nivod/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/nivod/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/nivod/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xfani/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Xfani' 3 | extClass = '.Xfani' 4 | extVersionCode = 5 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | -------------------------------------------------------------------------------- /src/zh/xfani/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/xfani/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xfani/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/xfani/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xfani/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/xfani/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xfani/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/xfani/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xfani/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kohi-den/extensions-source/38368f56ac50e0d70f9f192caaf1613e37b120d1/src/zh/xfani/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/zh/xiaoxintv/build.gradle: -------------------------------------------------------------------------------- 1 | ext { 2 | extName = 'Xiaoxintv' 3 | extClass = '.Xiaoxintv' 4 | extVersionCode = 1 5 | } 6 | 7 | apply from: "$rootDir/common.gradle" 8 | --------------------------------------------------------------------------------