Repository: aniyomiorg/aniyomi Branch: main Commit: 2f5cf775c4d9 Files: 1961 Total size: 13.7 MB Directory structure: gitextract_glkkya1o/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yml │ │ ├── report_issue.yml │ │ └── request_feature.yml │ ├── pull_request_template.md │ ├── renovate.json5 │ └── workflows/ │ ├── build_pull_request.yml │ └── build_push.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app/ │ ├── .idea/ │ │ ├── .gitignore │ │ ├── .name │ │ ├── discord.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── build.gradle.kts │ ├── proguard-android-optimize.txt │ ├── proguard-rules.pro │ ├── shortcuts.xml │ └── src/ │ ├── debug/ │ │ └── res/ │ │ ├── drawable/ │ │ │ └── ic_launcher_foreground.xml │ │ └── mipmap/ │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── main/ │ │ ├── AndroidManifest.xml │ │ ├── assets/ │ │ │ └── aniyomi.lua │ │ ├── baseline-prof.txt │ │ ├── java/ │ │ │ ├── aniyomi/ │ │ │ │ └── util/ │ │ │ │ └── DataSaver.kt │ │ │ ├── eu/ │ │ │ │ └── kanade/ │ │ │ │ ├── core/ │ │ │ │ │ ├── preference/ │ │ │ │ │ │ ├── CheckboxState.kt │ │ │ │ │ │ └── PreferenceMutableState.kt │ │ │ │ │ └── util/ │ │ │ │ │ ├── AnimeSourceUtil.kt │ │ │ │ │ ├── CollectionUtils.kt │ │ │ │ │ ├── MangaSourceUtil.kt │ │ │ │ │ └── RxJavaExtensions.kt │ │ │ │ ├── domain/ │ │ │ │ │ ├── DomainModule.kt │ │ │ │ │ ├── SYDomainModule.kt │ │ │ │ │ ├── base/ │ │ │ │ │ │ ├── BasePreferences.kt │ │ │ │ │ │ └── ExtensionInstallerPreference.kt │ │ │ │ │ ├── download/ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ └── interactor/ │ │ │ │ │ │ │ └── DeleteEpisodeDownload.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ └── interactor/ │ │ │ │ │ │ └── DeleteChapterDownload.kt │ │ │ │ │ ├── entries/ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ │ ├── SetAnimeViewerFlags.kt │ │ │ │ │ │ │ │ ├── SyncSeasonsWithSource.kt │ │ │ │ │ │ │ │ └── UpdateAnime.kt │ │ │ │ │ │ │ └── model/ │ │ │ │ │ │ │ └── Anime.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ ├── GetExcludedScanlators.kt │ │ │ │ │ │ │ ├── SetExcludedScanlators.kt │ │ │ │ │ │ │ ├── SetMangaViewerFlags.kt │ │ │ │ │ │ │ └── UpdateManga.kt │ │ │ │ │ │ └── model/ │ │ │ │ │ │ └── Manga.kt │ │ │ │ │ ├── extension/ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ │ ├── GetAnimeExtensionLanguages.kt │ │ │ │ │ │ │ │ ├── GetAnimeExtensionSources.kt │ │ │ │ │ │ │ │ ├── GetAnimeExtensionsByType.kt │ │ │ │ │ │ │ │ └── TrustAnimeExtension.kt │ │ │ │ │ │ │ └── model/ │ │ │ │ │ │ │ └── AnimeExtensions.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ ├── GetMangaExtensionLanguages.kt │ │ │ │ │ │ │ ├── GetMangaExtensionSources.kt │ │ │ │ │ │ │ ├── GetMangaExtensionsByType.kt │ │ │ │ │ │ │ └── TrustMangaExtension.kt │ │ │ │ │ │ └── model/ │ │ │ │ │ │ └── MangaExtensions.kt │ │ │ │ │ ├── items/ │ │ │ │ │ │ ├── chapter/ │ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ │ ├── GetAvailableScanlators.kt │ │ │ │ │ │ │ │ ├── SetReadStatus.kt │ │ │ │ │ │ │ │ └── SyncChaptersWithSource.kt │ │ │ │ │ │ │ └── model/ │ │ │ │ │ │ │ ├── Chapter.kt │ │ │ │ │ │ │ └── ChapterFilter.kt │ │ │ │ │ │ └── episode/ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ ├── SetSeenStatus.kt │ │ │ │ │ │ │ └── SyncEpisodesWithSource.kt │ │ │ │ │ │ └── model/ │ │ │ │ │ │ ├── Episode.kt │ │ │ │ │ │ └── EpisodeFilter.kt │ │ │ │ │ ├── source/ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ │ ├── GetAnimeIncognitoState.kt │ │ │ │ │ │ │ │ ├── GetAnimeSourcesWithFavoriteCount.kt │ │ │ │ │ │ │ │ ├── GetEnabledAnimeSources.kt │ │ │ │ │ │ │ │ ├── GetLanguagesWithAnimeSources.kt │ │ │ │ │ │ │ │ ├── ToggleAnimeIncognito.kt │ │ │ │ │ │ │ │ ├── ToggleAnimeSource.kt │ │ │ │ │ │ │ │ └── ToggleAnimeSourcePin.kt │ │ │ │ │ │ │ └── model/ │ │ │ │ │ │ │ └── AnimeSource.kt │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ ├── SetMigrateSorting.kt │ │ │ │ │ │ │ └── ToggleLanguage.kt │ │ │ │ │ │ ├── manga/ │ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ │ ├── GetEnabledMangaSources.kt │ │ │ │ │ │ │ │ ├── GetLanguagesWithMangaSources.kt │ │ │ │ │ │ │ │ ├── GetMangaIncognitoState.kt │ │ │ │ │ │ │ │ ├── GetMangaSourcesWithFavoriteCount.kt │ │ │ │ │ │ │ │ ├── ToggleExcludeFromMangaDataSaver.kt │ │ │ │ │ │ │ │ ├── ToggleMangaIncognito.kt │ │ │ │ │ │ │ │ ├── ToggleMangaSource.kt │ │ │ │ │ │ │ │ └── ToggleMangaSourcePin.kt │ │ │ │ │ │ │ └── model/ │ │ │ │ │ │ │ └── MangaSource.kt │ │ │ │ │ │ └── service/ │ │ │ │ │ │ └── SourcePreferences.kt │ │ │ │ │ ├── track/ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ │ ├── AddAnimeTracks.kt │ │ │ │ │ │ │ │ ├── RefreshAnimeTracks.kt │ │ │ │ │ │ │ │ ├── SyncEpisodeProgressWithTrack.kt │ │ │ │ │ │ │ │ └── TrackEpisode.kt │ │ │ │ │ │ │ ├── model/ │ │ │ │ │ │ │ │ └── AnimeTrack.kt │ │ │ │ │ │ │ ├── service/ │ │ │ │ │ │ │ │ └── DelayedAnimeTrackingUpdateJob.kt │ │ │ │ │ │ │ └── store/ │ │ │ │ │ │ │ └── DelayedAnimeTrackingStore.kt │ │ │ │ │ │ ├── manga/ │ │ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ │ │ ├── AddMangaTracks.kt │ │ │ │ │ │ │ │ ├── RefreshMangaTracks.kt │ │ │ │ │ │ │ │ ├── SyncChapterProgressWithTrack.kt │ │ │ │ │ │ │ │ └── TrackChapter.kt │ │ │ │ │ │ │ ├── model/ │ │ │ │ │ │ │ │ └── MangaTrack.kt │ │ │ │ │ │ │ ├── service/ │ │ │ │ │ │ │ │ └── DelayedMangaTrackingUpdateJob.kt │ │ │ │ │ │ │ └── store/ │ │ │ │ │ │ │ └── DelayedMangaTrackingStore.kt │ │ │ │ │ │ ├── model/ │ │ │ │ │ │ │ └── AutoTrackState.kt │ │ │ │ │ │ └── service/ │ │ │ │ │ │ └── TrackPreferences.kt │ │ │ │ │ └── ui/ │ │ │ │ │ ├── UiPreferences.kt │ │ │ │ │ └── model/ │ │ │ │ │ ├── AppTheme.kt │ │ │ │ │ ├── NavStyle.kt │ │ │ │ │ ├── StartScreen.kt │ │ │ │ │ ├── TabletUiMode.kt │ │ │ │ │ └── ThemeMode.kt │ │ │ │ ├── presentation/ │ │ │ │ │ ├── browse/ │ │ │ │ │ │ ├── BaseBrowseItem.kt │ │ │ │ │ │ ├── BrowseBadges.kt │ │ │ │ │ │ ├── BrowseSourceDialogs.kt │ │ │ │ │ │ ├── BrowseSourceLoadingItem.kt │ │ │ │ │ │ ├── GlobalSearchResultItems.kt │ │ │ │ │ │ ├── GlobalSerachCard.kt │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── AnimeExtensionDetailsScreen.kt │ │ │ │ │ │ │ ├── AnimeExtensionFilterScreen.kt │ │ │ │ │ │ │ ├── AnimeExtensionsScreen.kt │ │ │ │ │ │ │ ├── AnimeSourcesFilterScreen.kt │ │ │ │ │ │ │ ├── AnimeSourcesScreen.kt │ │ │ │ │ │ │ ├── BrowseAnimeSourceScreen.kt │ │ │ │ │ │ │ ├── GlobalAnimeSearchScreen.kt │ │ │ │ │ │ │ ├── MigrateAnimeScreen.kt │ │ │ │ │ │ │ ├── MigrateAnimeSearchScreen.kt │ │ │ │ │ │ │ ├── MigrateAnimeSourceScreen.kt │ │ │ │ │ │ │ └── components/ │ │ │ │ │ │ │ ├── BaseAnimeSourceItem.kt │ │ │ │ │ │ │ ├── BrowseAnimeIcons.kt │ │ │ │ │ │ │ ├── BrowseAnimeSourceComfortableGrid.kt │ │ │ │ │ │ │ ├── BrowseAnimeSourceCompactGrid.kt │ │ │ │ │ │ │ ├── BrowseAnimeSourceList.kt │ │ │ │ │ │ │ ├── BrowseAnimeSourceToolbar.kt │ │ │ │ │ │ │ ├── GlobalAnimeSearchCardRow.kt │ │ │ │ │ │ │ └── GlobalAnimeSearchToolbar.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── BrowseMangaSourceScreen.kt │ │ │ │ │ │ ├── GlobalMangaSearchScreen.kt │ │ │ │ │ │ ├── MangaExtensionDetailsScreen.kt │ │ │ │ │ │ ├── MangaExtensionFilterScreen.kt │ │ │ │ │ │ ├── MangaExtensionsScreen.kt │ │ │ │ │ │ ├── MangaSourcesFilterScreen.kt │ │ │ │ │ │ ├── MangaSourcesScreen.kt │ │ │ │ │ │ ├── MigrateMangaScreen.kt │ │ │ │ │ │ ├── MigrateMangaSearchScreen.kt │ │ │ │ │ │ ├── MigrateMangaSourceScreen.kt │ │ │ │ │ │ └── components/ │ │ │ │ │ │ ├── BaseMangaSourceItem.kt │ │ │ │ │ │ ├── BrowseMangaIcons.kt │ │ │ │ │ │ ├── BrowseMangaSourceComfortableGrid.kt │ │ │ │ │ │ ├── BrowseMangaSourceCompactGrid.kt │ │ │ │ │ │ ├── BrowseMangaSourceList.kt │ │ │ │ │ │ ├── BrowseMangaSourceToolbar.kt │ │ │ │ │ │ ├── GlobalMangaSearchCardRow.kt │ │ │ │ │ │ └── GlobalMangaSearchToolbar.kt │ │ │ │ │ ├── category/ │ │ │ │ │ │ ├── AnimeCategoryScreen.kt │ │ │ │ │ │ ├── CategoryExtensions.kt │ │ │ │ │ │ ├── MangaCategoryScreen.kt │ │ │ │ │ │ └── components/ │ │ │ │ │ │ ├── CategoryDialogs.kt │ │ │ │ │ │ ├── CategoryFloatingActionButton.kt │ │ │ │ │ │ └── CategoryListItem.kt │ │ │ │ │ ├── components/ │ │ │ │ │ │ ├── AdaptiveSheet.kt │ │ │ │ │ │ ├── AppBar.kt │ │ │ │ │ │ ├── Banners.kt │ │ │ │ │ │ ├── DateText.kt │ │ │ │ │ │ ├── DropdownMenu.kt │ │ │ │ │ │ ├── EmptyScreen.kt │ │ │ │ │ │ ├── EntryDownloadDropdownMenu.kt │ │ │ │ │ │ ├── FloatingActionAddButton.kt │ │ │ │ │ │ ├── ItemDownloadIndicator.kt │ │ │ │ │ │ ├── TabbedDialog.kt │ │ │ │ │ │ └── TabbedScreen.kt │ │ │ │ │ ├── crash/ │ │ │ │ │ │ └── CrashScreen.kt │ │ │ │ │ ├── entries/ │ │ │ │ │ │ ├── EntryScreenConstants.kt │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── AnimeScreen.kt │ │ │ │ │ │ │ ├── DuplicateAnimeDialog.kt │ │ │ │ │ │ │ ├── EpisodeOptionsDialogScreen.kt │ │ │ │ │ │ │ ├── EpisodeSettingsDialog.kt │ │ │ │ │ │ │ ├── SeasonSettingsDialog.kt │ │ │ │ │ │ │ └── components/ │ │ │ │ │ │ │ ├── AnimeEpisodeListItem.kt │ │ │ │ │ │ │ ├── AnimeImagesDialog.kt │ │ │ │ │ │ │ ├── AnimeInfoHeader.kt │ │ │ │ │ │ │ ├── AnimeSeasonListItem.kt │ │ │ │ │ │ │ ├── BaseAnimeListItem.kt │ │ │ │ │ │ │ └── EpisodeDownloadIndicator.kt │ │ │ │ │ │ ├── components/ │ │ │ │ │ │ │ ├── DotSeparatorText.kt │ │ │ │ │ │ │ ├── EntryBottomActionMenu.kt │ │ │ │ │ │ │ ├── EntryToolbar.kt │ │ │ │ │ │ │ ├── ItemCover.kt │ │ │ │ │ │ │ ├── ItemHeader.kt │ │ │ │ │ │ │ ├── ItemsDialogs.kt │ │ │ │ │ │ │ └── MissingItemCountListItem.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── ChapterSettingsDialog.kt │ │ │ │ │ │ ├── DuplicateMangaDialog.kt │ │ │ │ │ │ ├── MangaScreen.kt │ │ │ │ │ │ └── components/ │ │ │ │ │ │ ├── BaseMangaListItem.kt │ │ │ │ │ │ ├── ChapterDownloadIndicator.kt │ │ │ │ │ │ ├── MangaChapterListItem.kt │ │ │ │ │ │ ├── MangaCoverDialog.kt │ │ │ │ │ │ ├── MangaInfoHeader.kt │ │ │ │ │ │ └── ScanlatorFilterDialog.kt │ │ │ │ │ ├── history/ │ │ │ │ │ │ ├── HistoryDialogs.kt │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── AnimeHistoryScreen.kt │ │ │ │ │ │ │ ├── AnimeHistoryScreenModelStateProvider.kt │ │ │ │ │ │ │ └── components/ │ │ │ │ │ │ │ ├── AnimeHistoryItem.kt │ │ │ │ │ │ │ └── AnimeHistoryWithRelationsProvider.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── MangaHistoryScreen.kt │ │ │ │ │ │ ├── MangaHistoryScreenModelStateProvider.kt │ │ │ │ │ │ └── components/ │ │ │ │ │ │ ├── MangaHistoryItem.kt │ │ │ │ │ │ └── MangaHistoryWithRelationsProvider.kt │ │ │ │ │ ├── library/ │ │ │ │ │ │ ├── DeleteLibraryEntryDialog.kt │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── AnimeLibraryComfortableGrid.kt │ │ │ │ │ │ │ ├── AnimeLibraryCompactGrid.kt │ │ │ │ │ │ │ ├── AnimeLibraryContent.kt │ │ │ │ │ │ │ ├── AnimeLibraryList.kt │ │ │ │ │ │ │ ├── AnimeLibraryPager.kt │ │ │ │ │ │ │ └── AnimeLibrarySettingsDialog.kt │ │ │ │ │ │ ├── components/ │ │ │ │ │ │ │ ├── CommonEntryItem.kt │ │ │ │ │ │ │ ├── GlobalSearchItem.kt │ │ │ │ │ │ │ ├── LazyLibraryGrid.kt │ │ │ │ │ │ │ ├── LibraryBadges.kt │ │ │ │ │ │ │ ├── LibraryTabs.kt │ │ │ │ │ │ │ └── LibraryToolbar.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── MangaLibraryComfortableGrid.kt │ │ │ │ │ │ ├── MangaLibraryCompactGrid.kt │ │ │ │ │ │ ├── MangaLibraryContent.kt │ │ │ │ │ │ ├── MangaLibraryList.kt │ │ │ │ │ │ ├── MangaLibraryPager.kt │ │ │ │ │ │ └── MangaLibrarySettingsDialog.kt │ │ │ │ │ ├── more/ │ │ │ │ │ │ ├── LogoHeader.kt │ │ │ │ │ │ ├── MoreScreen.kt │ │ │ │ │ │ ├── NewUpdateScreen.kt │ │ │ │ │ │ ├── onboarding/ │ │ │ │ │ │ │ ├── GuidesStep.kt │ │ │ │ │ │ │ ├── OnboardingScreen.kt │ │ │ │ │ │ │ ├── OnboardingStep.kt │ │ │ │ │ │ │ ├── PermissionStep.kt │ │ │ │ │ │ │ ├── StorageStep.kt │ │ │ │ │ │ │ └── ThemeStep.kt │ │ │ │ │ │ ├── settings/ │ │ │ │ │ │ │ ├── Preference.kt │ │ │ │ │ │ │ ├── PreferenceItem.kt │ │ │ │ │ │ │ ├── PreferenceScaffold.kt │ │ │ │ │ │ │ ├── PreferenceScreen.kt │ │ │ │ │ │ │ ├── screen/ │ │ │ │ │ │ │ │ ├── Commons.kt │ │ │ │ │ │ │ │ ├── SearchableSettings.kt │ │ │ │ │ │ │ │ ├── SettingsAdvancedScreen.kt │ │ │ │ │ │ │ │ ├── SettingsAppearanceScreen.kt │ │ │ │ │ │ │ │ ├── SettingsBrowseScreen.kt │ │ │ │ │ │ │ │ ├── SettingsDataScreen.kt │ │ │ │ │ │ │ │ ├── SettingsDownloadScreen.kt │ │ │ │ │ │ │ │ ├── SettingsLibraryScreen.kt │ │ │ │ │ │ │ │ ├── SettingsMainScreen.kt │ │ │ │ │ │ │ │ ├── SettingsReaderScreen.kt │ │ │ │ │ │ │ │ ├── SettingsSearchScreen.kt │ │ │ │ │ │ │ │ ├── SettingsSecurityScreen.kt │ │ │ │ │ │ │ │ ├── SettingsTrackingScreen.kt │ │ │ │ │ │ │ │ ├── about/ │ │ │ │ │ │ │ │ │ ├── AboutScreen.kt │ │ │ │ │ │ │ │ │ ├── OpenSourceLibraryLicenseScreen.kt │ │ │ │ │ │ │ │ │ └── OpenSourceLicensesScreen.kt │ │ │ │ │ │ │ │ ├── advanced/ │ │ │ │ │ │ │ │ │ ├── ClearAnimeDatabaseScreen.kt │ │ │ │ │ │ │ │ │ └── ClearDatabaseScreen.kt │ │ │ │ │ │ │ │ ├── appearance/ │ │ │ │ │ │ │ │ │ └── AppLanguageScreen.kt │ │ │ │ │ │ │ │ ├── browse/ │ │ │ │ │ │ │ │ │ ├── AnimeExtensionReposScreen.kt │ │ │ │ │ │ │ │ │ ├── AnimeExtensionReposScreenModel.kt │ │ │ │ │ │ │ │ │ ├── MangaExtensionReposScreen.kt │ │ │ │ │ │ │ │ │ ├── MangaExtensionReposScreenModel.kt │ │ │ │ │ │ │ │ │ └── components/ │ │ │ │ │ │ │ │ │ ├── ExtensionReposContent.kt │ │ │ │ │ │ │ │ │ ├── ExtensionReposDialogs.kt │ │ │ │ │ │ │ │ │ └── ExtensionReposScreen.kt │ │ │ │ │ │ │ │ ├── data/ │ │ │ │ │ │ │ │ │ ├── CreateBackupScreen.kt │ │ │ │ │ │ │ │ │ ├── RestoreBackupScreen.kt │ │ │ │ │ │ │ │ │ └── StorageInfo.kt │ │ │ │ │ │ │ │ ├── debug/ │ │ │ │ │ │ │ │ │ ├── BackupSchemaScreen.kt │ │ │ │ │ │ │ │ │ ├── DebugInfoScreen.kt │ │ │ │ │ │ │ │ │ └── WorkerInfoScreen.kt │ │ │ │ │ │ │ │ └── player/ │ │ │ │ │ │ │ │ ├── PlayerSettingsAdvancedScreen.kt │ │ │ │ │ │ │ │ ├── PlayerSettingsAudioScreen.kt │ │ │ │ │ │ │ │ ├── PlayerSettingsDecoderScreen.kt │ │ │ │ │ │ │ │ ├── PlayerSettingsGesturesScreen.kt │ │ │ │ │ │ │ │ ├── PlayerSettingsMainScreen.kt │ │ │ │ │ │ │ │ ├── PlayerSettingsPlayerScreen.kt │ │ │ │ │ │ │ │ ├── PlayerSettingsSubtitleScreen.kt │ │ │ │ │ │ │ │ ├── custombutton/ │ │ │ │ │ │ │ │ │ ├── PlayerSettingsCustomButtonScreen.kt │ │ │ │ │ │ │ │ │ ├── PlayerSettingsCustomButtonScreenModel.kt │ │ │ │ │ │ │ │ │ └── components/ │ │ │ │ │ │ │ │ │ ├── CustomButtonDialogs.kt │ │ │ │ │ │ │ │ │ ├── CustomButtonListItem.kt │ │ │ │ │ │ │ │ │ └── CustomButtonScreen.kt │ │ │ │ │ │ │ │ └── editor/ │ │ │ │ │ │ │ │ ├── PlayerSettingsEditorScreen.kt │ │ │ │ │ │ │ │ ├── PlayerSettingsEditorScreenModel.kt │ │ │ │ │ │ │ │ ├── codeeditor/ │ │ │ │ │ │ │ │ │ ├── CodeEditScreen.kt │ │ │ │ │ │ │ │ │ ├── CodeEditScreenModel.kt │ │ │ │ │ │ │ │ │ ├── Highlight.kt │ │ │ │ │ │ │ │ │ └── SyntaxHighlight.kt │ │ │ │ │ │ │ │ └── components/ │ │ │ │ │ │ │ │ ├── EditorDialogs.kt │ │ │ │ │ │ │ │ ├── EditorScreen.kt │ │ │ │ │ │ │ │ └── EditorTypeDropdown.kt │ │ │ │ │ │ │ └── widget/ │ │ │ │ │ │ │ ├── AppThemeModePreferenceWidget.kt │ │ │ │ │ │ │ ├── AppThemePreferenceWidget.kt │ │ │ │ │ │ │ ├── BasePreferenceWidget.kt │ │ │ │ │ │ │ ├── EditTextPreferenceWidget.kt │ │ │ │ │ │ │ ├── InfoWidget.kt │ │ │ │ │ │ │ ├── ListPreferenceWidget.kt │ │ │ │ │ │ │ ├── MultiSelectListPreferenceWidget.kt │ │ │ │ │ │ │ ├── PreferenceGroupHeader.kt │ │ │ │ │ │ │ ├── SwitchPreferenceWidget.kt │ │ │ │ │ │ │ ├── TextPreferenceWidget.kt │ │ │ │ │ │ │ ├── TrackingPreferenceWidget.kt │ │ │ │ │ │ │ └── TriStateListDialog.kt │ │ │ │ │ │ ├── stats/ │ │ │ │ │ │ │ ├── AnimeStatsScreenContent.kt │ │ │ │ │ │ │ ├── MangaStatsScreenContent.kt │ │ │ │ │ │ │ ├── StatsScreenState.kt │ │ │ │ │ │ │ ├── components/ │ │ │ │ │ │ │ │ └── StatsItem.kt │ │ │ │ │ │ │ └── data/ │ │ │ │ │ │ │ └── StatsData.kt │ │ │ │ │ │ └── storage/ │ │ │ │ │ │ ├── CumulativeStorage.kt │ │ │ │ │ │ ├── SelectStorageCategory.kt │ │ │ │ │ │ ├── StorageItem.kt │ │ │ │ │ │ ├── StorageScreenContent.kt │ │ │ │ │ │ └── StorageScreenState.kt │ │ │ │ │ ├── player/ │ │ │ │ │ │ └── components/ │ │ │ │ │ │ ├── ExpandableCard.kt │ │ │ │ │ │ ├── ExposedTextDropDownMenu.kt │ │ │ │ │ │ ├── OutlinedNumericChooser.kt │ │ │ │ │ │ ├── OvalBox.kt │ │ │ │ │ │ ├── PlayerSheet.kt │ │ │ │ │ │ ├── RepeatingIconButton.kt │ │ │ │ │ │ ├── SliderItem.kt │ │ │ │ │ │ ├── SwitchPreference.kt │ │ │ │ │ │ └── TintedSliderItem.kt │ │ │ │ │ ├── reader/ │ │ │ │ │ │ ├── ChapterTransition.kt │ │ │ │ │ │ ├── DisplayRefreshHost.kt │ │ │ │ │ │ ├── OrientationSelectDialog.kt │ │ │ │ │ │ ├── PageIndicatorText.kt │ │ │ │ │ │ ├── ReaderContentOverlay.kt │ │ │ │ │ │ ├── ReaderPageActionsDialog.kt │ │ │ │ │ │ ├── ReadingModeSelectDialog.kt │ │ │ │ │ │ ├── appbars/ │ │ │ │ │ │ │ ├── BottomReaderBar.kt │ │ │ │ │ │ │ └── ReaderAppBars.kt │ │ │ │ │ │ ├── components/ │ │ │ │ │ │ │ ├── ChapterNavigator.kt │ │ │ │ │ │ │ └── ModeSelectionDialog.kt │ │ │ │ │ │ └── settings/ │ │ │ │ │ │ ├── ColorFilterPage.kt │ │ │ │ │ │ ├── GeneralSettingsPage.kt │ │ │ │ │ │ ├── ReaderSettingsDialog.kt │ │ │ │ │ │ └── ReadingModePage.kt │ │ │ │ │ ├── theme/ │ │ │ │ │ │ ├── TachiyomiTheme.kt │ │ │ │ │ │ └── colorscheme/ │ │ │ │ │ │ ├── BaseColorScheme.kt │ │ │ │ │ │ ├── CloudflareColorScheme.kt │ │ │ │ │ │ ├── CottoncandyColorScheme.kt │ │ │ │ │ │ ├── DoomColorScheme.kt │ │ │ │ │ │ ├── GreenAppleColorScheme.kt │ │ │ │ │ │ ├── LavenderColorScheme.kt │ │ │ │ │ │ ├── MatrixColorScheme.kt │ │ │ │ │ │ ├── MidnightDuskColorScheme.kt │ │ │ │ │ │ ├── MochaColorScheme.kt │ │ │ │ │ │ ├── MonetColorScheme.kt │ │ │ │ │ │ ├── MonochromeColorScheme.kt │ │ │ │ │ │ ├── NordColorScheme.kt │ │ │ │ │ │ ├── SapphireColorScheme.kt │ │ │ │ │ │ ├── StrawberryColorScheme.kt │ │ │ │ │ │ ├── TachiyomiColorScheme.kt │ │ │ │ │ │ ├── TakoColorScheme.kt │ │ │ │ │ │ ├── TealTurqoiseColorScheme.kt │ │ │ │ │ │ ├── TidalWaveColorScheme.kt │ │ │ │ │ │ ├── YinYangColorScheme.kt │ │ │ │ │ │ └── YotsubaColorScheme.kt │ │ │ │ │ ├── track/ │ │ │ │ │ │ ├── TrackInfoDialogSelector.kt │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── AnimeTrackInfoDialogHome.kt │ │ │ │ │ │ │ ├── AnimeTrackInfoDialogHomePreviewProvider.kt │ │ │ │ │ │ │ ├── AnimeTrackerSearch.kt │ │ │ │ │ │ │ └── AnimeTrackerSearchPreviewProvider.kt │ │ │ │ │ │ ├── components/ │ │ │ │ │ │ │ ├── TrackLogoIcon.kt │ │ │ │ │ │ │ └── TrackLogoIconPreviewProvider.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── MangaTrackInfoDialogHome.kt │ │ │ │ │ │ ├── MangaTrackInfoDialogHomePreviewProvider.kt │ │ │ │ │ │ ├── MangaTrackerSearch.kt │ │ │ │ │ │ └── MangaTrackerSearchPreviewProvider.kt │ │ │ │ │ ├── updates/ │ │ │ │ │ │ ├── UpdatesDialog.kt │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── AnimeUpdatesScreen.kt │ │ │ │ │ │ │ └── AnimeUpdatesUiItem.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── MangaUpdatesScreen.kt │ │ │ │ │ │ └── MangaUpdatesUiItem.kt │ │ │ │ │ ├── util/ │ │ │ │ │ │ ├── ExceptionFormatter.kt │ │ │ │ │ │ ├── FastScrollAnimateItem.kt │ │ │ │ │ │ ├── ItemNumberFormatter.kt │ │ │ │ │ │ ├── Navigator.kt │ │ │ │ │ │ ├── Permissions.kt │ │ │ │ │ │ ├── Resources.kt │ │ │ │ │ │ ├── TimeUtils.kt │ │ │ │ │ │ └── WindowSize.kt │ │ │ │ │ └── webview/ │ │ │ │ │ └── WebViewScreenContent.kt │ │ │ │ ├── tachiyomi/ │ │ │ │ │ ├── App.kt │ │ │ │ │ ├── AppInfo.kt │ │ │ │ │ ├── crash/ │ │ │ │ │ │ ├── CrashActivity.kt │ │ │ │ │ │ └── GlobalExceptionHandler.kt │ │ │ │ │ ├── data/ │ │ │ │ │ │ ├── backup/ │ │ │ │ │ │ │ ├── BackupDecoder.kt │ │ │ │ │ │ │ ├── BackupDetector.kt │ │ │ │ │ │ │ ├── BackupFileValidator.kt │ │ │ │ │ │ │ ├── BackupNotifier.kt │ │ │ │ │ │ │ ├── create/ │ │ │ │ │ │ │ │ ├── BackupCreateJob.kt │ │ │ │ │ │ │ │ ├── BackupCreator.kt │ │ │ │ │ │ │ │ ├── BackupOptions.kt │ │ │ │ │ │ │ │ └── creators/ │ │ │ │ │ │ │ │ ├── AnimeBackupCreator.kt │ │ │ │ │ │ │ │ ├── AnimeCategoriesBackupCreator.kt │ │ │ │ │ │ │ │ ├── AnimeExtensionRepoBackupCreator.kt │ │ │ │ │ │ │ │ ├── AnimeSourcesBackupCreator.kt │ │ │ │ │ │ │ │ ├── CustomButtonBackupCreator.kt │ │ │ │ │ │ │ │ ├── ExtensionsBackupCreator.kt │ │ │ │ │ │ │ │ ├── MangaBackupCreator.kt │ │ │ │ │ │ │ │ ├── MangaCategoriesBackupCreator.kt │ │ │ │ │ │ │ │ ├── MangaExtensionRepoBackupCreator.kt │ │ │ │ │ │ │ │ ├── MangaSourcesBackupCreator.kt │ │ │ │ │ │ │ │ └── PreferenceBackupCreator.kt │ │ │ │ │ │ │ ├── full/ │ │ │ │ │ │ │ │ └── models/ │ │ │ │ │ │ │ │ ├── Backup.kt │ │ │ │ │ │ │ │ └── BackupPreference.kt │ │ │ │ │ │ │ ├── models/ │ │ │ │ │ │ │ │ ├── Backup.kt │ │ │ │ │ │ │ │ ├── BackupAnime.kt │ │ │ │ │ │ │ │ ├── BackupAnimeHistory.kt │ │ │ │ │ │ │ │ ├── BackupAnimeSource.kt │ │ │ │ │ │ │ │ ├── BackupAnimeTracking.kt │ │ │ │ │ │ │ │ ├── BackupCategory.kt │ │ │ │ │ │ │ │ ├── BackupChapter.kt │ │ │ │ │ │ │ │ ├── BackupCustomButtons.kt │ │ │ │ │ │ │ │ ├── BackupEpisode.kt │ │ │ │ │ │ │ │ ├── BackupExtension.kt │ │ │ │ │ │ │ │ ├── BackupExtensionPreferences.kt │ │ │ │ │ │ │ │ ├── BackupExtensionRepos.kt │ │ │ │ │ │ │ │ ├── BackupHistory.kt │ │ │ │ │ │ │ │ ├── BackupManga.kt │ │ │ │ │ │ │ │ ├── BackupPreference.kt │ │ │ │ │ │ │ │ ├── BackupSource.kt │ │ │ │ │ │ │ │ └── BackupTracking.kt │ │ │ │ │ │ │ └── restore/ │ │ │ │ │ │ │ ├── BackupRestoreJob.kt │ │ │ │ │ │ │ ├── BackupRestorer.kt │ │ │ │ │ │ │ ├── RestoreOptions.kt │ │ │ │ │ │ │ └── restorers/ │ │ │ │ │ │ │ ├── AnimeCategoriesRestorer.kt │ │ │ │ │ │ │ ├── AnimeExtensionRepoRestorer.kt │ │ │ │ │ │ │ ├── AnimeRestorer.kt │ │ │ │ │ │ │ ├── CustomButtonRestorer.kt │ │ │ │ │ │ │ ├── ExtensionsRestorer.kt │ │ │ │ │ │ │ ├── MangaCategoriesRestorer.kt │ │ │ │ │ │ │ ├── MangaExtensionRepoRestorer.kt │ │ │ │ │ │ │ ├── MangaRestorer.kt │ │ │ │ │ │ │ └── PreferenceRestorer.kt │ │ │ │ │ │ ├── cache/ │ │ │ │ │ │ │ ├── AnimeBackgroundCache.kt │ │ │ │ │ │ │ ├── AnimeCoverCache.kt │ │ │ │ │ │ │ ├── ChapterCache.kt │ │ │ │ │ │ │ └── MangaCoverCache.kt │ │ │ │ │ │ ├── coil/ │ │ │ │ │ │ │ ├── AnimeCoverKeyer.kt │ │ │ │ │ │ │ ├── AnimeImageFetcher.kt │ │ │ │ │ │ │ ├── BufferedSourceFetcher.kt │ │ │ │ │ │ │ ├── MangaCoverFetcher.kt │ │ │ │ │ │ │ ├── MangaCoverKeyer.kt │ │ │ │ │ │ │ ├── TachiyomiImageDecoder.kt │ │ │ │ │ │ │ └── Utils.kt │ │ │ │ │ │ ├── database/ │ │ │ │ │ │ │ └── models/ │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeTrack.kt │ │ │ │ │ │ │ │ ├── AnimeTrackImpl.kt │ │ │ │ │ │ │ │ ├── Episode.kt │ │ │ │ │ │ │ │ └── EpisodeImpl.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── Chapter.kt │ │ │ │ │ │ │ ├── ChapterImpl.kt │ │ │ │ │ │ │ ├── MangaTrack.kt │ │ │ │ │ │ │ └── MangaTrackImpl.kt │ │ │ │ │ │ ├── download/ │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeDownloadCache.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadJob.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadManager.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadNotifier.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadPendingDeleter.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadProvider.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadStore.kt │ │ │ │ │ │ │ │ ├── AnimeDownloader.kt │ │ │ │ │ │ │ │ └── model/ │ │ │ │ │ │ │ │ ├── AnimeDownload.kt │ │ │ │ │ │ │ │ └── AnimeDownloadPart.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaDownloadCache.kt │ │ │ │ │ │ │ ├── MangaDownloadJob.kt │ │ │ │ │ │ │ ├── MangaDownloadManager.kt │ │ │ │ │ │ │ ├── MangaDownloadNotifier.kt │ │ │ │ │ │ │ ├── MangaDownloadPendingDeleter.kt │ │ │ │ │ │ │ ├── MangaDownloadProvider.kt │ │ │ │ │ │ │ ├── MangaDownloadStore.kt │ │ │ │ │ │ │ ├── MangaDownloader.kt │ │ │ │ │ │ │ └── model/ │ │ │ │ │ │ │ └── MangaDownload.kt │ │ │ │ │ │ ├── export/ │ │ │ │ │ │ │ └── LibraryExporter.kt │ │ │ │ │ │ ├── library/ │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeLibraryUpdateJob.kt │ │ │ │ │ │ │ │ ├── AnimeLibraryUpdateNotifier.kt │ │ │ │ │ │ │ │ └── AnimeMetadataUpdateJob.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaLibraryUpdateJob.kt │ │ │ │ │ │ │ ├── MangaLibraryUpdateNotifier.kt │ │ │ │ │ │ │ └── MangaMetadataUpdateJob.kt │ │ │ │ │ │ ├── notification/ │ │ │ │ │ │ │ ├── NotificationHandler.kt │ │ │ │ │ │ │ ├── NotificationReceiver.kt │ │ │ │ │ │ │ └── Notifications.kt │ │ │ │ │ │ ├── preference/ │ │ │ │ │ │ │ └── SharedPreferencesDataStore.kt │ │ │ │ │ │ ├── saver/ │ │ │ │ │ │ │ └── ImageSaver.kt │ │ │ │ │ │ ├── track/ │ │ │ │ │ │ │ ├── AnimeTracker.kt │ │ │ │ │ │ │ ├── BaseTracker.kt │ │ │ │ │ │ │ ├── DeletableAnimeTracker.kt │ │ │ │ │ │ │ ├── DeletableMangaTracker.kt │ │ │ │ │ │ │ ├── EnhancedAnimeTracker.kt │ │ │ │ │ │ │ ├── EnhancedMangaTracker.kt │ │ │ │ │ │ │ ├── MangaTracker.kt │ │ │ │ │ │ │ ├── Tracker.kt │ │ │ │ │ │ │ ├── TrackerManager.kt │ │ │ │ │ │ │ ├── anilist/ │ │ │ │ │ │ │ │ ├── Anilist.kt │ │ │ │ │ │ │ │ ├── AnilistApi.kt │ │ │ │ │ │ │ │ ├── AnilistInterceptor.kt │ │ │ │ │ │ │ │ ├── AnilistUtils.kt │ │ │ │ │ │ │ │ └── dto/ │ │ │ │ │ │ │ │ ├── ALAddEntry.kt │ │ │ │ │ │ │ │ ├── ALAnime.kt │ │ │ │ │ │ │ │ ├── ALFuzzyDate.kt │ │ │ │ │ │ │ │ ├── ALManga.kt │ │ │ │ │ │ │ │ ├── ALOAuth.kt │ │ │ │ │ │ │ │ ├── ALSearch.kt │ │ │ │ │ │ │ │ ├── ALSearchItem.kt │ │ │ │ │ │ │ │ ├── ALUser.kt │ │ │ │ │ │ │ │ └── ALUserList.kt │ │ │ │ │ │ │ ├── bangumi/ │ │ │ │ │ │ │ │ ├── Bangumi.kt │ │ │ │ │ │ │ │ ├── BangumiApi.kt │ │ │ │ │ │ │ │ ├── BangumiInterceptor.kt │ │ │ │ │ │ │ │ ├── BangumiUtils.kt │ │ │ │ │ │ │ │ └── dto/ │ │ │ │ │ │ │ │ ├── BGMCollectionResponse.kt │ │ │ │ │ │ │ │ ├── BGMOAuth.kt │ │ │ │ │ │ │ │ ├── BGMSearch.kt │ │ │ │ │ │ │ │ └── BGMUser.kt │ │ │ │ │ │ │ ├── jellyfin/ │ │ │ │ │ │ │ │ ├── Jellyfin.kt │ │ │ │ │ │ │ │ ├── JellyfinApi.kt │ │ │ │ │ │ │ │ ├── JellyfinInterceptor.kt │ │ │ │ │ │ │ │ └── dto/ │ │ │ │ │ │ │ │ └── JFItem.kt │ │ │ │ │ │ │ ├── kavita/ │ │ │ │ │ │ │ │ ├── Kavita.kt │ │ │ │ │ │ │ │ ├── KavitaApi.kt │ │ │ │ │ │ │ │ ├── KavitaInterceptor.kt │ │ │ │ │ │ │ │ └── KavitaModels.kt │ │ │ │ │ │ │ ├── kitsu/ │ │ │ │ │ │ │ │ ├── Kitsu.kt │ │ │ │ │ │ │ │ ├── KitsuApi.kt │ │ │ │ │ │ │ │ ├── KitsuDateHelper.kt │ │ │ │ │ │ │ │ ├── KitsuInterceptor.kt │ │ │ │ │ │ │ │ ├── KitsuUtils.kt │ │ │ │ │ │ │ │ └── dto/ │ │ │ │ │ │ │ │ ├── KitsuAddEntry.kt │ │ │ │ │ │ │ │ ├── KitsuListSearch.kt │ │ │ │ │ │ │ │ ├── KitsuOAuth.kt │ │ │ │ │ │ │ │ ├── KitsuSearch.kt │ │ │ │ │ │ │ │ ├── KitsuSearchItemCover.kt │ │ │ │ │ │ │ │ └── KitsuUser.kt │ │ │ │ │ │ │ ├── komga/ │ │ │ │ │ │ │ │ ├── Komga.kt │ │ │ │ │ │ │ │ ├── KomgaApi.kt │ │ │ │ │ │ │ │ └── KomgaModels.kt │ │ │ │ │ │ │ ├── mangaupdates/ │ │ │ │ │ │ │ │ ├── MangaUpdates.kt │ │ │ │ │ │ │ │ ├── MangaUpdatesApi.kt │ │ │ │ │ │ │ │ ├── MangaUpdatesInterceptor.kt │ │ │ │ │ │ │ │ └── dto/ │ │ │ │ │ │ │ │ ├── MUContext.kt │ │ │ │ │ │ │ │ ├── MUImage.kt │ │ │ │ │ │ │ │ ├── MUListItem.kt │ │ │ │ │ │ │ │ ├── MULoginResponse.kt │ │ │ │ │ │ │ │ ├── MURating.kt │ │ │ │ │ │ │ │ ├── MURecord.kt │ │ │ │ │ │ │ │ ├── MUSearch.kt │ │ │ │ │ │ │ │ ├── MUSeries.kt │ │ │ │ │ │ │ │ ├── MUStatus.kt │ │ │ │ │ │ │ │ └── MUUrl.kt │ │ │ │ │ │ │ ├── model/ │ │ │ │ │ │ │ │ ├── AnimeTrackSearch.kt │ │ │ │ │ │ │ │ └── MangaTrackSearch.kt │ │ │ │ │ │ │ ├── myanimelist/ │ │ │ │ │ │ │ │ ├── MyAnimeList.kt │ │ │ │ │ │ │ │ ├── MyAnimeListApi.kt │ │ │ │ │ │ │ │ ├── MyAnimeListInterceptor.kt │ │ │ │ │ │ │ │ ├── MyAnimeListUtils.kt │ │ │ │ │ │ │ │ └── dto/ │ │ │ │ │ │ │ │ ├── MALAnime.kt │ │ │ │ │ │ │ │ ├── MALList.kt │ │ │ │ │ │ │ │ ├── MALManga.kt │ │ │ │ │ │ │ │ ├── MALOAuth.kt │ │ │ │ │ │ │ │ ├── MALSearch.kt │ │ │ │ │ │ │ │ ├── MALUser.kt │ │ │ │ │ │ │ │ └── MALUserListSearch.kt │ │ │ │ │ │ │ ├── shikimori/ │ │ │ │ │ │ │ │ ├── Shikimori.kt │ │ │ │ │ │ │ │ ├── ShikimoriApi.kt │ │ │ │ │ │ │ │ ├── ShikimoriInterceptor.kt │ │ │ │ │ │ │ │ ├── ShikimoriUtils.kt │ │ │ │ │ │ │ │ └── dto/ │ │ │ │ │ │ │ │ ├── SMAddEntryResponse.kt │ │ │ │ │ │ │ │ ├── SMEntry.kt │ │ │ │ │ │ │ │ ├── SMOAuth.kt │ │ │ │ │ │ │ │ ├── SMUser.kt │ │ │ │ │ │ │ │ └── SMUserListEntry.kt │ │ │ │ │ │ │ ├── simkl/ │ │ │ │ │ │ │ │ ├── Simkl.kt │ │ │ │ │ │ │ │ ├── SimklApi.kt │ │ │ │ │ │ │ │ ├── SimklInterceptor.kt │ │ │ │ │ │ │ │ ├── SimklUtils.kt │ │ │ │ │ │ │ │ └── dto/ │ │ │ │ │ │ │ │ ├── SimklOAuth.kt │ │ │ │ │ │ │ │ ├── SimklSearch.kt │ │ │ │ │ │ │ │ ├── SimklSyncItem.kt │ │ │ │ │ │ │ │ ├── SimklSyncWatched.kt │ │ │ │ │ │ │ │ └── SimklUser.kt │ │ │ │ │ │ │ └── suwayomi/ │ │ │ │ │ │ │ ├── Suwayomi.kt │ │ │ │ │ │ │ ├── SuwayomiApi.kt │ │ │ │ │ │ │ └── SuwayomiModels.kt │ │ │ │ │ │ └── updater/ │ │ │ │ │ │ ├── AppUpdateChecker.kt │ │ │ │ │ │ ├── AppUpdateDownloadJob.kt │ │ │ │ │ │ └── AppUpdateNotifier.kt │ │ │ │ │ ├── di/ │ │ │ │ │ │ ├── AppModule.kt │ │ │ │ │ │ └── PreferenceModule.kt │ │ │ │ │ ├── extension/ │ │ │ │ │ │ ├── ExtensionUpdateNotifier.kt │ │ │ │ │ │ ├── InstallStep.kt │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── AnimeExtensionManager.kt │ │ │ │ │ │ │ ├── api/ │ │ │ │ │ │ │ │ └── AnimeExtensionApi.kt │ │ │ │ │ │ │ ├── installer/ │ │ │ │ │ │ │ │ ├── InstallerAnime.kt │ │ │ │ │ │ │ │ ├── PackageInstallerInstallerAnime.kt │ │ │ │ │ │ │ │ └── ShizukuInstallerAnime.kt │ │ │ │ │ │ │ ├── model/ │ │ │ │ │ │ │ │ ├── AnimeExtension.kt │ │ │ │ │ │ │ │ └── AnimeLoadResult.kt │ │ │ │ │ │ │ └── util/ │ │ │ │ │ │ │ ├── AnimeExtensionInstallActivity.kt │ │ │ │ │ │ │ ├── AnimeExtensionInstallReceiver.kt │ │ │ │ │ │ │ ├── AnimeExtensionInstallService.kt │ │ │ │ │ │ │ ├── AnimeExtensionInstaller.kt │ │ │ │ │ │ │ └── AnimeExtensionLoader.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── MangaExtensionManager.kt │ │ │ │ │ │ ├── api/ │ │ │ │ │ │ │ └── MangaExtensionApi.kt │ │ │ │ │ │ ├── installer/ │ │ │ │ │ │ │ ├── InstallerManga.kt │ │ │ │ │ │ │ ├── PackageInstallerInstallerManga.kt │ │ │ │ │ │ │ └── ShizukuInstallerManga.kt │ │ │ │ │ │ ├── model/ │ │ │ │ │ │ │ ├── MangaExtension.kt │ │ │ │ │ │ │ └── MangaLoadResult.kt │ │ │ │ │ │ └── util/ │ │ │ │ │ │ ├── MangaExtensionInstallActivity.kt │ │ │ │ │ │ ├── MangaExtensionInstallReceiver.kt │ │ │ │ │ │ ├── MangaExtensionInstallService.kt │ │ │ │ │ │ ├── MangaExtensionInstaller.kt │ │ │ │ │ │ └── MangaExtensionLoader.kt │ │ │ │ │ ├── source/ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ ├── AndroidAnimeSourceManager.kt │ │ │ │ │ │ │ └── AnimeSourceExtensions.kt │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ ├── AndroidMangaSourceManager.kt │ │ │ │ │ │ └── MangaSourceExtensions.kt │ │ │ │ │ ├── ui/ │ │ │ │ │ │ ├── base/ │ │ │ │ │ │ │ ├── activity/ │ │ │ │ │ │ │ │ └── BaseActivity.kt │ │ │ │ │ │ │ └── delegate/ │ │ │ │ │ │ │ ├── SecureActivityDelegate.kt │ │ │ │ │ │ │ └── ThemingDelegate.kt │ │ │ │ │ │ ├── browse/ │ │ │ │ │ │ │ ├── BrowseTab.kt │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── extension/ │ │ │ │ │ │ │ │ │ ├── AnimeExtensionFilterScreen.kt │ │ │ │ │ │ │ │ │ ├── AnimeExtensionFilterScreenModel.kt │ │ │ │ │ │ │ │ │ ├── AnimeExtensionsScreenModel.kt │ │ │ │ │ │ │ │ │ ├── AnimeExtensionsTab.kt │ │ │ │ │ │ │ │ │ └── details/ │ │ │ │ │ │ │ │ │ ├── AnimeExtensionDetailsScreen.kt │ │ │ │ │ │ │ │ │ ├── AnimeExtensionDetailsScreenModel.kt │ │ │ │ │ │ │ │ │ └── AnimeSourcePreferencesScreen.kt │ │ │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ │ │ ├── AnimeMigrationFlags.kt │ │ │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ │ │ ├── MigrateAnimeScreen.kt │ │ │ │ │ │ │ │ │ │ ├── MigrateAnimeScreenModel.kt │ │ │ │ │ │ │ │ │ │ └── season/ │ │ │ │ │ │ │ │ │ │ ├── MigrateSeasonSelectScreen.kt │ │ │ │ │ │ │ │ │ │ └── MigrateSeasonSelectScreenModel.kt │ │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ │ ├── AnimeMigrateSearchScreenDialogScreenModel.kt │ │ │ │ │ │ │ │ │ │ ├── AnimeSourceSearchScreen.kt │ │ │ │ │ │ │ │ │ │ ├── MigrateAnimeDialog.kt │ │ │ │ │ │ │ │ │ │ ├── MigrateAnimeSearchScreen.kt │ │ │ │ │ │ │ │ │ │ └── MigrateAnimeSearchScreenModel.kt │ │ │ │ │ │ │ │ │ └── sources/ │ │ │ │ │ │ │ │ │ ├── MigrateAnimeSourceScreenModel.kt │ │ │ │ │ │ │ │ │ └── MigrateAnimeSourceTab.kt │ │ │ │ │ │ │ │ └── source/ │ │ │ │ │ │ │ │ ├── AnimeSourcesFilterScreen.kt │ │ │ │ │ │ │ │ ├── AnimeSourcesFilterScreenModel.kt │ │ │ │ │ │ │ │ ├── AnimeSourcesScreenModel.kt │ │ │ │ │ │ │ │ ├── AnimeSourcesTab.kt │ │ │ │ │ │ │ │ ├── browse/ │ │ │ │ │ │ │ │ │ ├── BrowseAnimeSourceScreen.kt │ │ │ │ │ │ │ │ │ ├── BrowseAnimeSourceScreenModel.kt │ │ │ │ │ │ │ │ │ └── SourceFilterAnimeDialog.kt │ │ │ │ │ │ │ │ └── globalsearch/ │ │ │ │ │ │ │ │ ├── AnimeSearchScreenModel.kt │ │ │ │ │ │ │ │ ├── GlobalAnimeSearchScreen.kt │ │ │ │ │ │ │ │ └── GlobalAnimeSearchScreenModel.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── extension/ │ │ │ │ │ │ │ │ ├── MangaExtensionFilterScreen.kt │ │ │ │ │ │ │ │ ├── MangaExtensionFilterScreenModel.kt │ │ │ │ │ │ │ │ ├── MangaExtensionsScreenModel.kt │ │ │ │ │ │ │ │ ├── MangaExtensionsTab.kt │ │ │ │ │ │ │ │ └── details/ │ │ │ │ │ │ │ │ ├── MangaExtensionDetailsScreen.kt │ │ │ │ │ │ │ │ ├── MangaExtensionDetailsScreenModel.kt │ │ │ │ │ │ │ │ └── MangaSourcePreferencesScreen.kt │ │ │ │ │ │ │ ├── migration/ │ │ │ │ │ │ │ │ ├── MangaMigrationFlags.kt │ │ │ │ │ │ │ │ ├── manga/ │ │ │ │ │ │ │ │ │ ├── MigrateMangaScreen.kt │ │ │ │ │ │ │ │ │ └── MigrateMangaScreenModel.kt │ │ │ │ │ │ │ │ ├── search/ │ │ │ │ │ │ │ │ │ ├── MangaMigrateSearchScreenDialogScreenModel.kt │ │ │ │ │ │ │ │ │ ├── MangaSourceSearchScreen.kt │ │ │ │ │ │ │ │ │ ├── MigrateMangaDialog.kt │ │ │ │ │ │ │ │ │ ├── MigrateMangaSearchScreen.kt │ │ │ │ │ │ │ │ │ └── MigrateMangaSearchScreenModel.kt │ │ │ │ │ │ │ │ └── sources/ │ │ │ │ │ │ │ │ ├── MigrateMangaSourceScreenModel.kt │ │ │ │ │ │ │ │ └── MigrateMangaSourceTab.kt │ │ │ │ │ │ │ └── source/ │ │ │ │ │ │ │ ├── MangaSourcesFilterScreen.kt │ │ │ │ │ │ │ ├── MangaSourcesFilterScreenModel.kt │ │ │ │ │ │ │ ├── MangaSourcesScreenModel.kt │ │ │ │ │ │ │ ├── MangaSourcesTab.kt │ │ │ │ │ │ │ ├── browse/ │ │ │ │ │ │ │ │ ├── BrowseMangaSourceScreen.kt │ │ │ │ │ │ │ │ ├── BrowseMangaSourceScreenModel.kt │ │ │ │ │ │ │ │ └── SourceFilterMangaDialog.kt │ │ │ │ │ │ │ └── globalsearch/ │ │ │ │ │ │ │ ├── GlobalMangaSearchScreen.kt │ │ │ │ │ │ │ ├── GlobalMangaSearchScreenModel.kt │ │ │ │ │ │ │ └── MangaSearchScreenModel.kt │ │ │ │ │ │ ├── category/ │ │ │ │ │ │ │ ├── CategoriesTab.kt │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeCategoryScreenModel.kt │ │ │ │ │ │ │ │ └── AnimeCategoryTab.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaCategoryScreenModel.kt │ │ │ │ │ │ │ └── MangaCategoryTab.kt │ │ │ │ │ │ ├── deeplink/ │ │ │ │ │ │ │ ├── DeepLinkScreenType.kt │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── DeepLinkAnimeActivity.kt │ │ │ │ │ │ │ │ ├── DeepLinkAnimeScreen.kt │ │ │ │ │ │ │ │ └── DeepLinkAnimeScreenModel.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── DeepLinkMangaActivity.kt │ │ │ │ │ │ │ ├── DeepLinkMangaScreen.kt │ │ │ │ │ │ │ └── DeepLinkMangaScreenModel.kt │ │ │ │ │ │ ├── download/ │ │ │ │ │ │ │ ├── DownloadsTab.kt │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeDownloadAdapter.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadHeaderHolder.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadHeaderItem.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadHolder.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadItem.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadQueueScreen.kt │ │ │ │ │ │ │ │ ├── AnimeDownloadQueueScreenModel.kt │ │ │ │ │ │ │ │ └── AnimeDownloadQueueTab.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaDownloadAdapter.kt │ │ │ │ │ │ │ ├── MangaDownloadHeaderHolder.kt │ │ │ │ │ │ │ ├── MangaDownloadHeaderItem.kt │ │ │ │ │ │ │ ├── MangaDownloadHolder.kt │ │ │ │ │ │ │ ├── MangaDownloadItem.kt │ │ │ │ │ │ │ ├── MangaDownloadQueueScreen.kt │ │ │ │ │ │ │ ├── MangaDownloadQueueScreenModel.kt │ │ │ │ │ │ │ └── MangaDownloadQueueTab.kt │ │ │ │ │ │ ├── entries/ │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeImageScreenModel.kt │ │ │ │ │ │ │ │ ├── AnimeScreen.kt │ │ │ │ │ │ │ │ ├── AnimeScreenModel.kt │ │ │ │ │ │ │ │ ├── AnimeSeasonItem.kt │ │ │ │ │ │ │ │ └── track/ │ │ │ │ │ │ │ │ ├── AnimeTrackInfoDialog.kt │ │ │ │ │ │ │ │ └── AnimeTrackItem.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaCoverScreenModel.kt │ │ │ │ │ │ │ ├── MangaScreen.kt │ │ │ │ │ │ │ ├── MangaScreenModel.kt │ │ │ │ │ │ │ └── track/ │ │ │ │ │ │ │ ├── MangaTrackInfoDialog.kt │ │ │ │ │ │ │ └── MangaTrackItem.kt │ │ │ │ │ │ ├── history/ │ │ │ │ │ │ │ ├── HistoriesTab.kt │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeHistoryScreenModel.kt │ │ │ │ │ │ │ │ └── AnimeHistoryTab.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaHistoryScreenModel.kt │ │ │ │ │ │ │ └── MangaHistoryTab.kt │ │ │ │ │ │ ├── home/ │ │ │ │ │ │ │ └── HomeScreen.kt │ │ │ │ │ │ ├── library/ │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeLibraryItem.kt │ │ │ │ │ │ │ │ ├── AnimeLibraryScreenModel.kt │ │ │ │ │ │ │ │ ├── AnimeLibrarySettingsScreenModel.kt │ │ │ │ │ │ │ │ └── AnimeLibraryTab.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaLibraryItem.kt │ │ │ │ │ │ │ ├── MangaLibraryScreenModel.kt │ │ │ │ │ │ │ ├── MangaLibrarySettingsScreenModel.kt │ │ │ │ │ │ │ └── MangaLibraryTab.kt │ │ │ │ │ │ ├── main/ │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ │ ├── more/ │ │ │ │ │ │ │ ├── MoreTab.kt │ │ │ │ │ │ │ ├── NewUpdateScreen.kt │ │ │ │ │ │ │ └── OnboardingScreen.kt │ │ │ │ │ │ ├── player/ │ │ │ │ │ │ │ ├── AniyomiMPVView.kt │ │ │ │ │ │ │ ├── ExternalIntents.kt │ │ │ │ │ │ │ ├── PipActions.kt │ │ │ │ │ │ │ ├── PlayerActivity.kt │ │ │ │ │ │ │ ├── PlayerEnums.kt │ │ │ │ │ │ │ ├── PlayerObserver.kt │ │ │ │ │ │ │ ├── PlayerUtils.kt │ │ │ │ │ │ │ ├── PlayerViewModel.kt │ │ │ │ │ │ │ ├── controls/ │ │ │ │ │ │ │ │ ├── BottomLeftPlayerControls.kt │ │ │ │ │ │ │ │ ├── BottomRightPlayerControls.kt │ │ │ │ │ │ │ │ ├── GestureHandler.kt │ │ │ │ │ │ │ │ ├── MiddlePlayerControls.kt │ │ │ │ │ │ │ │ ├── PlayerControls.kt │ │ │ │ │ │ │ │ ├── PlayerDialogs.kt │ │ │ │ │ │ │ │ ├── PlayerPanels.kt │ │ │ │ │ │ │ │ ├── PlayerSheets.kt │ │ │ │ │ │ │ │ ├── TopLeftPlayerControls.kt │ │ │ │ │ │ │ │ ├── TopRightPlayerControls.kt │ │ │ │ │ │ │ │ └── components/ │ │ │ │ │ │ │ │ ├── AutoPlaySwitch.kt │ │ │ │ │ │ │ │ ├── BrightnessOverlay.kt │ │ │ │ │ │ │ │ ├── ControlsButton.kt │ │ │ │ │ │ │ │ ├── CurrentChapter.kt │ │ │ │ │ │ │ │ ├── DoubleTapSeekTriangles.kt │ │ │ │ │ │ │ │ ├── PlayerUpdates.kt │ │ │ │ │ │ │ │ ├── SeekBar.kt │ │ │ │ │ │ │ │ ├── VerticalSliders.kt │ │ │ │ │ │ │ │ ├── dialogs/ │ │ │ │ │ │ │ │ │ ├── EpisodeListDialog.kt │ │ │ │ │ │ │ │ │ ├── IntegerPickerDialog.kt │ │ │ │ │ │ │ │ │ └── PlayerDialog.kt │ │ │ │ │ │ │ │ ├── panels/ │ │ │ │ │ │ │ │ │ ├── AudioDelayPanel.kt │ │ │ │ │ │ │ │ │ ├── SubtitleDelayPanel.kt │ │ │ │ │ │ │ │ │ ├── SubtitleSettingsColorsCard.kt │ │ │ │ │ │ │ │ │ ├── SubtitleSettingsMiscellaneousCard.kt │ │ │ │ │ │ │ │ │ ├── SubtitleSettingsPanel.kt │ │ │ │ │ │ │ │ │ ├── SubtitleSettingsTypographyCard.kt │ │ │ │ │ │ │ │ │ └── VideoFiltersPanel.kt │ │ │ │ │ │ │ │ └── sheets/ │ │ │ │ │ │ │ │ ├── AudioTracksSheet.kt │ │ │ │ │ │ │ │ ├── ChaptersSheet.kt │ │ │ │ │ │ │ │ ├── GenericTracksSheet.kt │ │ │ │ │ │ │ │ ├── MoreSheet.kt │ │ │ │ │ │ │ │ ├── PlaybackSpeedSheet.kt │ │ │ │ │ │ │ │ ├── QualitySheet.kt │ │ │ │ │ │ │ │ ├── ScreenshotSheet.kt │ │ │ │ │ │ │ │ └── SubtitleTracksSheet.kt │ │ │ │ │ │ │ ├── loader/ │ │ │ │ │ │ │ │ ├── EpisodeLoader.kt │ │ │ │ │ │ │ │ └── HosterLoader.kt │ │ │ │ │ │ │ ├── settings/ │ │ │ │ │ │ │ │ ├── AdvancedPlayerPreferences.kt │ │ │ │ │ │ │ │ ├── AudioPreferences.kt │ │ │ │ │ │ │ │ ├── DecoderPreferences.kt │ │ │ │ │ │ │ │ ├── GesturePreferences.kt │ │ │ │ │ │ │ │ ├── PlayerPreferences.kt │ │ │ │ │ │ │ │ └── SubtitlePreferences.kt │ │ │ │ │ │ │ └── utils/ │ │ │ │ │ │ │ ├── AniSkipApi.kt │ │ │ │ │ │ │ ├── ChapterUtils.kt │ │ │ │ │ │ │ └── TrackSelect.kt │ │ │ │ │ │ ├── reader/ │ │ │ │ │ │ │ ├── ReaderActivity.kt │ │ │ │ │ │ │ ├── ReaderNavigationOverlayView.kt │ │ │ │ │ │ │ ├── ReaderViewModel.kt │ │ │ │ │ │ │ ├── SaveImageNotifier.kt │ │ │ │ │ │ │ ├── loader/ │ │ │ │ │ │ │ │ ├── ArchivePageLoader.kt │ │ │ │ │ │ │ │ ├── ChapterLoader.kt │ │ │ │ │ │ │ │ ├── DirectoryPageLoader.kt │ │ │ │ │ │ │ │ ├── DownloadPageLoader.kt │ │ │ │ │ │ │ │ ├── EpubPageLoader.kt │ │ │ │ │ │ │ │ ├── HttpPageLoader.kt │ │ │ │ │ │ │ │ └── PageLoader.kt │ │ │ │ │ │ │ ├── model/ │ │ │ │ │ │ │ │ ├── ChapterTransition.kt │ │ │ │ │ │ │ │ ├── InsertPage.kt │ │ │ │ │ │ │ │ ├── ReaderChapter.kt │ │ │ │ │ │ │ │ ├── ReaderPage.kt │ │ │ │ │ │ │ │ └── ViewerChapters.kt │ │ │ │ │ │ │ ├── setting/ │ │ │ │ │ │ │ │ ├── ReaderOrientation.kt │ │ │ │ │ │ │ │ ├── ReaderPreferences.kt │ │ │ │ │ │ │ │ ├── ReaderSettingsScreenModel.kt │ │ │ │ │ │ │ │ └── ReadingMode.kt │ │ │ │ │ │ │ └── viewer/ │ │ │ │ │ │ │ ├── GestureDetectorWithLongTap.kt │ │ │ │ │ │ │ ├── MissingChapters.kt │ │ │ │ │ │ │ ├── ReaderButton.kt │ │ │ │ │ │ │ ├── ReaderPageImageView.kt │ │ │ │ │ │ │ ├── ReaderProgressIndicator.kt │ │ │ │ │ │ │ ├── ReaderTransitionView.kt │ │ │ │ │ │ │ ├── Viewer.kt │ │ │ │ │ │ │ ├── ViewerConfig.kt │ │ │ │ │ │ │ ├── ViewerNavigation.kt │ │ │ │ │ │ │ ├── navigation/ │ │ │ │ │ │ │ │ ├── DisabledNavigation.kt │ │ │ │ │ │ │ │ ├── EdgeNavigation.kt │ │ │ │ │ │ │ │ ├── KindlishNavigation.kt │ │ │ │ │ │ │ │ ├── LNavigation.kt │ │ │ │ │ │ │ │ └── RightAndLeftNavigation.kt │ │ │ │ │ │ │ ├── pager/ │ │ │ │ │ │ │ │ ├── Pager.kt │ │ │ │ │ │ │ │ ├── PagerConfig.kt │ │ │ │ │ │ │ │ ├── PagerPageHolder.kt │ │ │ │ │ │ │ │ ├── PagerTransitionHolder.kt │ │ │ │ │ │ │ │ ├── PagerViewer.kt │ │ │ │ │ │ │ │ ├── PagerViewerAdapter.kt │ │ │ │ │ │ │ │ └── PagerViewers.kt │ │ │ │ │ │ │ └── webtoon/ │ │ │ │ │ │ │ ├── WebtoonAdapter.kt │ │ │ │ │ │ │ ├── WebtoonBaseHolder.kt │ │ │ │ │ │ │ ├── WebtoonConfig.kt │ │ │ │ │ │ │ ├── WebtoonFrame.kt │ │ │ │ │ │ │ ├── WebtoonLayoutManager.kt │ │ │ │ │ │ │ ├── WebtoonPageHolder.kt │ │ │ │ │ │ │ ├── WebtoonRecyclerView.kt │ │ │ │ │ │ │ ├── WebtoonSubsamplingImageView.kt │ │ │ │ │ │ │ ├── WebtoonTransitionHolder.kt │ │ │ │ │ │ │ └── WebtoonViewer.kt │ │ │ │ │ │ ├── security/ │ │ │ │ │ │ │ └── UnlockActivity.kt │ │ │ │ │ │ ├── setting/ │ │ │ │ │ │ │ ├── PlayerSettingsScreen.kt │ │ │ │ │ │ │ ├── SettingsScreen.kt │ │ │ │ │ │ │ └── track/ │ │ │ │ │ │ │ ├── BaseOAuthLoginActivity.kt │ │ │ │ │ │ │ └── TrackLoginActivity.kt │ │ │ │ │ │ ├── stats/ │ │ │ │ │ │ │ ├── StatsTab.kt │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeStatsScreenModel.kt │ │ │ │ │ │ │ │ └── AnimeStatsTab.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaStatsScreenModel.kt │ │ │ │ │ │ │ └── MangaStatsTab.kt │ │ │ │ │ │ ├── storage/ │ │ │ │ │ │ │ ├── CommonStorageScreenModel.kt │ │ │ │ │ │ │ ├── StorageTab.kt │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeStorageScreenModel.kt │ │ │ │ │ │ │ │ └── AnimeStorageTab.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaStorageScreenModel.kt │ │ │ │ │ │ │ └── MangaStorageTab.kt │ │ │ │ │ │ ├── updates/ │ │ │ │ │ │ │ ├── UpdatesTab.kt │ │ │ │ │ │ │ ├── anime/ │ │ │ │ │ │ │ │ ├── AnimeUpdatesScreenModel.kt │ │ │ │ │ │ │ │ └── AnimeUpdatesTab.kt │ │ │ │ │ │ │ └── manga/ │ │ │ │ │ │ │ ├── MangaUpdatesScreenModel.kt │ │ │ │ │ │ │ └── MangaUpdatesTab.kt │ │ │ │ │ │ └── webview/ │ │ │ │ │ │ ├── WebViewActivity.kt │ │ │ │ │ │ ├── WebViewScreen.kt │ │ │ │ │ │ └── WebViewScreenModel.kt │ │ │ │ │ ├── util/ │ │ │ │ │ │ ├── AniChartApi.kt │ │ │ │ │ │ ├── AnimeExtensions.kt │ │ │ │ │ │ ├── CrashLogUtil.kt │ │ │ │ │ │ ├── MangaExtensions.kt │ │ │ │ │ │ ├── PkceUtil.kt │ │ │ │ │ │ ├── StorageUtil.kt │ │ │ │ │ │ ├── chapter/ │ │ │ │ │ │ │ ├── ChapterFilterDownloaded.kt │ │ │ │ │ │ │ ├── ChapterGetNextUnread.kt │ │ │ │ │ │ │ └── ChapterRemoveDuplicates.kt │ │ │ │ │ │ ├── episode/ │ │ │ │ │ │ │ ├── EpisodeFilterDownloaded.kt │ │ │ │ │ │ │ └── EpsiodeGetNextUnseen.kt │ │ │ │ │ │ ├── lang/ │ │ │ │ │ │ │ ├── CloseableExtensions.kt │ │ │ │ │ │ │ ├── DateExtensions.kt │ │ │ │ │ │ │ └── RectFExtensions.kt │ │ │ │ │ │ ├── storage/ │ │ │ │ │ │ │ └── OkioExtensions.kt │ │ │ │ │ │ ├── system/ │ │ │ │ │ │ │ ├── AnimationExtensions.kt │ │ │ │ │ │ │ ├── AuthenticatorUtil.kt │ │ │ │ │ │ │ ├── BuildConfig.kt │ │ │ │ │ │ │ ├── ChildFirstPathClassLoader.kt │ │ │ │ │ │ │ ├── ContextExtensions.kt │ │ │ │ │ │ │ ├── DeviceUtilExtensions.kt │ │ │ │ │ │ │ ├── DisplayExtensions.kt │ │ │ │ │ │ │ ├── DrawableExtensions.kt │ │ │ │ │ │ │ ├── IntentExtensions.kt │ │ │ │ │ │ │ ├── InternalResourceHelper.kt │ │ │ │ │ │ │ ├── LocaleHelper.kt │ │ │ │ │ │ │ ├── NetworkExtensions.kt │ │ │ │ │ │ │ ├── NetworkStateTracker.kt │ │ │ │ │ │ │ ├── NotificationExtensions.kt │ │ │ │ │ │ │ ├── TvUtils.kt │ │ │ │ │ │ │ └── WorkManagerExtensions.kt │ │ │ │ │ │ └── view/ │ │ │ │ │ │ ├── EditTextPreferenceExtensions.kt │ │ │ │ │ │ ├── ViewExtensions.kt │ │ │ │ │ │ └── WindowExtensions.kt │ │ │ │ │ └── widget/ │ │ │ │ │ ├── MinMaxNumberPicker.kt │ │ │ │ │ ├── RevealAnimationView.kt │ │ │ │ │ ├── TachiyomiTextInputEditText.kt │ │ │ │ │ ├── ViewPagerAdapter.kt │ │ │ │ │ └── listener/ │ │ │ │ │ ├── IgnoreFirstSpinnerListener.kt │ │ │ │ │ └── SimpleSeekBarListener.kt │ │ │ │ └── test/ │ │ │ │ └── DummyTracker.kt │ │ │ └── mihon/ │ │ │ ├── core/ │ │ │ │ ├── designsystem/ │ │ │ │ │ └── utils/ │ │ │ │ │ └── WindowSize.kt │ │ │ │ └── migration/ │ │ │ │ ├── Migration.kt │ │ │ │ ├── MigrationCompletedListener.kt │ │ │ │ ├── MigrationContext.kt │ │ │ │ ├── MigrationJobFactory.kt │ │ │ │ ├── MigrationStrategy.kt │ │ │ │ ├── MigrationStrategyFactory.kt │ │ │ │ ├── Migrator.kt │ │ │ │ └── migrations/ │ │ │ │ ├── AddAllLangMigration.kt │ │ │ │ ├── CategoryPreferencesCleanupMigration.kt │ │ │ │ ├── CombineUpdateRestrictionMigration.kt │ │ │ │ ├── CoverToExternalFileMigration.kt │ │ │ │ ├── DOHMigration.kt │ │ │ │ ├── DeleteExternalChapterCacheDirMigration.kt │ │ │ │ ├── DontRunJobsMigration.kt │ │ │ │ ├── EnableAutoBackupMigration.kt │ │ │ │ ├── EnumsMigration.kt │ │ │ │ ├── ExternalRepoMigration.kt │ │ │ │ ├── ForceMALLogOutMigration.kt │ │ │ │ ├── InternalChapterCacheDirMigration.kt │ │ │ │ ├── LogOutMALMigration.kt │ │ │ │ ├── MergeSortTypeDirectionMigration.kt │ │ │ │ ├── MigrateRotationViewerValuesMigration.kt │ │ │ │ ├── MigrateSecureScreenMigration.kt │ │ │ │ ├── MigrateSortingModeMigration.kt │ │ │ │ ├── MigrateToTriStateMigration.kt │ │ │ │ ├── MigrateTriStateMigration.kt │ │ │ │ ├── MigrationUtils.kt │ │ │ │ ├── Migrations.kt │ │ │ │ ├── MoveChapterPreferencesMigration.kt │ │ │ │ ├── MovePlayerPreferencesMigration.kt │ │ │ │ ├── NavigationOptionsMigration.kt │ │ │ │ ├── NoAppStateMigration.kt │ │ │ │ ├── PermaTrustExtensionsMigration.kt │ │ │ │ ├── PlayerPreferenceMigration.kt │ │ │ │ ├── PrefLangMigration.kt │ │ │ │ ├── PrivatePreferenceMigration.kt │ │ │ │ ├── RelativeTimestampMigration.kt │ │ │ │ ├── RemoveBackgroundJobsMigration.kt │ │ │ │ ├── RemoveOneTwoHourUpdateMigration.kt │ │ │ │ ├── RemoveQuickUpdateMigration.kt │ │ │ │ ├── RemoveReaderTapMigration.kt │ │ │ │ ├── RenameEnumMigration.kt │ │ │ │ ├── ResetRotationMigration.kt │ │ │ │ ├── ResetSortPreferenceRemovedMigration.kt │ │ │ │ ├── SetupAnimeLibraryUpdateMigration.kt │ │ │ │ ├── SetupBackgroundTasksMigration.kt │ │ │ │ ├── SetupBackupCreateMigration.kt │ │ │ │ ├── SetupMangaLibraryUpdateMigration.kt │ │ │ │ ├── SplitPreferencesMigration.kt │ │ │ │ ├── TrustExtensionRepositoryMigration.kt │ │ │ │ ├── UseWorkManagerMigration.kt │ │ │ │ ├── VideoOrientationMigration.kt │ │ │ │ └── VideoPlayerPreferenceMigration.kt │ │ │ └── feature/ │ │ │ └── upcoming/ │ │ │ ├── anime/ │ │ │ │ ├── UpcomingAnimeScreen.kt │ │ │ │ ├── UpcomingAnimeScreenContent.kt │ │ │ │ ├── UpcomingAnimeScreenModel.kt │ │ │ │ ├── UpcomingAnimeUIModel.kt │ │ │ │ └── components/ │ │ │ │ └── UpcomingItem.kt │ │ │ ├── components/ │ │ │ │ └── calendar/ │ │ │ │ ├── Calendar.kt │ │ │ │ ├── CalendarDay.kt │ │ │ │ ├── CalendarHeader.kt │ │ │ │ └── CalendarIndicator.kt │ │ │ └── manga/ │ │ │ ├── UpcomingMangaScreen.kt │ │ │ ├── UpcomingMangaScreenContent.kt │ │ │ ├── UpcomingMangaScreenModel.kt │ │ │ ├── UpcomingMangaUIModel.kt │ │ │ └── components/ │ │ │ └── UpcomingItem.kt │ │ └── res/ │ │ ├── anim/ │ │ │ ├── player_enter_bottom.xml │ │ │ ├── player_enter_left.xml │ │ │ ├── player_enter_right.xml │ │ │ ├── player_enter_top.xml │ │ │ ├── player_exit_bottom.xml │ │ │ ├── player_exit_left.xml │ │ │ ├── player_exit_right.xml │ │ │ ├── player_exit_top.xml │ │ │ ├── player_fade_in.xml │ │ │ ├── player_fade_out.xml │ │ │ ├── shared_axis_x_pop_enter.xml │ │ │ ├── shared_axis_x_pop_exit.xml │ │ │ ├── shared_axis_x_push_enter.xml │ │ │ └── shared_axis_x_push_exit.xml │ │ ├── anim-v33/ │ │ │ ├── shared_axis_x_pop_enter.xml │ │ │ ├── shared_axis_x_pop_exit.xml │ │ │ ├── shared_axis_x_push_enter.xml │ │ │ └── shared_axis_x_push_exit.xml │ │ ├── color/ │ │ │ └── draggable_card_foreground.xml │ │ ├── drawable/ │ │ │ ├── anim_animelibrary_enter.xml │ │ │ ├── anim_animelibrary_leave.xml │ │ │ ├── anim_browse_enter.xml │ │ │ ├── anim_caret_down.xml │ │ │ ├── anim_history_enter.xml │ │ │ ├── anim_library_enter.xml │ │ │ ├── anim_more_enter.xml │ │ │ ├── anim_play_to_pause.xml │ │ │ ├── anim_updates_enter.xml │ │ │ ├── cover_error.xml │ │ │ ├── ic_ani.xml │ │ │ ├── ic_ani_monochrome_launcher.xml │ │ │ ├── ic_animelibrary_filled_24dp.xml │ │ │ ├── ic_animelibrary_outline_24dp.xml │ │ │ ├── ic_animelibrary_selector_24dp.xml │ │ │ ├── ic_arrow_back_24dp.xml │ │ │ ├── ic_baseline_collections_24.xml │ │ │ ├── ic_baseline_input_24.xml │ │ │ ├── ic_baseline_open_in_new_24.xml │ │ │ ├── ic_book_24dp.xml │ │ │ ├── ic_brightness_negative_20dp.xml │ │ │ ├── ic_chrome_player_mode_24dp.xml │ │ │ ├── ic_circle_200dp.xml │ │ │ ├── ic_circle_right_200dp.xml │ │ │ ├── ic_close_24dp.xml │ │ │ ├── ic_collections_baseline_state.xml │ │ │ ├── ic_crop_24dp.xml │ │ │ ├── ic_crop_off_24dp.xml │ │ │ ├── ic_done_24dp.xml │ │ │ ├── ic_done_prev_24dp.xml │ │ │ ├── ic_download_item_24dp.xml │ │ │ ├── ic_drag_handle_24dp.xml │ │ │ ├── ic_extension_24dp.xml │ │ │ ├── ic_folder_24dp.xml │ │ │ ├── ic_forward_10_24dp.xml │ │ │ ├── ic_glasses_24dp.xml │ │ │ ├── ic_info_24dp.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_overflow_24dp.xml │ │ │ ├── ic_pause_24dp.xml │ │ │ ├── ic_pause_circle_filled_24.xml │ │ │ ├── ic_photo_24dp.xml │ │ │ ├── ic_play_arrow_24dp.xml │ │ │ ├── ic_play_circle_filled_24.xml │ │ │ ├── ic_play_seek_triangle.xml │ │ │ ├── ic_reader_continuous_vertical_24dp.xml │ │ │ ├── ic_reader_default_24dp.xml │ │ │ ├── ic_reader_ltr_24dp.xml │ │ │ ├── ic_reader_rtl_24dp.xml │ │ │ ├── ic_reader_vertical_24dp.xml │ │ │ ├── ic_reader_webtoon_24dp.xml │ │ │ ├── ic_refresh_24dp.xml │ │ │ ├── ic_share_24dp.xml │ │ │ ├── ic_skip_next_24dp.xml │ │ │ ├── ic_skip_previous_24dp.xml │ │ │ ├── ic_system_update_alt_white_24dp.xml │ │ │ ├── ic_tachi_splash.xml │ │ │ ├── ic_updates_outline_24dp.xml │ │ │ ├── ic_video_chapter_20dp.xml │ │ │ ├── ic_volume_off_24dp.xml │ │ │ ├── ic_warning_white_24dp.xml │ │ │ ├── line_divider.xml │ │ │ ├── material_popup_background.xml │ │ │ ├── outline_brand_family_24.xml │ │ │ ├── sc_collections_baseline_48dp.xml │ │ │ ├── sc_collections_bookmark_48dp.xml │ │ │ ├── sc_explore_48dp.xml │ │ │ ├── sc_history_48dp.xml │ │ │ ├── sc_new_releases_48dp.xml │ │ │ └── sharp_shadow_24.xml │ │ ├── layout/ │ │ │ ├── download_header.xml │ │ │ ├── download_item.xml │ │ │ ├── download_list.xml │ │ │ ├── player_layout.xml │ │ │ ├── pref_widget_switch_material.xml │ │ │ ├── reader_activity.xml │ │ │ └── reader_error.xml │ │ ├── menu/ │ │ │ ├── chapter_download.xml │ │ │ ├── download_single.xml │ │ │ └── main_nav.xml │ │ ├── mipmap/ │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── raw/ │ │ │ └── keep.xml │ │ ├── values/ │ │ │ ├── attrs.xml │ │ │ ├── bools.xml │ │ │ ├── colors_cottoncandy.xml │ │ │ ├── colors_mocha.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── integers.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ ├── values-night/ │ │ │ ├── bools.xml │ │ │ ├── colors_cottoncandy.xml │ │ │ ├── colors_mocha.xml │ │ │ └── themes.xml │ │ ├── values-night-v31/ │ │ │ └── themes.xml │ │ ├── values-sw720dp/ │ │ │ └── dimens.xml │ │ ├── values-v27/ │ │ │ ├── bools.xml │ │ │ └── themes.xml │ │ ├── values-v31/ │ │ │ └── themes.xml │ │ └── xml/ │ │ ├── network_security_config.xml │ │ ├── provider_paths.xml │ │ ├── s_pen_actions.xml │ │ └── searchable.xml │ └── test/ │ └── java/ │ └── mihon/ │ └── core/ │ └── migration/ │ └── MigratorTest.kt ├── build.gradle.kts ├── buildSrc/ │ ├── build.gradle.kts │ ├── settings.gradle.kts │ └── src/ │ └── main/ │ └── kotlin/ │ ├── mihon/ │ │ └── buildlogic/ │ │ ├── AndroidConfig.kt │ │ ├── BuildConfig.kt │ │ ├── Commands.kt │ │ ├── ProjectExtensions.kt │ │ └── tasks/ │ │ └── LocalesConfigTask.kt │ ├── mihon.android.application.compose.gradle.kts │ ├── mihon.android.application.gradle.kts │ ├── mihon.benchmark.gradle.kts │ ├── mihon.code.lint.gradle.kts │ ├── mihon.library.compose.gradle.kts │ └── mihon.library.gradle.kts ├── core/ │ ├── archive/ │ │ ├── build.gradle.kts │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ └── kotlin/ │ │ └── mihon/ │ │ └── core/ │ │ └── archive/ │ │ ├── ArchiveEntry.kt │ │ ├── ArchiveInputStream.kt │ │ ├── ArchiveReader.kt │ │ ├── EpubReader.kt │ │ ├── UniFileExtensions.kt │ │ └── ZipWriter.kt │ └── common/ │ ├── build.gradle.kts │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ ├── eu/ │ │ └── kanade/ │ │ └── tachiyomi/ │ │ ├── core/ │ │ │ ├── Constants.kt │ │ │ └── security/ │ │ │ └── SecurityPreferences.kt │ │ ├── network/ │ │ │ ├── AndroidCookieJar.kt │ │ │ ├── DohProviders.kt │ │ │ ├── JavaScriptEngine.kt │ │ │ ├── NetworkHelper.kt │ │ │ ├── NetworkPreferences.kt │ │ │ ├── OkHttpExtensions.kt │ │ │ ├── ProgressListener.kt │ │ │ ├── ProgressResponseBody.kt │ │ │ ├── Requests.kt │ │ │ └── interceptor/ │ │ │ ├── CloudflareInterceptor.kt │ │ │ ├── IgnoreGzipInterceptor.kt │ │ │ ├── RateLimitInterceptor.kt │ │ │ ├── SpecificHostRateLimitInterceptor.kt │ │ │ ├── UncaughtExceptionInterceptor.kt │ │ │ ├── UserAgentInterceptor.kt │ │ │ └── WebViewInterceptor.kt │ │ └── util/ │ │ ├── lang/ │ │ │ ├── Hash.kt │ │ │ └── StringExtensions.kt │ │ ├── storage/ │ │ │ ├── DiskUtil.kt │ │ │ ├── FFmpegUtils.kt │ │ │ └── FileExtensions.kt │ │ └── system/ │ │ ├── DensityExtensions.kt │ │ ├── DeviceUtil.kt │ │ ├── GLUtil.kt │ │ ├── ToastExtensions.kt │ │ └── WebViewUtil.kt │ └── tachiyomi/ │ └── core/ │ └── common/ │ ├── i18n/ │ │ └── Localize.kt │ ├── preference/ │ │ ├── AndroidPreference.kt │ │ ├── AndroidPreferenceStore.kt │ │ ├── CheckboxState.kt │ │ ├── InMemoryPreferenceStore.kt │ │ ├── Preference.kt │ │ ├── PreferenceStore.kt │ │ └── TriState.kt │ ├── storage/ │ │ ├── AndroidStorageFolderProvider.kt │ │ ├── FolderProvider.kt │ │ ├── UniFileExtensions.kt │ │ └── UniFileTempFileManager.kt │ └── util/ │ ├── lang/ │ │ ├── BooleanExtensions.kt │ │ ├── CoroutinesExtensions.kt │ │ ├── RxCoroutineBridge.kt │ │ └── SortUtil.kt │ └── system/ │ ├── ImageUtil.kt │ └── LogcatExtensions.kt ├── core-metadata/ │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── tachiyomi/ │ └── core/ │ └── metadata/ │ ├── comicinfo/ │ │ └── ComicInfo.kt │ └── tachiyomi/ │ ├── AnimeDetails.kt │ ├── ChapterDetails.kt │ ├── EpisodeDetails.kt │ └── MangaDetails.kt ├── data/ │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── java/ │ │ ├── mihon/ │ │ │ └── data/ │ │ │ └── repository/ │ │ │ ├── anime/ │ │ │ │ └── AnimeExtensionRepoRepositoryImpl.kt │ │ │ └── manga/ │ │ │ └── MangaExtensionRepoRepositoryImpl.kt │ │ └── tachiyomi/ │ │ └── data/ │ │ ├── DatabaseAdapter.kt │ │ ├── category/ │ │ │ ├── anime/ │ │ │ │ └── AnimeCategoryRepositoryImpl.kt │ │ │ └── manga/ │ │ │ └── MangaCategoryRepositoryImpl.kt │ │ ├── custombutton/ │ │ │ └── CustomButtonRepositoryImpl.kt │ │ ├── entries/ │ │ │ ├── anime/ │ │ │ │ ├── AnimeMapper.kt │ │ │ │ └── AnimeRepositoryImpl.kt │ │ │ └── manga/ │ │ │ ├── MangaMapper.kt │ │ │ └── MangaRepositoryImpl.kt │ │ ├── handlers/ │ │ │ ├── anime/ │ │ │ │ ├── AndroidAnimeDatabaseHandler.kt │ │ │ │ ├── AnimeDatabaseHandler.kt │ │ │ │ ├── AnimeTransactionContext.kt │ │ │ │ └── QueryPagingAnimeSource.kt │ │ │ └── manga/ │ │ │ ├── AndroidMangaDatabaseHandler.kt │ │ │ ├── MangaDatabaseHandler.kt │ │ │ ├── MangaTransactionContext.kt │ │ │ └── QueryPagingMangaSource.kt │ │ ├── history/ │ │ │ ├── anime/ │ │ │ │ ├── AnimeHistoryMapper.kt │ │ │ │ └── AnimeHistoryRepositoryImpl.kt │ │ │ └── manga/ │ │ │ ├── MangaHistoryMapper.kt │ │ │ └── MangaHistoryRepositoryImpl.kt │ │ ├── items/ │ │ │ ├── chapter/ │ │ │ │ ├── ChapterRepositoryImpl.kt │ │ │ │ └── ChapterSanitizer.kt │ │ │ └── episode/ │ │ │ ├── EpisodeRepositoryImpl.kt │ │ │ └── EpisodeSanitizer.kt │ │ ├── release/ │ │ │ ├── GithubRelease.kt │ │ │ └── ReleaseServiceImpl.kt │ │ ├── source/ │ │ │ ├── anime/ │ │ │ │ ├── AnimeSourcePagingSource.kt │ │ │ │ ├── AnimeSourceRepositoryImpl.kt │ │ │ │ └── AnimeStubSourceRepositoryImpl.kt │ │ │ └── manga/ │ │ │ ├── MangaSourcePagingSource.kt │ │ │ ├── MangaSourceRepositoryImpl.kt │ │ │ └── MangaStubSourceRepositoryImpl.kt │ │ ├── track/ │ │ │ ├── anime/ │ │ │ │ ├── AnimeTrackMapper.kt │ │ │ │ └── AnimeTrackRepositoryImpl.kt │ │ │ └── manga/ │ │ │ ├── MangaTrackMapper.kt │ │ │ └── MangaTrackRepositoryImpl.kt │ │ └── updates/ │ │ ├── anime/ │ │ │ └── AnimeUpdatesRepositoryImpl.kt │ │ └── manga/ │ │ └── MangaUpdatesRepositoryImpl.kt │ ├── sqldelight/ │ │ ├── data/ │ │ │ ├── categories.sq │ │ │ ├── chapters.sq │ │ │ ├── excluded_scanlators.sq │ │ │ ├── extension_repos.sq │ │ │ ├── history.sq │ │ │ ├── manga_sync.sq │ │ │ ├── mangas.sq │ │ │ ├── mangas_categories.sq │ │ │ └── sources.sq │ │ ├── migrations/ │ │ │ ├── 1.sqm │ │ │ ├── 10.sqm │ │ │ ├── 11.sqm │ │ │ ├── 12.sqm │ │ │ ├── 13.sqm │ │ │ ├── 14.sqm │ │ │ ├── 15.sqm │ │ │ ├── 16.sqm │ │ │ ├── 17.sqm │ │ │ ├── 18.sqm │ │ │ ├── 19.sqm │ │ │ ├── 2.sqm │ │ │ ├── 20.sqm │ │ │ ├── 21.sqm │ │ │ ├── 22.sqm │ │ │ ├── 23.sqm │ │ │ ├── 24.sqm │ │ │ ├── 25.sqm │ │ │ ├── 26.sqm │ │ │ ├── 27.sqm │ │ │ ├── 28.sqm │ │ │ ├── 29.sqm │ │ │ ├── 3.sqm │ │ │ ├── 30.sqm │ │ │ ├── 31.sqm │ │ │ ├── 32.sqm │ │ │ ├── 4.sqm │ │ │ ├── 5.sqm │ │ │ ├── 6.sqm │ │ │ ├── 7.sqm │ │ │ ├── 8.sqm │ │ │ └── 9.sqm │ │ └── view/ │ │ ├── historyView.sq │ │ ├── libraryView.sq │ │ └── updatesView.sq │ └── sqldelightanime/ │ ├── dataanime/ │ │ ├── anime_sync.sq │ │ ├── animehistory.sq │ │ ├── animes.sq │ │ ├── animes_categories.sq │ │ ├── animesources.sq │ │ ├── categories.sq │ │ ├── custom_buttons.sq │ │ ├── episodes.sq │ │ └── extension_repos.sq │ ├── migrations/ │ │ ├── 113.sqm │ │ ├── 114.sqm │ │ ├── 115.sqm │ │ ├── 116.sqm │ │ ├── 117.sqm │ │ ├── 118.sqm │ │ ├── 119.sqm │ │ ├── 120.sqm │ │ ├── 121.sqm │ │ ├── 122.sqm │ │ ├── 123.sqm │ │ ├── 124.sqm │ │ ├── 125.sqm │ │ ├── 126.sqm │ │ ├── 127.sqm │ │ ├── 128.sqm │ │ ├── 129.sqm │ │ ├── 130.sqm │ │ ├── 131.sqm │ │ ├── 132.sqm │ │ ├── 133.sqm │ │ ├── 134.sqm │ │ └── 135.sqm │ └── view/ │ ├── animedeletableView.sq │ ├── animehistoryView.sq │ ├── animehistorystatsView.sq │ ├── animelibView.sq │ ├── animeseasonsView.sq │ ├── animeseasonstatsView.sq │ ├── animeupdatesView.sq │ └── episodestatsView.sq ├── domain/ │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src/ │ ├── main/ │ │ ├── AndroidManifest.xml │ │ └── java/ │ │ ├── aniyomi/ │ │ │ └── domain/ │ │ │ └── anime/ │ │ │ ├── SeasonAnime.kt │ │ │ └── SeasonDisplayMode.kt │ │ ├── mihon/ │ │ │ └── domain/ │ │ │ ├── extensionrepo/ │ │ │ │ ├── anime/ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ ├── CreateAnimeExtensionRepo.kt │ │ │ │ │ │ ├── DeleteAnimeExtensionRepo.kt │ │ │ │ │ │ ├── GetAnimeExtensionRepo.kt │ │ │ │ │ │ ├── GetAnimeExtensionRepoCount.kt │ │ │ │ │ │ ├── ReplaceAnimeExtensionRepo.kt │ │ │ │ │ │ └── UpdateAnimeExtensionRepo.kt │ │ │ │ │ └── repository/ │ │ │ │ │ └── AnimeExtensionRepoRepository.kt │ │ │ │ ├── exception/ │ │ │ │ │ └── SaveExtensionRepoException.kt │ │ │ │ ├── manga/ │ │ │ │ │ ├── interactor/ │ │ │ │ │ │ ├── CreateMangaExtensionRepo.kt │ │ │ │ │ │ ├── DeleteMangaExtensionRepo.kt │ │ │ │ │ │ ├── GetMangaExtensionRepo.kt │ │ │ │ │ │ ├── GetMangaExtensionRepoCount.kt │ │ │ │ │ │ ├── ReplaceMangaExtensionRepo.kt │ │ │ │ │ │ └── UpdateMangaExtensionRepo.kt │ │ │ │ │ └── repository/ │ │ │ │ │ └── MangaExtensionRepoRepository.kt │ │ │ │ ├── model/ │ │ │ │ │ └── ExtensionRepo.kt │ │ │ │ └── service/ │ │ │ │ ├── ExtensionRepoDto.kt │ │ │ │ └── ExtensionRepoService.kt │ │ │ ├── items/ │ │ │ │ ├── chapter/ │ │ │ │ │ └── interactor/ │ │ │ │ │ └── FilterChaptersForDownload.kt │ │ │ │ └── episode/ │ │ │ │ └── interactor/ │ │ │ │ └── FilterEpisodesForDownload.kt │ │ │ └── upcoming/ │ │ │ ├── anime/ │ │ │ │ └── interactor/ │ │ │ │ └── GetUpcomingAnime.kt │ │ │ └── manga/ │ │ │ └── interactor/ │ │ │ └── GetUpcomingManga.kt │ │ └── tachiyomi/ │ │ └── domain/ │ │ ├── backup/ │ │ │ └── service/ │ │ │ ├── BackupPreferences.kt │ │ │ └── PreferenceValues.kt │ │ ├── category/ │ │ │ ├── anime/ │ │ │ │ ├── interactor/ │ │ │ │ │ ├── CreateAnimeCategoryWithName.kt │ │ │ │ │ ├── DeleteAnimeCategory.kt │ │ │ │ │ ├── GetAnimeCategories.kt │ │ │ │ │ ├── GetVisibleAnimeCategories.kt │ │ │ │ │ ├── HideAnimeCategory.kt │ │ │ │ │ ├── RenameAnimeCategory.kt │ │ │ │ │ ├── ReorderAnimeCategory.kt │ │ │ │ │ ├── ResetAnimeCategoryFlags.kt │ │ │ │ │ ├── SetAnimeCategories.kt │ │ │ │ │ ├── SetAnimeDisplayMode.kt │ │ │ │ │ ├── SetSortModeForAnimeCategory.kt │ │ │ │ │ └── UpdateAnimeCategory.kt │ │ │ │ └── repository/ │ │ │ │ └── AnimeCategoryRepository.kt │ │ │ ├── manga/ │ │ │ │ ├── interactor/ │ │ │ │ │ ├── CreateMangaCategoryWithName.kt │ │ │ │ │ ├── DeleteMangaCategory.kt │ │ │ │ │ ├── GetMangaCategories.kt │ │ │ │ │ ├── GetVisibleMangaCategories.kt │ │ │ │ │ ├── HideMangaCategory.kt │ │ │ │ │ ├── RenameMangaCategory.kt │ │ │ │ │ ├── ReorderMangaCategory.kt │ │ │ │ │ ├── ResetMangaCategoryFlags.kt │ │ │ │ │ ├── SetMangaCategories.kt │ │ │ │ │ ├── SetMangaDisplayMode.kt │ │ │ │ │ ├── SetSortModeForMangaCategory.kt │ │ │ │ │ └── UpdateMangaCategory.kt │ │ │ │ └── repository/ │ │ │ │ └── MangaCategoryRepository.kt │ │ │ └── model/ │ │ │ ├── Category.kt │ │ │ └── CategoryUpdate.kt │ │ ├── custombuttons/ │ │ │ ├── exception/ │ │ │ │ └── SaveCustomButtonException.kt │ │ │ ├── interactor/ │ │ │ │ ├── CreateCustomButton.kt │ │ │ │ ├── DeleteCustomButton.kt │ │ │ │ ├── GetCustomButtons.kt │ │ │ │ ├── ReorderCustomButton.kt │ │ │ │ ├── ToggleFavoriteCustomButton.kt │ │ │ │ └── UpdateCustomButton.kt │ │ │ ├── model/ │ │ │ │ ├── CustomButton.kt │ │ │ │ └── CustomButtonUpdate.kt │ │ │ └── repository/ │ │ │ └── CustomButtonRepository.kt │ │ ├── download/ │ │ │ └── service/ │ │ │ └── DownloadPreferences.kt │ │ ├── entries/ │ │ │ ├── EntryCover.kt │ │ │ ├── TriState.kt │ │ │ ├── anime/ │ │ │ │ ├── interactor/ │ │ │ │ │ ├── AnimeFetchInterval.kt │ │ │ │ │ ├── GetAnime.kt │ │ │ │ │ ├── GetAnimeByUrlAndSourceId.kt │ │ │ │ │ ├── GetAnimeFavorites.kt │ │ │ │ │ ├── GetAnimeWithEpisodesAndSeasons.kt │ │ │ │ │ ├── GetDuplicateLibraryAnime.kt │ │ │ │ │ ├── GetLibraryAnime.kt │ │ │ │ │ ├── NetworkToLocalAnime.kt │ │ │ │ │ ├── ResetAnimeViewerFlags.kt │ │ │ │ │ ├── SetAnimeEpisodeFlags.kt │ │ │ │ │ └── SetAnimeSeasonFlags.kt │ │ │ │ ├── model/ │ │ │ │ │ ├── Anime.kt │ │ │ │ │ ├── AnimeCover.kt │ │ │ │ │ ├── AnimeUpdate.kt │ │ │ │ │ └── NoSeasonsException.kt │ │ │ │ └── repository/ │ │ │ │ └── AnimeRepository.kt │ │ │ └── manga/ │ │ │ ├── interactor/ │ │ │ │ ├── GetDuplicateLibraryManga.kt │ │ │ │ ├── GetLibraryManga.kt │ │ │ │ ├── GetManga.kt │ │ │ │ ├── GetMangaByUrlAndSourceId.kt │ │ │ │ ├── GetMangaFavorites.kt │ │ │ │ ├── GetMangaWithChapters.kt │ │ │ │ ├── MangaFetchInterval.kt │ │ │ │ ├── NetworkToLocalManga.kt │ │ │ │ ├── ResetMangaViewerFlags.kt │ │ │ │ └── SetMangaChapterFlags.kt │ │ │ ├── model/ │ │ │ │ ├── Manga.kt │ │ │ │ ├── MangaCover.kt │ │ │ │ └── MangaUpdate.kt │ │ │ └── repository/ │ │ │ └── MangaRepository.kt │ │ ├── history/ │ │ │ ├── anime/ │ │ │ │ ├── interactor/ │ │ │ │ │ ├── GetAnimeHistory.kt │ │ │ │ │ ├── GetNextEpisodes.kt │ │ │ │ │ ├── RemoveAnimeHistory.kt │ │ │ │ │ └── UpsertAnimeHistory.kt │ │ │ │ ├── model/ │ │ │ │ │ ├── AnimeHistory.kt │ │ │ │ │ ├── AnimeHistoryUpdate.kt │ │ │ │ │ └── AnimeHistoryWithRelations.kt │ │ │ │ └── repository/ │ │ │ │ └── AnimeHistoryRepository.kt │ │ │ └── manga/ │ │ │ ├── interactor/ │ │ │ │ ├── GetMangaHistory.kt │ │ │ │ ├── GetNextChapters.kt │ │ │ │ ├── GetTotalReadDuration.kt │ │ │ │ ├── RemoveMangaHistory.kt │ │ │ │ └── UpsertMangaHistory.kt │ │ │ ├── model/ │ │ │ │ ├── MangaHistory.kt │ │ │ │ ├── MangaHistoryUpdate.kt │ │ │ │ └── MangaHistoryWithRelations.kt │ │ │ └── repository/ │ │ │ └── MangaHistoryRepository.kt │ │ ├── items/ │ │ │ ├── chapter/ │ │ │ │ ├── interactor/ │ │ │ │ │ ├── GetChapter.kt │ │ │ │ │ ├── GetChapterByUrlAndMangaId.kt │ │ │ │ │ ├── GetChaptersByMangaId.kt │ │ │ │ │ ├── SetMangaDefaultChapterFlags.kt │ │ │ │ │ ├── ShouldUpdateDbChapter.kt │ │ │ │ │ └── UpdateChapter.kt │ │ │ │ ├── model/ │ │ │ │ │ ├── Chapter.kt │ │ │ │ │ ├── ChapterUpdate.kt │ │ │ │ │ └── NoChaptersException.kt │ │ │ │ ├── repository/ │ │ │ │ │ └── ChapterRepository.kt │ │ │ │ └── service/ │ │ │ │ ├── ChapterRecognition.kt │ │ │ │ ├── ChapterSorter.kt │ │ │ │ └── MissingChapters.kt │ │ │ ├── episode/ │ │ │ │ ├── interactor/ │ │ │ │ │ ├── GetEpisode.kt │ │ │ │ │ ├── GetEpisodeByUrlAndAnimeId.kt │ │ │ │ │ ├── GetEpisodesByAnimeId.kt │ │ │ │ │ ├── SetAnimeDefaultEpisodeFlags.kt │ │ │ │ │ ├── ShouldUpdateDbEpisode.kt │ │ │ │ │ └── UpdateEpisode.kt │ │ │ │ ├── model/ │ │ │ │ │ ├── Episode.kt │ │ │ │ │ ├── EpisodeUpdate.kt │ │ │ │ │ └── NoEpisodesException.kt │ │ │ │ ├── repository/ │ │ │ │ │ └── EpisodeRepository.kt │ │ │ │ └── service/ │ │ │ │ ├── EpisodeRecognition.kt │ │ │ │ ├── EpisodeSorter.kt │ │ │ │ └── MissingEpisodes.kt │ │ │ └── season/ │ │ │ ├── interactor/ │ │ │ │ ├── GetAnimeSeasonsByParentId.kt │ │ │ │ ├── SetAnimeDefaultSeasonFlags.kt │ │ │ │ └── ShouldUpdateDbSeason.kt │ │ │ └── service/ │ │ │ ├── SeasonRecognition.kt │ │ │ └── SeasonSorter.kt │ │ ├── library/ │ │ │ ├── anime/ │ │ │ │ ├── LibraryAnime.kt │ │ │ │ └── model/ │ │ │ │ └── AnimeLibrarySortMode.kt │ │ │ ├── manga/ │ │ │ │ ├── LibraryManga.kt │ │ │ │ └── model/ │ │ │ │ └── MangaLibrarySortMode.kt │ │ │ ├── model/ │ │ │ │ ├── Flag.kt │ │ │ │ └── LibraryDisplayMode.kt │ │ │ └── service/ │ │ │ └── LibraryPreferences.kt │ │ ├── release/ │ │ │ ├── interactor/ │ │ │ │ └── GetApplicationRelease.kt │ │ │ ├── model/ │ │ │ │ └── Release.kt │ │ │ └── service/ │ │ │ └── ReleaseService.kt │ │ ├── source/ │ │ │ ├── anime/ │ │ │ │ ├── interactor/ │ │ │ │ │ ├── GetAnimeSourcesWithNonLibraryAnime.kt │ │ │ │ │ └── GetRemoteAnime.kt │ │ │ │ ├── model/ │ │ │ │ │ ├── AnimeSource.kt │ │ │ │ │ ├── AnimeSourceWithIds.kt │ │ │ │ │ ├── DeletableAnime.kt │ │ │ │ │ ├── Pin.kt │ │ │ │ │ └── StubAnimeSource.kt │ │ │ │ ├── repository/ │ │ │ │ │ ├── AnimeSourceRepository.kt │ │ │ │ │ └── AnimeStubSourceRepository.kt │ │ │ │ └── service/ │ │ │ │ └── AnimeSourceManager.kt │ │ │ └── manga/ │ │ │ ├── interactor/ │ │ │ │ ├── GetMangaSourcesWithNonLibraryManga.kt │ │ │ │ └── GetRemoteManga.kt │ │ │ ├── model/ │ │ │ │ ├── MangaSourceWithCount.kt │ │ │ │ ├── Pin.kt │ │ │ │ ├── Source.kt │ │ │ │ └── StubMangaSource.kt │ │ │ ├── repository/ │ │ │ │ ├── MangaSourceRepository.kt │ │ │ │ └── MangaStubSourceRepository.kt │ │ │ └── service/ │ │ │ └── MangaSourceManager.kt │ │ ├── storage/ │ │ │ └── service/ │ │ │ ├── StorageManager.kt │ │ │ └── StoragePreferences.kt │ │ ├── track/ │ │ │ ├── anime/ │ │ │ │ ├── interactor/ │ │ │ │ │ ├── DeleteAnimeTrack.kt │ │ │ │ │ ├── GetAnimeTracks.kt │ │ │ │ │ ├── GetTracksPerAnime.kt │ │ │ │ │ └── InsertAnimeTrack.kt │ │ │ │ ├── model/ │ │ │ │ │ └── AnimeTrack.kt │ │ │ │ └── repository/ │ │ │ │ └── AnimeTrackRepository.kt │ │ │ └── manga/ │ │ │ ├── interactor/ │ │ │ │ ├── DeleteMangaTrack.kt │ │ │ │ ├── GetMangaTracks.kt │ │ │ │ ├── GetTracksPerManga.kt │ │ │ │ └── InsertMangaTrack.kt │ │ │ ├── model/ │ │ │ │ └── MangaTrack.kt │ │ │ └── repository/ │ │ │ └── MangaTrackRepository.kt │ │ └── updates/ │ │ ├── anime/ │ │ │ ├── interactor/ │ │ │ │ └── GetAnimeUpdates.kt │ │ │ ├── model/ │ │ │ │ └── AnimeUpdatesWithRelations.kt │ │ │ └── repository/ │ │ │ └── AnimeUpdatesRepository.kt │ │ └── manga/ │ │ ├── interactor/ │ │ │ └── GetMangaUpdates.kt │ │ ├── model/ │ │ │ └── MangaUpdatesWithRelations.kt │ │ └── repository/ │ │ └── MangaUpdatesRepository.kt │ └── test/ │ └── java/ │ └── tachiyomi/ │ └── domain/ │ ├── entries/ │ │ ├── anime/ │ │ │ └── interactor/ │ │ │ └── AnimeFetchIntervalTest.kt │ │ └── manga/ │ │ └── interactor/ │ │ └── MangaFetchIntervalTest.kt │ ├── items/ │ │ ├── chapter/ │ │ │ └── service/ │ │ │ └── ChapterRecognitionTest.kt │ │ └── service/ │ │ └── MissingItemsTest.kt │ ├── library/ │ │ └── model/ │ │ └── LibraryFlagsTest.kt │ └── release/ │ └── interactor/ │ └── GetApplicationReleaseTest.kt ├── fastlane/ │ └── metadata/ │ └── android/ │ └── en-US/ │ ├── full_description.txt │ └── short_description.txt ├── gradle/ │ ├── androidx.versions.toml │ ├── aniyomi.versions.toml │ ├── compose.versions.toml │ ├── gradle-daemon-jvm.properties │ ├── kotlinx.versions.toml │ ├── libs.versions.toml │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat ├── i18n/ │ ├── README.md │ ├── build.gradle.kts │ └── src/ │ ├── commonMain/ │ │ └── moko-resources/ │ │ ├── am/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ar/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── as/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── base/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── be/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── bg/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── bn/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ca/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ceb/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── cs/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── cv/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── da/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── de/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── el/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── eo/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── es/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── eu/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── fa/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── fi/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── fil/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── fr/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── gl/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── he/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── hi/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── hr/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── hu/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── in/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── it/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ja/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── jv/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ka-rGE/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── kk/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── km/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── kn/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ko/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── lt/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── lv/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ml/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── mr/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ms/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── my/ │ │ │ └── strings.xml │ │ ├── nb-rNO/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ne/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── nl/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── nn/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── pl/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── pt/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── pt-rBR/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ro/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ru/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── sa/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── sah/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── sc/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── sdh/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── sk/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── sq/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── sr/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── sv/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── ta/ │ │ │ └── strings.xml │ │ ├── te/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── th/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── tr/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── uk/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── uz/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── vi/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ ├── zh-rCN/ │ │ │ ├── plurals.xml │ │ │ └── strings.xml │ │ └── zh-rTW/ │ │ ├── plurals.xml │ │ └── strings.xml │ └── main/ │ └── AndroidManifest.xml ├── i18n-aniyomi/ │ ├── build.gradle.kts │ └── src/ │ └── commonMain/ │ └── moko-resources/ │ ├── am/ │ │ └── strings.xml │ ├── ar/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── as/ │ │ └── strings.xml │ ├── base/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── be/ │ │ └── strings.xml │ ├── bg/ │ │ └── strings.xml │ ├── bn/ │ │ └── strings.xml │ ├── ca/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── ceb/ │ │ └── strings.xml │ ├── cs/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── cv/ │ │ └── strings.xml │ ├── da/ │ │ └── strings.xml │ ├── de/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── el/ │ │ └── strings.xml │ ├── eo/ │ │ └── strings.xml │ ├── es/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── eu/ │ │ └── strings.xml │ ├── fa/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── fi/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── fil/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── fr/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── gl/ │ │ └── strings.xml │ ├── he/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── hi/ │ │ └── strings.xml │ ├── hr/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── hu/ │ │ └── strings.xml │ ├── in/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── it/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── ja/ │ │ └── strings.xml │ ├── jv/ │ │ └── strings.xml │ ├── ka-rGE/ │ │ └── strings.xml │ ├── kk/ │ │ └── strings.xml │ ├── km/ │ │ └── strings.xml │ ├── kn/ │ │ └── strings.xml │ ├── ko/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── lt/ │ │ └── strings.xml │ ├── lv/ │ │ └── strings.xml │ ├── ml/ │ │ └── strings.xml │ ├── mr/ │ │ └── strings.xml │ ├── ms/ │ │ └── strings.xml │ ├── my/ │ │ └── strings.xml │ ├── nb-rNO/ │ │ └── strings.xml │ ├── ne/ │ │ └── strings.xml │ ├── nl/ │ │ └── strings.xml │ ├── nn/ │ │ └── strings.xml │ ├── pl/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── pt/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── pt-rBR/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── ro/ │ │ └── strings.xml │ ├── ru/ │ │ └── strings.xml │ ├── sa/ │ │ └── strings.xml │ ├── sah/ │ │ └── strings.xml │ ├── sc/ │ │ └── strings.xml │ ├── sdh/ │ │ └── strings.xml │ ├── sk/ │ │ └── strings.xml │ ├── sq/ │ │ └── strings.xml │ ├── sr/ │ │ └── strings.xml │ ├── sv/ │ │ └── strings.xml │ ├── ta/ │ │ └── strings.xml │ ├── te/ │ │ └── strings.xml │ ├── th/ │ │ └── strings.xml │ ├── tr/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── uk/ │ │ ├── plurals.xml │ │ └── strings.xml │ ├── ur/ │ │ └── strings.xml │ ├── uz/ │ │ └── strings.xml │ ├── vi/ │ │ └── strings.xml │ ├── zh-rCN/ │ │ ├── plurals.xml │ │ └── strings.xml │ └── zh-rTW/ │ └── strings.xml ├── macrobenchmark/ │ ├── README.md │ ├── build.gradle.kts │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── tachiyomi/ │ └── macrobenchmark/ │ ├── BaselineProfileGenerator.kt │ └── StartupBenchmark.kt ├── presentation-core/ │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── java/ │ │ ├── mihon/ │ │ │ └── presentation/ │ │ │ └── core/ │ │ │ └── util/ │ │ │ └── PagingDataUtil.kt │ │ └── tachiyomi/ │ │ └── presentation/ │ │ └── core/ │ │ ├── components/ │ │ │ ├── ActionButton.kt │ │ │ ├── AdaptiveSheet.kt │ │ │ ├── Badges.kt │ │ │ ├── CircularProgressIndicator.kt │ │ │ ├── CollapsibleBox.kt │ │ │ ├── LabeledCheckbox.kt │ │ │ ├── LazyColumnWithAction.kt │ │ │ ├── LazyGrid.kt │ │ │ ├── LazyList.kt │ │ │ ├── LinkIcon.kt │ │ │ ├── ListGroupHeader.kt │ │ │ ├── Pill.kt │ │ │ ├── SectionCard.kt │ │ │ ├── SettingsItems.kt │ │ │ ├── TwoPanelBox.kt │ │ │ ├── VerticalFastScroller.kt │ │ │ ├── WheelPicker.kt │ │ │ └── material/ │ │ │ ├── AlertDialog.kt │ │ │ ├── Button.kt │ │ │ ├── Constants.kt │ │ │ ├── FloatingActionButton.kt │ │ │ ├── IconButtonTokens.kt │ │ │ ├── IconToggleButton.kt │ │ │ ├── NavigationBar.kt │ │ │ ├── NavigationRail.kt │ │ │ ├── PullRefresh.kt │ │ │ ├── Scaffold.kt │ │ │ ├── Slider.kt │ │ │ ├── Surface.kt │ │ │ └── Tabs.kt │ │ ├── i18n/ │ │ │ └── Localize.kt │ │ ├── icons/ │ │ │ ├── CustomIcons.kt │ │ │ ├── Discord.kt │ │ │ └── Github.kt │ │ ├── screens/ │ │ │ ├── EmptyScreen.kt │ │ │ ├── InfoScreen.kt │ │ │ └── LoadingScreen.kt │ │ ├── theme/ │ │ │ ├── Color.kt │ │ │ └── Typography.kt │ │ └── util/ │ │ ├── Elevation.kt │ │ ├── LazyListState.kt │ │ ├── Modifier.kt │ │ ├── PaddingValues.kt │ │ ├── Preference.kt │ │ ├── Scrollbar.kt │ │ └── ThemePreviews.kt │ └── res/ │ ├── values/ │ │ ├── color_cloudflare.xml │ │ ├── color_doom.xml │ │ ├── color_lavender.xml │ │ ├── color_matrix.xml │ │ ├── color_sapphire.xml │ │ ├── colors.xml │ │ ├── colors_greenapple.xml │ │ ├── colors_midnightdusk.xml │ │ ├── colors_monochrome.xml │ │ ├── colors_nord.xml │ │ ├── colors_strawberry.xml │ │ ├── colors_tachiyomi.xml │ │ ├── colors_tako.xml │ │ ├── colors_tealturqoise.xml │ │ ├── colors_tidalwave.xml │ │ ├── colors_yinyang.xml │ │ └── colors_yotsuba.xml │ └── values-night/ │ ├── color_cloudflare.xml │ ├── color_doom.xml │ ├── color_lavender.xml │ ├── color_matrix.xml │ ├── color_sapphire.xml │ ├── colors.xml │ ├── colors_greenapple.xml │ ├── colors_midnightdusk.xml │ ├── colors_monochrome.xml │ ├── colors_nord.xml │ ├── colors_strawberry.xml │ ├── colors_tachiyomi.xml │ ├── colors_tako.xml │ ├── colors_tealturqoise.xml │ ├── colors_tidalwave.xml │ ├── colors_yinyang.xml │ └── colors_yotsuba.xml ├── presentation-widget/ │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── java/ │ │ └── tachiyomi/ │ │ └── presentation/ │ │ └── widget/ │ │ ├── components/ │ │ │ ├── anime/ │ │ │ │ ├── LockedAnimeWidget.kt │ │ │ │ ├── UpdatesAnimeCover.kt │ │ │ │ └── UpdatesAnimeWidget.kt │ │ │ └── manga/ │ │ │ ├── LockedMangaWidget.kt │ │ │ ├── UpdatesMangaCover.kt │ │ │ └── UpdatesMangaWidget.kt │ │ ├── entries/ │ │ │ ├── anime/ │ │ │ │ ├── AnimeUpdatesGridCoverScreenGlanceReceiver.kt │ │ │ │ ├── AnimeUpdatesGridCoverScreenGlanceWidget.kt │ │ │ │ ├── AnimeUpdatesGridGlanceReceiver.kt │ │ │ │ ├── AnimeUpdatesGridGlanceWidget.kt │ │ │ │ ├── AnimeWidgetManager.kt │ │ │ │ └── BaseAnimeUpdatesGridGlanceWidget.kt │ │ │ └── manga/ │ │ │ ├── BaseMangaUpdatesGridGlanceWidget.kt │ │ │ ├── MangaUpdatesGridCoverScreenGlanceReceiver.kt │ │ │ ├── MangaUpdatesGridCoverScreenGlanceWidget.kt │ │ │ ├── MangaUpdatesGridGlanceReceiver.kt │ │ │ ├── MangaUpdatesGridGlanceWidget.kt │ │ │ └── MangaWidgetManager.kt │ │ └── util/ │ │ └── GlanceUtils.kt │ └── res/ │ ├── drawable/ │ │ ├── appwidget_background.xml │ │ ├── appwidget_cover_error.xml │ │ └── appwidget_coverscreen_background.xml │ ├── layout/ │ │ ├── appwidget_coverscreen_loading.xml │ │ └── appwidget_loading.xml │ ├── values/ │ │ ├── colors_appwidget.xml │ │ └── dimens.xml │ ├── values-night-v31/ │ │ └── colors_appwidget.xml │ ├── values-v31/ │ │ ├── colors_appwidget.xml │ │ └── dimens.xml │ └── xml/ │ ├── updates_grid_homescreen_widget_info.xml │ ├── updates_grid_lockscreen_widget_info.xml │ └── updates_grid_samsung_cover_widget_info.xml ├── settings.gradle.kts ├── source-api/ │ ├── build.gradle.kts │ ├── consumer-proguard.pro │ └── src/ │ ├── androidMain/ │ │ ├── AndroidManifest.xml │ │ └── kotlin/ │ │ └── eu/ │ │ └── kanade/ │ │ └── tachiyomi/ │ │ ├── animesource/ │ │ │ └── PreferenceScreen.kt │ │ ├── source/ │ │ │ └── PreferenceScreen.kt │ │ └── util/ │ │ └── RxExtension.kt │ └── commonMain/ │ └── kotlin/ │ └── eu/ │ └── kanade/ │ └── tachiyomi/ │ ├── animesource/ │ │ ├── AnimeCatalogueSource.kt │ │ ├── AnimeSource.kt │ │ ├── AnimeSourceFactory.kt │ │ ├── ConfigurableAnimeSource.kt │ │ ├── PreferenceScreen.kt │ │ ├── UnmeteredSource.kt │ │ ├── model/ │ │ │ ├── AnimeFilter.kt │ │ │ ├── AnimeFilterList.kt │ │ │ ├── AnimeUpdateStrategy.kt │ │ │ ├── AnimesPage.kt │ │ │ ├── FetchType.kt │ │ │ ├── Hoster.kt │ │ │ ├── SAnime.kt │ │ │ ├── SAnimeImpl.kt │ │ │ ├── SEpisode.kt │ │ │ ├── SEpisodeImpl.kt │ │ │ └── Video.kt │ │ ├── online/ │ │ │ ├── AnimeHttpSource.kt │ │ │ ├── ParsedAnimeHttpSource.kt │ │ │ └── ResolvableAnimeSource.kt │ │ └── utils/ │ │ └── Preferences.kt │ ├── source/ │ │ ├── CatalogueSource.kt │ │ ├── ConfigurableSource.kt │ │ ├── MangaSource.kt │ │ ├── PreferenceScreen.kt │ │ ├── SourceFactory.kt │ │ ├── UnmeteredSource.kt │ │ ├── model/ │ │ │ ├── Filter.kt │ │ │ ├── FilterList.kt │ │ │ ├── MangasPage.kt │ │ │ ├── Page.kt │ │ │ ├── SChapter.kt │ │ │ ├── SChapterImpl.kt │ │ │ ├── SManga.kt │ │ │ ├── SMangaImpl.kt │ │ │ └── UpdateStrategy.kt │ │ └── online/ │ │ ├── HttpSource.kt │ │ ├── ParsedHttpSource.kt │ │ └── ResolvableSource.kt │ └── util/ │ ├── JsonExtensions.kt │ ├── JsoupExtensions.kt │ ├── RxExtension.kt │ └── VideoInfo.kt └── source-local/ ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src/ ├── androidMain/ │ ├── AndroidManifest.xml │ └── kotlin/ │ └── tachiyomi/ │ └── source/ │ └── local/ │ ├── entries/ │ │ ├── anime/ │ │ │ ├── LocalAnimeFetchTypeManager.kt │ │ │ └── LocalAnimeSource.kt │ │ └── manga/ │ │ └── LocalMangaSource.kt │ ├── filter/ │ │ ├── anime/ │ │ │ └── AnimeOrderBy.kt │ │ └── manga/ │ │ └── MangaOrderBy.kt │ ├── image/ │ │ ├── anime/ │ │ │ ├── LocalAnimeBackgroundManager.kt │ │ │ ├── LocalAnimeCoverManager.kt │ │ │ └── LocalEpisodeThumbnailManager.kt │ │ └── manga/ │ │ └── LocalMangaCoverManager.kt │ ├── io/ │ │ ├── anime/ │ │ │ └── LocalAnimeSourceFileSystem.kt │ │ └── manga/ │ │ └── LocalMangaSourceFileSystem.kt │ └── metadata/ │ └── EpubReaderExtensions.kt └── commonMain/ └── kotlin/ └── tachiyomi/ └── source/ └── local/ ├── entries/ │ ├── anime/ │ │ ├── LocalAnimeFetchTypeManager.kt │ │ └── LocalAnimeSource.kt │ └── manga/ │ └── LocalMangaSource.kt ├── image/ │ ├── anime/ │ │ ├── LocalAnimeBackgroundManager.kt │ │ ├── LocalAnimeCoverManager.kt │ │ └── LocalEpisodeThumbnailManager.kt │ └── manga/ │ └── LocalMangaCoverManager.kt └── io/ ├── Archive.kt ├── Format.kt ├── anime/ │ └── LocalAnimeSourceFileSystem.kt └── manga/ └── LocalMangaSourceFileSystem.kt ================================================ FILE CONTENTS ================================================ ================================================ FILE: .editorconfig ================================================ root = true [*] charset = utf-8 indent_size = 2 indent_style = space insert_final_newline = true trim_trailing_whitespace = true [*.xml] indent_size = 4 # noinspection EditorConfigKeyCorrectness [*.{kt,kts}] indent_size = 4 max_line_length = 120 ij_kotlin_allow_trailing_comma = true ij_kotlin_allow_trailing_comma_on_call_site = true ij_kotlin_name_count_to_use_star_import = 2147483647 ij_kotlin_name_count_to_use_star_import_for_members = 2147483647 ktlint_code_style = intellij_idea ktlint_function_naming_ignore_when_annotated_with = Composable ktlint_standard_class-signature = disabled ktlint_standard_discouraged-comment-location = disabled ktlint_standard_function-expression-body = disabled ktlint_standard_function-signature = disabled ================================================ FILE: .gitattributes ================================================ * text=auto * text eol=lf # Windows forced line-endings /.idea/* text eol=crlf # Gradle wrapper *.jar binary # Images *.webp binary *.png binary *.jpg binary *.jpeg binary *.gif binary *.ico binary *.gz binary *.zip binary *.7z binary *.ttf binary *.eot binary *.woff binary *.pyc binary *.swp binary ================================================ FILE: .github/FUNDING.yml ================================================ github: jmir1 ko_fi: jmir1 ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ blank_issues_enabled: false contact_links: - name: ❌ Help with Extensions url: https://aniyomi.org/docs/faq/browse/extensions about: For extension-related questions/issues - name: 🧑💻 Aniyomi help discord url: https://discord.gg/F32UjdJZrR about: Common questions are answered here - name: 🖥️ Aniyomi website url: https://aniyomi.org/ about: Guides, troubleshooting, and answers to common questions ================================================ FILE: .github/ISSUE_TEMPLATE/report_issue.yml ================================================ name: 🐞 Issue report description: Report an issue in Aniyomi labels: [Bug] body: - type: textarea id: reproduce-steps attributes: label: Steps to reproduce description: Provide an example of the issue. placeholder: | Example: 1. First step 2. Second step 3. Issue here validations: required: true - type: textarea id: expected-behavior attributes: label: Expected behavior description: Explain what you should expect to happen. placeholder: | Example: "This should happen..." validations: required: true - type: textarea id: actual-behavior attributes: label: Actual behavior description: Explain what actually happens. placeholder: | Example: "This happened instead..." validations: required: true - type: textarea id: crash-logs attributes: label: Crash logs description: | If you're experiencing crashes, if possible, go to the app's **More → Settings → Advanced** page, press **Dump crash logs** and share the crash logs here. placeholder: | You can upload the crash log file as an attachment, or paste the crash logs in plain text if needed. - type: input id: aniyomi-version attributes: label: Aniyomi version description: You can find your Aniyomi version in **More → About**. placeholder: | Example: "0.18.1.2" validations: required: true - type: input id: android-version attributes: label: Android version description: You can find this somewhere in your Android settings. placeholder: | Example: "Android 11" validations: required: true - type: input id: device attributes: label: Device description: List your device and model. placeholder: | Example: "Google Pixel 5" validations: required: true - type: textarea id: other-details attributes: label: Other details placeholder: | Additional details and attachments. - type: checkboxes id: acknowledgements attributes: label: Acknowledgements description: Read this carefully, we will close and ignore your issue if you skimmed through this. options: - label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open or closed issue. required: true - label: I have written a short but informative title. required: true - label: If this is an issue with an extension, I should be opening an issue in the extension's repository. required: true - label: I have gone through the [FAQ](https://aniyomi.org/docs/faq/general) and [troubleshooting guide](https://aniyomi.org/docs/guides/troubleshooting/). required: true - label: I have updated the app to version **[0.18.1.2](https://github.com/aniyomiorg/aniyomi/releases/latest)**. required: true - label: I have filled out all of the requested information in this form, including specific version numbers. required: true - label: I understand that **Aniyomi does not have or fix any extensions**, and I **will not receive help** for any issues related to sources or extensions. required: true ================================================ FILE: .github/ISSUE_TEMPLATE/request_feature.yml ================================================ name: ⭐ Feature request description: Suggest a feature to improve Aniyomi labels: [Feature request] body: - type: textarea id: feature-description attributes: label: Describe your suggested feature description: How can Aniyomi be improved? placeholder: | Example: "It should work like this..." validations: required: true - type: textarea id: other-details attributes: label: Other details placeholder: | Additional details and attachments. - type: checkboxes id: acknowledgements attributes: label: Acknowledgements description: Read this carefully, we will close and ignore your issue if you skimmed through this. options: - label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open or closed issue. required: true - label: I have written a short but informative title. required: true - label: If this is a request regarding an extension, I should be opening an issue in the extension's repository. required: true - label: I have updated the app to version **[0.18.1.2](https://github.com/aniyomiorg/aniyomi/releases/latest)**. required: true - label: I will fill out all of the requested information in this form. required: true ================================================ FILE: .github/pull_request_template.md ================================================ ================================================ FILE: .github/renovate.json5 ================================================ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:recommended"], "labels": ["Dependencies"], "includePaths": ["gradle/aniyomi.versions.toml"], "semanticCommits": "disabled", } ================================================ FILE: .github/workflows/build_pull_request.yml ================================================ name: PR build check on: pull_request: paths: - '**' - '!**.md' - '!i18n/src/commonMain/moko-resources/**/strings-aniyomi.xml' - '!i18n/src/commonMain/moko-resources/**/strings.xml' - '!i18n/src/commonMain/moko-resources/**/plurals-aniyomi.xml' - '!i18n/src/commonMain/moko-resources/**/plurals.xml' - 'i18n/src/commonMain/moko-resources/base/strings-aniyomi.xml' - 'i18n/src/commonMain/moko-resources/base/strings.xml' - 'i18n/src/commonMain/moko-resources/base/plurals-aniyomi.xml' - 'i18n/src/commonMain/moko-resources/base/plurals.xml' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number }} cancel-in-progress: true permissions: contents: read jobs: build: name: Build app runs-on: 'ubuntu-24.04' steps: - name: Clone repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Dependency Review uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0 - name: Set up JDK uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 with: java-version: 17 distribution: temurin - name: Set up gradle uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4.3.0 - name: Check code format run: ./gradlew spotlessCheck - name: Build app run: ./gradlew assembleRelease - name: Run unit tests run: ./gradlew testReleaseUnitTest - name: Upload APK uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: arm64-v8a-${{ github.sha }} path: app/build/outputs/apk/release/app-arm64-v8a-release-unsigned.apk - name: Upload mapping uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: mapping-${{ github.sha }} path: app/build/outputs/mapping/release ================================================ FILE: .github/workflows/build_push.yml ================================================ name: CI permissions: contents: write on: push: branches: - '*' tags: - v* concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: build: name: Build app runs-on: ubuntu-latest steps: - name: Clone repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Set up JDK uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 with: java-version: 17 distribution: temurin - name: Set up gradle uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # v4.3.0 - name: Check code format run: ./gradlew spotlessCheck - name: Build app run: ./gradlew assembleRelease -Penable-updater - name: Run unit tests run: ./gradlew testReleaseUnitTest - name: Upload APK uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: arm64-v8a-${{ github.sha }} path: app/build/outputs/apk/release/app-arm64-v8a-release-unsigned.apk - name: Upload mapping uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: mapping-${{ github.sha }} path: app/build/outputs/mapping/release # Sign APK and create release for tags - name: Get tag name if: startsWith(github.ref, 'refs/tags/') && github.repository == 'aniyomiorg/aniyomi' run: | set -x echo "VERSION_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV - name: Sign APK if: startsWith(github.ref, 'refs/tags/') && github.repository == 'aniyomiorg/aniyomi' uses: r0adkll/sign-android-release@f30bdd30588842ac76044ecdbd4b6d0e3e813478 with: releaseDirectory: app/build/outputs/apk/release signingKeyBase64: ${{ secrets.SIGNING_KEY }} alias: ${{ secrets.ALIAS }} keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} keyPassword: ${{ secrets.KEY_PASSWORD }} env: BUILD_TOOLS_VERSION: '35.0.1' - name: Clean up build artifacts if: startsWith(github.ref, 'refs/tags/') && github.repository == 'aniyomiorg/aniyomi' run: | set -e mv app/build/outputs/apk/release/app-universal-release-unsigned-signed.apk aniyomi-${{ env.VERSION_TAG }}.apk sha=`sha256sum aniyomi-${{ env.VERSION_TAG }}.apk | awk '{ print $1 }'` echo "APK_UNIVERSAL_SHA=$sha" >> $GITHUB_ENV mv app/build/outputs/apk/release/app-arm64-v8a-release-unsigned-signed.apk aniyomi-arm64-v8a-${{ env.VERSION_TAG }}.apk sha=`sha256sum aniyomi-arm64-v8a-${{ env.VERSION_TAG }}.apk | awk '{ print $1 }'` echo "APK_ARM64_V8A_SHA=$sha" >> $GITHUB_ENV mv app/build/outputs/apk/release/app-armeabi-v7a-release-unsigned-signed.apk aniyomi-armeabi-v7a-${{ env.VERSION_TAG }}.apk sha=`sha256sum aniyomi-armeabi-v7a-${{ env.VERSION_TAG }}.apk | awk '{ print $1 }'` echo "APK_ARMEABI_V7A_SHA=$sha" >> $GITHUB_ENV mv app/build/outputs/apk/release/app-x86-release-unsigned-signed.apk aniyomi-x86-${{ env.VERSION_TAG }}.apk sha=`sha256sum aniyomi-x86-${{ env.VERSION_TAG }}.apk | awk '{ print $1 }'` echo "APK_X86_SHA=$sha" >> $GITHUB_ENV mv app/build/outputs/apk/release/app-x86_64-release-unsigned-signed.apk aniyomi-x86_64-${{ env.VERSION_TAG }}.apk sha=`sha256sum aniyomi-x86_64-${{ env.VERSION_TAG }}.apk | awk '{ print $1 }'` echo "APK_X86_64_SHA=$sha" >> $GITHUB_ENV - name: Create Release if: startsWith(github.ref, 'refs/tags/') && github.repository == 'aniyomiorg/aniyomi' uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1 with: tag_name: ${{ env.VERSION_TAG }} name: Aniyomi ${{ env.VERSION_TAG }} body: | --- ### Checksums | Variant | SHA-256 | | ------- | ------- | | Universal | ${{ env.APK_UNIVERSAL_SHA }} | arm64-v8a | ${{ env.APK_ARM64_V8A_SHA }} | armeabi-v7a | ${{ env.APK_ARMEABI_V7A_SHA }} | x86 | ${{ env.APK_X86_SHA }} | x86_64 | ${{ env.APK_X86_64_SHA }} | files: | aniyomi-${{ env.VERSION_TAG }}.apk aniyomi-arm64-v8a-${{ env.VERSION_TAG }}.apk aniyomi-armeabi-v7a-${{ env.VERSION_TAG }}.apk aniyomi-x86-${{ env.VERSION_TAG }}.apk aniyomi-x86_64-${{ env.VERSION_TAG }}.apk draft: true prerelease: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ================================================ FILE: .gitignore ================================================ # Build files .gradle .kotlin build # IDE files *.iml .idea/* !.idea/icon.png /captures # Configuration files local.properties # macOS specific files .DS_Store ================================================ FILE: CHANGELOG.md ================================================ # Changelog All notable changes to this project will be documented in this file. The format is a modified version of [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - `Added` - for new features. - `Changed ` - for changes in existing functionality. - `Improved` - for enhancement or optimization in existing functionality. - `Removed` - for now removed features. - `Fixed` - for any bug fixes. - `Other` - for technical stuff. ## Unreleased ### Added - Added a description for the horizontal seek gesture setting ([@kenkoro](https://github.com/kenkoro)) ([#2224](https://github.com/aniyomiorg/aniyomi/pull/2224)) ### Fixed - Swapped keyEvent listeners for left and right keyboard arrow keys as they were swapped in the code causing the opposite of the desired behavior([@alphastark](https://github.com/alphastark)) ([#2219](https://github.com/aniyomiorg/aniyomi/pull/2219)) - Fix some malformed translated strings that made the player quit when Aniskip was enabled ([@686udjie](https://github.com/686udjie)) ([#2217](https://github.com/aniyomiorg/aniyomi/pull/2217)) ## [v0.18.1.2] - 2025-10-28 ### Fixed - Fix Hosters feature detection (again) ([@hollowshiroyuki](https://github.com/hollowshiroyuki)) ([#2216](https://github.com/aniyomiorg/aniyomi/pull/2216)) ## [v0.18.1.1] - 2025-10-26 ### Fixed - Fix source Seasons/Hosters feature detection ([@hollowshiroyuki](https://github.com/hollowshiroyuki)) ([#2195](https://github.com/aniyomiorg/aniyomi/pull/2195)) - Fix shared download cache messing up downloaded episodes detection ([@choppeh](https://github.com/choppeh)) ([#2184](https://github.com/aniyomiorg/aniyomi/pull/2184)) - Fix Shikimori anime tracking ([@danya140](https://github.com/danya140)) ([#2205](https://github.com/aniyomiorg/aniyomi/pull/2205)) ### Improved - Make volume gesture the same sensitivity as brightness ([@jmir1](https://github.com/jmir1)) ## [v0.18.1.0] - 2025-10-02 ### Fixed - Fix list view resetting scroll upon exiting child ([@quickdesh](https://github.com/quickdesh)) ([#1982](https://github.com/aniyomiorg/aniyomi/pull/1982)) - Fix episode number parsing ([@Secozzi](https://github.com/Secozzi)) ([#2096](https://github.com/aniyomiorg/aniyomi/pull/2096)) - Fix tracking menu not opening on add to library ([@Secozzi](https://github.com/Secozzi)) ([#2098](https://github.com/aniyomiorg/aniyomi/pull/2098)) - Fix stop/continue anime download button ([@Secozzi](https://github.com/Secozzi)) ([#2099](https://github.com/aniyomiorg/aniyomi/pull/2099)) - Fix creating/restoring backups between mihon and aniyomi ([@Secozzi](https://github.com/Secozzi)) ([#2117](https://github.com/aniyomiorg/aniyomi/pull/2117)) ### Added - Add support for new parameters from ext lib 16 ([@quickdesh](https://github.com/quickdesh)) ([#1982](https://github.com/aniyomiorg/aniyomi/pull/1982)) - Add player settings to the main settings screen ([@jmir1](https://github.com/jmir1)) ([#2081](https://github.com/aniyomiorg/aniyomi/pull/2081)) - Add seasons support ([@Secozzi](https://github.com/Secozzi)) ([#2095](https://github.com/aniyomiorg/aniyomi/pull/2095)) ## [v0.18.0.1] - 2025-07-06 ### Fixed - Fix crash on migration ([@Secozzi](https://github.com/Secozzi)) ([#2079](https://github.com/aniyomiorg/aniyomi/pull/2079)) ## [v0.18.0.0] - 2025-07-05 ### Added - Set mpv's media-title property ([@Secozzi](https://github.com/Secozzi)) ([#1672](https://github.com/aniyomiorg/aniyomi/pull/1672)) - Add mpvKt to external players ([@Secozzi](https://github.com/Secozzi)) ([#1674](https://github.com/aniyomiorg/aniyomi/pull/1674)) - Add video filters ([@abdallahmehiz](https://github.com/abdallahmehiz)) ([#1698](https://github.com/aniyomiorg/aniyomi/pull/1698)) - Show hours and minutes in relative time strings ([@jmir1](https://github.com/jmir1)) ([`1f3be7b`](https://github.com/aniyomiorg/aniyomi/commit/1f3be7b523136039b3b60213f2cee7959a9367d7)) - Fix some issues with relative date calculations ([@jmir1](https://github.com/jmir1)) ([`03e1ecd`](https://github.com/aniyomiorg/aniyomi/commit/03e1ecd75edd2ea15dc8732ffeab32c6af26b202)) - Add better auto sub select ([@Secozzi](https://github.com/Secozzi)) ([#1706](https://github.com/aniyomiorg/aniyomi/pull/1706)) - Copy the file location when using ext downloader ([@quickdesh](https://github.com/quickdesh)) ([#1758](https://github.com/aniyomiorg/aniyomi/pull/1758)) - Replace player with mpvKt ([@Secozzi](https://github.com/Secozzi)) ([#1834](https://github.com/aniyomiorg/aniyomi/pull/1834), [#1855](https://github.com/aniyomiorg/aniyomi/pull/1855), [#1859](https://github.com/aniyomiorg/aniyomi/pull/1859), [#1860](https://github.com/aniyomiorg/aniyomi/pull/1860)) - Move player preferences to separate section ([@Secozzi](https://github.com/Secozzi)) ([#1819](https://github.com/aniyomiorg/aniyomi/pull/1819)) - Implement video hosters ([@Secozzi](https://github.com/Secozzi)) ([#1892](https://github.com/aniyomiorg/aniyomi/pull/1892)) - Add size slider for the "List Display" Mode ([@MavikBow](https://github.com/MavikBow)) ([#1906](https://github.com/aniyomiorg/aniyomi/pull/1906)) - Make the default list a set size and make browse list scale ([@MavikBow](https://github.com/MavikBow)) ([#1914](https://github.com/aniyomiorg/aniyomi/pull/1914)) - Allow negative brightness values (dimming) ([@jmir1](https://github.com/jmir1)) ([#1915](https://github.com/aniyomiorg/aniyomi/pull/1915)) - Add new lua functions for custom buttons ([@Secozzi](https://github.com/Secozzi)) ([#1980](https://github.com/aniyomiorg/aniyomi/pull/1980)) - Use timestamps provided by extensions ([@Secozzi](https://github.com/Secozzi)) ([#1983](https://github.com/aniyomiorg/aniyomi/pull/1983)) - Add titles to player sheets + consistency with More sheet ([@quickdesh](https://github.com/quickdesh)) ([#2015](https://github.com/aniyomiorg/aniyomi/pull/2015)) - Add script & script-opts editor to player settings ([@Secozzi](https://github.com/Secozzi)) ([#2019](https://github.com/aniyomiorg/aniyomi/pull/2019)) ### Improved - Show "Now" instead of "0 minutes ago" ([@Secozzi](https://github.com/Secozzi)) ([#1715](https://github.com/aniyomiorg/aniyomi/pull/1715)) - Add headers when using 1dm as external player ([@Secozzi](https://github.com/Secozzi)) ([#2032](https://github.com/aniyomiorg/aniyomi/pull/2032)) ### Fixed - Fix enhanced tracking for jellyfin ([@Secozzi](https://github.com/Secozzi)) ([#1656](https://github.com/aniyomiorg/aniyomi/pull/1656), [#1658](https://github.com/aniyomiorg/aniyomi/pull/1658)) - Use different status strings for anime trackers ([@jmir1](https://github.com/jmir1)) ([`74b32a3`](https://github.com/aniyomiorg/aniyomi/commit/74b32a3a0b323ed2f6f7929e131dcb4901e7bf9b)) - Fix Shikimori tracking for anime ([@jmir1](https://github.com/jmir1)) ([`58817c7`](https://github.com/aniyomiorg/aniyomi/commit/58817c724e2808072ff273329cee261d12084927)) - Group updates by date and not time ([@jmir1](https://github.com/jmir1)) ([`c83ebf3`](https://github.com/aniyomiorg/aniyomi/commit/c83ebf322f48d41ca1ad0105262160ecb7cde991)) - Fix airing time not showing ([@Secozzi](https://github.com/Secozzi)) ([#1720](https://github.com/aniyomiorg/aniyomi/pull/1720)) - Don't invalidate anime downloads on startup ([@Secozzi](https://github.com/Secozzi)) ([#1753](https://github.com/aniyomiorg/aniyomi/pull/1753)) - Fix hidden categories getting reset after delete/reorder ([@cuong-tran](https://github.com/cuong-tran)) ([#1780](https://github.com/aniyomiorg/aniyomi/pull/1780)) - Fix episode progress not being saved and duplicate tracks ([@perokhe](https://github.com/perokhe)) ([#1784](https://github.com/aniyomiorg/aniyomi/pull/1784), [#1785](https://github.com/aniyomiorg/aniyomi/pull/1785)) - Fix subtitle select not matching two letter language codes ([@Secozzi](https://github.com/Secozzi)) ([#1805](https://github.com/aniyomiorg/aniyomi/pull/1805)) - Fix potential intent extra npe ([@quickdesh](https://github.com/quickdesh)) ([#1816](https://github.com/aniyomiorg/aniyomi/pull/1816)) - Fix history date header duplication ([@quickdesh](https://github.com/quickdesh)) ([#1817](https://github.com/aniyomiorg/aniyomi/pull/1817)) - Fix migrations not getting context correctly ([@Secozzi](https://github.com/Secozzi)) ([#1820](https://github.com/aniyomiorg/aniyomi/pull/1820)) - Fix various issues due to replacing the player with mpvKt - Fix gesture seeking not seeking to start and end ([@perokhe](https://github.com/perokhe)) ([#1865](https://github.com/aniyomiorg/aniyomi/pull/1865)) - Fix crash when opening player settings in tablet ui ([@Secozzi](https://github.com/Secozzi)) ([#1868](https://github.com/aniyomiorg/aniyomi/pull/1868)) - Fix episode list in player not respecting filters & crash when exiting while stuff is loading ([@Secozzi](https://github.com/Secozzi)) ([#1869](https://github.com/aniyomiorg/aniyomi/pull/1869)) - Fix episode being marked as seen at start ([@perokhe](https://github.com/perokhe)) ([#1871](https://github.com/aniyomiorg/aniyomi/pull/1871)) - Fix player not being paused when loading tracks after changing quality ([@Secozzi](https://github.com/Secozzi)) ([#1878](https://github.com/aniyomiorg/aniyomi/pull/1878)) - Fix lag when toggling player ui ([@Secozzi](https://github.com/Secozzi)) ([#1887](https://github.com/aniyomiorg/aniyomi/pull/1887)) - Fix audio selection not working on external audio tracks ([@Secozzi](https://github.com/Secozzi)) ([#1901](https://github.com/aniyomiorg/aniyomi/pull/1901)) - Reset "hide player controls time" when pressing custom button ([@Secozzi](https://github.com/Secozzi)) ([#1902](https://github.com/aniyomiorg/aniyomi/pull/1902)) - Don't unpause on share and save ([@Secozzi](https://github.com/Secozzi)) ([#1905](https://github.com/aniyomiorg/aniyomi/pull/1905)) - Fix player pausing with gesture seek ([@perokhe](https://github.com/perokhe)) ([#1916](https://github.com/aniyomiorg/aniyomi/pull/1916)) - Fix potential npe issues with mpv-lib ([@Secozzi](https://github.com/Secozzi)) ([#1921](https://github.com/aniyomiorg/aniyomi/pull/1921)) - Dismiss chapter sheet on chapter select ([@Secozzi](https://github.com/Secozzi)) ([#1976](https://github.com/aniyomiorg/aniyomi/pull/1976)) - Fix some issues caused by [`10e28cc`](https://github.com/aniyomiorg/aniyomi/commit/10e28cc4092758cf38d27cc14aadf539698738f2) ([@Secozzi](https://github.com/Secozzi)) ([#1981](https://github.com/aniyomiorg/aniyomi/pull/1981)) - Fix npe issue caused in player controls ([@Secozzi](https://github.com/Secozzi)) ([#1986](https://github.com/aniyomiorg/aniyomi/pull/1986)) - Replace some manga strings with respective anime strings ([@perokhe](https://github.com/perokhe)) ([#1864](https://github.com/aniyomiorg/aniyomi/pull/1864)) - Open correct tab from extension update notifications ([@jmir1](https://github.com/jmir1)) ([`161471d`](https://github.com/aniyomiorg/aniyomi/commit/161471d94a2350c0c983eeeccd3b7ac0dc66d429)) - Fix sub-auto not loading all external subtitle files ([@perokhe](https://github.com/perokhe)) ([#1866](https://github.com/aniyomiorg/aniyomi/pull/1866)) - Fix `ALSearchItem.format` nullability ([@Secozzi](https://github.com/Secozzi)) ([#1910](https://github.com/aniyomiorg/aniyomi/pull/1910)) - Don't format mpv preferences ([@Secozzi](https://github.com/Secozzi)) ([#1939](https://github.com/aniyomiorg/aniyomi/pull/1939)) - Prevent crash on app death when watching in external player ([@Secozzi](https://github.com/Secozzi)) ([#1945](https://github.com/aniyomiorg/aniyomi/pull/1945)) - Don't run unnecessary stuff when exiting the player ([@Secozzi](https://github.com/Secozzi)) ([#1961](https://github.com/aniyomiorg/aniyomi/pull/1961)) - Fix some downloader issues ([@Secozzi](https://github.com/Secozzi)) ([#1964](https://github.com/aniyomiorg/aniyomi/pull/1964)) - Fix downloader not working for certain types of tracks & duration sometimes not being logged ([@Secozzi](https://github.com/Secozzi)) ([#2001](https://github.com/aniyomiorg/aniyomi/pull/2001)) - Fix some issues with intro skip length ([@jmir1](https://github.com/jmir1)) ([`72cac57`](https://github.com/aniyomiorg/aniyomi/commit/72cac57d8e66366cbc0f3106eb351c82250c460b), [`25dd3ea`](https://github.com/aniyomiorg/aniyomi/commit/25dd3ea69fb217de7b0485c29e4a9b970737fd45)) - Force clipboard to use UI thread when copying path for external players ([@quickdesh](https://github.com/quickdesh)) ([#1994](https://github.com/aniyomiorg/aniyomi/pull/1994)) - Use application directory for storing files used by mpv ([@Secozzi](https://github.com/Secozzi)) ([#1995](https://github.com/aniyomiorg/aniyomi/pull/1995)) - Update backup warning string (follow Mihon) ([@cuong-tran](https://github.com/cuong-tran)) ([#2012](https://github.com/aniyomiorg/aniyomi/pull/2012)) - Fix issues with episode deletion & more ([@quickdesh](https://github.com/quickdesh)) ([#2017](https://github.com/aniyomiorg/aniyomi/pull/2017)) - Fix vertical slider width issues and shift boost volume value to slider ([@quickdesh](https://github.com/quickdesh)) ([#2018](https://github.com/aniyomiorg/aniyomi/pull/2018)) - Fix MyAnimeList login ([@choppeh](https://github.com/choppeh)) ([#2035](https://github.com/aniyomiorg/aniyomi/pull/2035)) - Call sort methods for videos and hosters ([@cuong-tran](https://github.com/cuong-tran)) ([#2058](https://github.com/aniyomiorg/aniyomi/pull/2058)) - Invalidate preferred languages in settings ([@Secozzi](https://github.com/Secozzi)) ([#2075](https://github.com/aniyomiorg/aniyomi/pull/2075)) - Fix crash when using sort by airing time ([@quickdesh](https://github.com/quickdesh)) ([#2076](https://github.com/aniyomiorg/aniyomi/pull/2076)) ### Other - Merge from mihon until 0.16.5 ([@Secozzi](https://github.com/Secozzi)) ([#1663](https://github.com/aniyomiorg/aniyomi/pull/1663)) - Merge until latest mihon commits ([@Secozzi](https://github.com/Secozzi)) ([#1693](https://github.com/aniyomiorg/aniyomi/pull/1693)) - Merge until latest mihon commits (v0.17.0) ([@Secozzi](https://github.com/Secozzi)) ([#1804](https://github.com/aniyomiorg/aniyomi/pull/1804)) - Merge until latest mihon commits (v0.18.0) ([@Secozzi](https://github.com/Secozzi)) ([#1863](https://github.com/aniyomiorg/aniyomi/pull/1863)) - Remove ACRA crash report analytics ([@jmir1](https://github.com/jmir1)) ([`d3c6a15`](https://github.com/aniyomiorg/aniyomi/commit/d3c6a159d82ca239c10e8f5822c3b2046c5545f2), [`5ae35c8`](https://github.com/aniyomiorg/aniyomi/commit/5ae35c891b90ae927200185641240280effaf667)) ## [v0.16.4.3] - 2024-07-01 ### Fixed - Fix extensions disappearing due to errors with the ClassLoader ([@jmir1](https://github.com/jmir1)) ([`959f84a`](https://github.com/aniyomiorg/aniyomi/commit/959f84ab41859f90c458c076d83d363ae086e47f)) ## [v0.16.4.2] - 2024-07-01 ### Fixed - Hotfix to eliminate all proguard issues causing errors and crashes ([@jmir1](https://github.com/jmir1)) ([`a8cd723`](https://github.com/aniyomiorg/aniyomi/commit/a8cd7233dfdf26c98ff86b1871a7ac5774379b5e), [`a7644c2`](https://github.com/aniyomiorg/aniyomi/commit/a7644c268153fc0b9f10c27202591f960c6f6384), [`5045fa1`](https://github.com/aniyomiorg/aniyomi/commit/5045fa18ce5a1faa2130f1a33609e43d8453f078)) ## [v0.16.4.1] - 2024-07-01 ### Fixed - Hotfix release to address errors with extensions ([@jmir1](https://github.com/jmir1)) ([`98d2528`](https://github.com/aniyomiorg/aniyomi/commit/98d252866e17beba7d9a4d094797e23c05ead6c1)) ## [v0.16.4.0] - 2024-07-01 ### Fixed - Fix pip not broadcasting intent in A14+ ([@quickdesh](https://github.com/quickdesh)) ([#1603](https://github.com/aniyomiorg/aniyomi/pull/1603)) - Fix advanced player settings crash in android ≤ 10 ([@perokhe](https://github.com/perokhe)) ([#1627](https://github.com/aniyomiorg/aniyomi/pull/1627)) ### Improved - Hide the skip intro button if the skipped amount == 0 ([@abdallahmehiz](https://github.com/abdallahmehiz)) ([#1598](https://github.com/aniyomiorg/aniyomi/pull/1598)) ### Other - Merge from mihon until mihon 0.16.2 ([@Secozzi](https://github.com/Secozzi)) ([#1578](https://github.com/aniyomiorg/aniyomi/pull/1578)) - Merge from mihon until 0.16.4 ([@Secozzi](https://github.com/Secozzi)) ([#1601](https://github.com/aniyomiorg/aniyomi/pull/1601)) ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community moderators are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community moderators have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community moderators responsible for enforcement at the [Tachiyomi Discord server](https://discord.gg/tachiyomi). All complaints will be reviewed and investigated promptly and fairly. All community moderators are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community moderators will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community moderators, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/), version 2.1, available at [v2.1](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html). Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). For answers to common questions about this code of conduct, see the FAQ at [FAQ](https://www.contributor-covenant.org/faq). Translations are available at [translations](https://www.contributor-covenant.org/translations). ================================================ FILE: CONTRIBUTING.md ================================================ Looking to report an issue/bug or make a feature request? Please refer to the [README file](https://github.com/aniyomiorg/aniyomi#issues-feature-requests-and-contributing). --- Thanks for your interest in contributing to Aniyomi! # Code contributions Pull requests are welcome! If you're interested in taking on [an open issue](https://github.com/aniyomiorg/aniyomi/issues), please comment on it so others are aware. You do not need to ask for permission nor an assignment. ## Prerequisites Before you start, please note that the ability to use following technologies is **required** and that existing contributors will not actively teach them to you. - Basic [Android development](https://developer.android.com/) - [Kotlin](https://kotlinlang.org/) ### Tools - [Android Studio](https://developer.android.com/studio) - Emulator or phone with developer options enabled to test changes. ## Getting help - Join [the Discord server](https://discord.gg/F32UjdJZrR) for online help and to ask questions while developing. # Translations Translations are done externally via Weblate. See [our website](https://aniyomi.org/docs/contribute#translation) for more details. # Forks Forks are allowed so long as they abide by [the project's LICENSE](https://github.com/aniyomiorg/aniyomi/blob/main/LICENSE). When creating a fork, remember to: - To avoid confusion with the main app: - Change the app name - Change the app icon - Change or disable the [app update checker](https://github.com/aniyomiorg/aniyomi/blob/main/app/src/main/java/eu/kanade/tachiyomi/data/updater/AppUpdateChecker.kt) - To avoid installation conflicts: - Change the `applicationId` in [`build.gradle.kts`](https://github.com/aniyomiorg/aniyomi/blob/main/app/build.gradle.kts) - To avoid having your data polluting the main app's analytics and crash report services: - If you want to use Firebase analytics, replace [`google-services.json`](https://github.com/aniyomiorg/aniyomi/blob/main/app/src/standard/google-services.json) with your own - If you want to use ACRA crash reporting, replace the `ACRA_URI` endpoint in [`build.gradle.kts`](https://github.com/aniyomiorg/aniyomi/blob/main/app/build.gradle.kts) with your own ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS ================================================ FILE: README.md ================================================
# Aniyomi [App](#)
### Full-featured player and reader, based on ~~Tachiyomi~~ Mihon.
Discover and watch anime, cartoons, series, and more – easier than ever on your Android device.
[](https://discord.gg/F32UjdJZrR)
[](https://github.com/aniyomiorg/aniyomi/releases)
[](https://github.com/aniyomiorg/aniyomi/actions/workflows/build_push.yml)
[](/LICENSE)
[](https://hosted.weblate.org/engage/aniyomi/)
## Download
[](https://github.com/aniyomiorg/aniyomi/releases)
[](https://github.com/aniyomiorg/aniyomi-preview/releases)
*Requires Android 8.0 or higher.*
## Features
Copyright © 2015 Javier Tomás Copyright © 2024 Mihon Open Source Project Copyright © 2024 Aniyomi Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.