Copy disabled (too large)
Download .txt
Showing preview only (11,504K chars total). Download the full file to get everything.
Repository: mihonapp/mihon
Branch: main
Commit: b58d2a5d4bbb
Files: 1232
Total size: 10.7 MB
Directory structure:
gitextract_77iowqz2/
├── .editorconfig
├── .gitattributes
├── .github/
│ ├── .java-version
│ ├── FUNDING.yml
│ ├── ISSUE_TEMPLATE/
│ │ ├── 1_request_feature.yml
│ │ ├── 2_report_issue.yml
│ │ └── config.yml
│ ├── pull_request_template.md
│ ├── renovate.json5
│ └── workflows/
│ ├── build.yml
│ ├── release.yml
│ └── update_website.yml
├── .gitignore
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── app/
│ ├── build.gradle.kts
│ ├── google-services.json
│ ├── proguard-android-optimize.txt
│ ├── proguard-rules.pro
│ ├── shortcuts.xml
│ └── src/
│ ├── debug/
│ │ └── res/
│ │ └── drawable/
│ │ ├── ic_launcher_background.xml
│ │ └── ic_launcher_foreground.xml
│ ├── main/
│ │ ├── AndroidManifest.xml
│ │ ├── aidl/
│ │ │ └── mihon/
│ │ │ └── app/
│ │ │ └── shizuku/
│ │ │ └── IShellInterface.aidl
│ │ ├── baseline-prof.txt
│ │ ├── java/
│ │ │ ├── eu/
│ │ │ │ └── kanade/
│ │ │ │ ├── core/
│ │ │ │ │ ├── preference/
│ │ │ │ │ │ ├── CheckboxState.kt
│ │ │ │ │ │ └── PreferenceMutableState.kt
│ │ │ │ │ └── util/
│ │ │ │ │ ├── CollectionUtils.kt
│ │ │ │ │ └── SourceUtil.kt
│ │ │ │ ├── domain/
│ │ │ │ │ ├── DomainModule.kt
│ │ │ │ │ ├── base/
│ │ │ │ │ │ ├── BasePreferences.kt
│ │ │ │ │ │ └── ExtensionInstallerPreference.kt
│ │ │ │ │ ├── chapter/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── GetAvailableScanlators.kt
│ │ │ │ │ │ │ ├── SetReadStatus.kt
│ │ │ │ │ │ │ └── SyncChaptersWithSource.kt
│ │ │ │ │ │ └── model/
│ │ │ │ │ │ ├── Chapter.kt
│ │ │ │ │ │ └── ChapterFilter.kt
│ │ │ │ │ ├── download/
│ │ │ │ │ │ └── interactor/
│ │ │ │ │ │ └── DeleteDownload.kt
│ │ │ │ │ ├── extension/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── GetExtensionLanguages.kt
│ │ │ │ │ │ │ ├── GetExtensionSources.kt
│ │ │ │ │ │ │ ├── GetExtensionsByType.kt
│ │ │ │ │ │ │ └── TrustExtension.kt
│ │ │ │ │ │ └── model/
│ │ │ │ │ │ └── Extensions.kt
│ │ │ │ │ ├── manga/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── GetExcludedScanlators.kt
│ │ │ │ │ │ │ ├── SetExcludedScanlators.kt
│ │ │ │ │ │ │ ├── SetMangaViewerFlags.kt
│ │ │ │ │ │ │ └── UpdateManga.kt
│ │ │ │ │ │ └── model/
│ │ │ │ │ │ └── Manga.kt
│ │ │ │ │ ├── source/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── GetEnabledSources.kt
│ │ │ │ │ │ │ ├── GetIncognitoState.kt
│ │ │ │ │ │ │ ├── GetLanguagesWithSources.kt
│ │ │ │ │ │ │ ├── GetSourcesWithFavoriteCount.kt
│ │ │ │ │ │ │ ├── SetMigrateSorting.kt
│ │ │ │ │ │ │ ├── ToggleIncognito.kt
│ │ │ │ │ │ │ ├── ToggleLanguage.kt
│ │ │ │ │ │ │ ├── ToggleSource.kt
│ │ │ │ │ │ │ └── ToggleSourcePin.kt
│ │ │ │ │ │ ├── model/
│ │ │ │ │ │ │ └── Source.kt
│ │ │ │ │ │ └── service/
│ │ │ │ │ │ └── SourcePreferences.kt
│ │ │ │ │ ├── track/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── AddTracks.kt
│ │ │ │ │ │ │ ├── RefreshTracks.kt
│ │ │ │ │ │ │ ├── SyncChapterProgressWithTrack.kt
│ │ │ │ │ │ │ └── TrackChapter.kt
│ │ │ │ │ │ ├── model/
│ │ │ │ │ │ │ ├── AutoTrackState.kt
│ │ │ │ │ │ │ └── Track.kt
│ │ │ │ │ │ ├── service/
│ │ │ │ │ │ │ ├── DelayedTrackingUpdateJob.kt
│ │ │ │ │ │ │ └── TrackPreferences.kt
│ │ │ │ │ │ └── store/
│ │ │ │ │ │ └── DelayedTrackingStore.kt
│ │ │ │ │ └── ui/
│ │ │ │ │ ├── UiPreferences.kt
│ │ │ │ │ └── model/
│ │ │ │ │ ├── AppTheme.kt
│ │ │ │ │ ├── TabletUiMode.kt
│ │ │ │ │ └── ThemeMode.kt
│ │ │ │ ├── presentation/
│ │ │ │ │ ├── browse/
│ │ │ │ │ │ ├── BrowseSourceScreen.kt
│ │ │ │ │ │ ├── ExtensionDetailsScreen.kt
│ │ │ │ │ │ ├── ExtensionFilterScreen.kt
│ │ │ │ │ │ ├── ExtensionsScreen.kt
│ │ │ │ │ │ ├── GlobalSearchScreen.kt
│ │ │ │ │ │ ├── MigrateSearchScreen.kt
│ │ │ │ │ │ ├── MigrateSourceScreen.kt
│ │ │ │ │ │ ├── SourcesFilterScreen.kt
│ │ │ │ │ │ ├── SourcesScreen.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── BaseBrowseItem.kt
│ │ │ │ │ │ ├── BaseSourceItem.kt
│ │ │ │ │ │ ├── BrowseBadges.kt
│ │ │ │ │ │ ├── BrowseIcons.kt
│ │ │ │ │ │ ├── BrowseSourceComfortableGrid.kt
│ │ │ │ │ │ ├── BrowseSourceCompactGrid.kt
│ │ │ │ │ │ ├── BrowseSourceDialogs.kt
│ │ │ │ │ │ ├── BrowseSourceList.kt
│ │ │ │ │ │ ├── BrowseSourceLoadingItem.kt
│ │ │ │ │ │ ├── BrowseSourceToolbar.kt
│ │ │ │ │ │ ├── GlobalSearchCardRow.kt
│ │ │ │ │ │ ├── GlobalSearchResultItems.kt
│ │ │ │ │ │ └── GlobalSearchToolbar.kt
│ │ │ │ │ ├── category/
│ │ │ │ │ │ ├── CategoryExtensions.kt
│ │ │ │ │ │ ├── CategoryScreen.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── CategoryDialogs.kt
│ │ │ │ │ │ ├── CategoryFloatingActionButton.kt
│ │ │ │ │ │ └── CategoryListItem.kt
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── AdaptiveSheet.kt
│ │ │ │ │ │ ├── AppBar.kt
│ │ │ │ │ │ ├── Banners.kt
│ │ │ │ │ │ ├── DateText.kt
│ │ │ │ │ │ ├── DownloadDropdownMenu.kt
│ │ │ │ │ │ ├── DropdownMenu.kt
│ │ │ │ │ │ ├── EmptyScreen.kt
│ │ │ │ │ │ ├── TabbedDialog.kt
│ │ │ │ │ │ └── TabbedScreen.kt
│ │ │ │ │ ├── crash/
│ │ │ │ │ │ └── CrashScreen.kt
│ │ │ │ │ ├── history/
│ │ │ │ │ │ ├── HistoryScreen.kt
│ │ │ │ │ │ ├── HistoryScreenModelStateProvider.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── HistoryDialogs.kt
│ │ │ │ │ │ ├── HistoryItem.kt
│ │ │ │ │ │ └── HistoryWithRelationsProvider.kt
│ │ │ │ │ ├── library/
│ │ │ │ │ │ ├── DeleteLibraryMangaDialog.kt
│ │ │ │ │ │ ├── LibrarySettingsDialog.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── CommonMangaItem.kt
│ │ │ │ │ │ ├── GlobalSearchItem.kt
│ │ │ │ │ │ ├── LazyLibraryGrid.kt
│ │ │ │ │ │ ├── LibraryBadges.kt
│ │ │ │ │ │ ├── LibraryComfortableGrid.kt
│ │ │ │ │ │ ├── LibraryCompactGrid.kt
│ │ │ │ │ │ ├── LibraryContent.kt
│ │ │ │ │ │ ├── LibraryList.kt
│ │ │ │ │ │ ├── LibraryPager.kt
│ │ │ │ │ │ ├── LibraryTabs.kt
│ │ │ │ │ │ └── LibraryToolbar.kt
│ │ │ │ │ ├── manga/
│ │ │ │ │ │ ├── ChapterSettingsDialog.kt
│ │ │ │ │ │ ├── DuplicateMangaDialog.kt
│ │ │ │ │ │ ├── MangaNotesScreen.kt
│ │ │ │ │ │ ├── MangaScreen.kt
│ │ │ │ │ │ ├── MangaScreenConstants.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── BaseMangaListItem.kt
│ │ │ │ │ │ ├── ChapterDownloadIndicator.kt
│ │ │ │ │ │ ├── ChapterHeader.kt
│ │ │ │ │ │ ├── DotSeparatorText.kt
│ │ │ │ │ │ ├── MangaBottomActionMenu.kt
│ │ │ │ │ │ ├── MangaChapterListItem.kt
│ │ │ │ │ │ ├── MangaCover.kt
│ │ │ │ │ │ ├── MangaCoverDialog.kt
│ │ │ │ │ │ ├── MangaDialogs.kt
│ │ │ │ │ │ ├── MangaInfoHeader.kt
│ │ │ │ │ │ ├── MangaNotesDisplay.kt
│ │ │ │ │ │ ├── MangaNotesSection.kt
│ │ │ │ │ │ ├── MangaNotesTextArea.kt
│ │ │ │ │ │ ├── MangaToolbar.kt
│ │ │ │ │ │ ├── MarkdownRender.kt
│ │ │ │ │ │ ├── MissingChapterCountListItem.kt
│ │ │ │ │ │ └── ScanlatorFilterDialog.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/
│ │ │ │ │ │ │ │ │ └── ClearDatabaseScreen.kt
│ │ │ │ │ │ │ │ ├── appearance/
│ │ │ │ │ │ │ │ │ └── AppLanguageScreen.kt
│ │ │ │ │ │ │ │ ├── browse/
│ │ │ │ │ │ │ │ │ ├── ExtensionReposScreen.kt
│ │ │ │ │ │ │ │ │ ├── ExtensionReposScreenModel.kt
│ │ │ │ │ │ │ │ │ └── components/
│ │ │ │ │ │ │ │ │ ├── ExtensionReposContent.kt
│ │ │ │ │ │ │ │ │ ├── ExtensionReposDialogs.kt
│ │ │ │ │ │ │ │ │ └── ExtensionReposScreen.kt
│ │ │ │ │ │ │ │ ├── data/
│ │ │ │ │ │ │ │ │ ├── CreateBackupScreen.kt
│ │ │ │ │ │ │ │ │ ├── RestoreBackupScreen.kt
│ │ │ │ │ │ │ │ │ └── StorageInfo.kt
│ │ │ │ │ │ │ │ └── debug/
│ │ │ │ │ │ │ │ ├── BackupSchemaScreen.kt
│ │ │ │ │ │ │ │ ├── DebugInfoScreen.kt
│ │ │ │ │ │ │ │ └── WorkerInfoScreen.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/
│ │ │ │ │ │ ├── StatsScreenContent.kt
│ │ │ │ │ │ ├── StatsScreenState.kt
│ │ │ │ │ │ ├── components/
│ │ │ │ │ │ │ └── StatsItem.kt
│ │ │ │ │ │ └── data/
│ │ │ │ │ │ └── StatsData.kt
│ │ │ │ │ ├── reader/
│ │ │ │ │ │ ├── ChapterTransition.kt
│ │ │ │ │ │ ├── DisplayRefreshHost.kt
│ │ │ │ │ │ ├── OrientationSelectDialog.kt
│ │ │ │ │ │ ├── ReaderContentOverlay.kt
│ │ │ │ │ │ ├── ReaderPageActionsDialog.kt
│ │ │ │ │ │ ├── ReaderPageIndicator.kt
│ │ │ │ │ │ ├── ReadingModeSelectDialog.kt
│ │ │ │ │ │ ├── appbars/
│ │ │ │ │ │ │ ├── ReaderAppBars.kt
│ │ │ │ │ │ │ ├── ReaderBottomBar.kt
│ │ │ │ │ │ │ └── ReaderTopBar.kt
│ │ │ │ │ │ ├── components/
│ │ │ │ │ │ │ ├── ChapterNavigator.kt
│ │ │ │ │ │ │ └── ModeSelectionDialog.kt
│ │ │ │ │ │ └── settings/
│ │ │ │ │ │ ├── ColorFilterPage.kt
│ │ │ │ │ │ ├── GeneralSettingsPage.kt
│ │ │ │ │ │ ├── ReaderSettingsDialog.kt
│ │ │ │ │ │ └── ReadingModePage.kt
│ │ │ │ │ ├── theme/
│ │ │ │ │ │ ├── TachiyomiTheme.kt
│ │ │ │ │ │ └── colorscheme/
│ │ │ │ │ │ ├── BaseColorScheme.kt
│ │ │ │ │ │ ├── CatppuccinColorScheme.kt
│ │ │ │ │ │ ├── GreenAppleColorScheme.kt
│ │ │ │ │ │ ├── LavenderColorScheme.kt
│ │ │ │ │ │ ├── MidnightDuskColorScheme.kt
│ │ │ │ │ │ ├── MonetColorScheme.kt
│ │ │ │ │ │ ├── MonochromeColorScheme.kt
│ │ │ │ │ │ ├── NordColorScheme.kt
│ │ │ │ │ │ ├── StrawberryColorScheme.kt
│ │ │ │ │ │ ├── TachiyomiColorScheme.kt
│ │ │ │ │ │ ├── TakoColorScheme.kt
│ │ │ │ │ │ ├── TealTurqoiseColorScheme.kt
│ │ │ │ │ │ ├── TidalWaveColorScheme.kt
│ │ │ │ │ │ ├── YinYangColorScheme.kt
│ │ │ │ │ │ └── YotsubaColorScheme.kt
│ │ │ │ │ ├── track/
│ │ │ │ │ │ ├── TrackInfoDialogHome.kt
│ │ │ │ │ │ ├── TrackInfoDialogHomePreviewProvider.kt
│ │ │ │ │ │ ├── TrackInfoDialogSelector.kt
│ │ │ │ │ │ ├── TrackerSearch.kt
│ │ │ │ │ │ ├── TrackerSearchPreviewProvider.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── TrackLogoIcon.kt
│ │ │ │ │ │ └── TrackLogoIconPreviewProvider.kt
│ │ │ │ │ ├── updates/
│ │ │ │ │ │ ├── UpdatesDeleteConfirmationDialog.kt
│ │ │ │ │ │ ├── UpdatesFilterDialog.kt
│ │ │ │ │ │ ├── UpdatesScreen.kt
│ │ │ │ │ │ └── UpdatesUiItem.kt
│ │ │ │ │ ├── util/
│ │ │ │ │ │ ├── ChapterNumberFormatter.kt
│ │ │ │ │ │ ├── ExceptionFormatter.kt
│ │ │ │ │ │ ├── FastScrollAnimateItem.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
│ │ │ │ │ │ │ ├── BackupFileValidator.kt
│ │ │ │ │ │ │ ├── BackupNotifier.kt
│ │ │ │ │ │ │ ├── create/
│ │ │ │ │ │ │ │ ├── BackupCreateJob.kt
│ │ │ │ │ │ │ │ ├── BackupCreator.kt
│ │ │ │ │ │ │ │ ├── BackupOptions.kt
│ │ │ │ │ │ │ │ └── creators/
│ │ │ │ │ │ │ │ ├── CategoriesBackupCreator.kt
│ │ │ │ │ │ │ │ ├── ExtensionRepoBackupCreator.kt
│ │ │ │ │ │ │ │ ├── MangaBackupCreator.kt
│ │ │ │ │ │ │ │ ├── PreferenceBackupCreator.kt
│ │ │ │ │ │ │ │ └── SourcesBackupCreator.kt
│ │ │ │ │ │ │ ├── models/
│ │ │ │ │ │ │ │ ├── Backup.kt
│ │ │ │ │ │ │ │ ├── BackupCategory.kt
│ │ │ │ │ │ │ │ ├── BackupChapter.kt
│ │ │ │ │ │ │ │ ├── BackupExtensionRepos.kt
│ │ │ │ │ │ │ │ ├── BackupHistory.kt
│ │ │ │ │ │ │ │ ├── BackupManga.kt
│ │ │ │ │ │ │ │ ├── BackupPreference.kt
│ │ │ │ │ │ │ │ ├── BackupSource.kt
│ │ │ │ │ │ │ │ └── BackupTracking.kt
│ │ │ │ │ │ │ └── restore/
│ │ │ │ │ │ │ ├── BackupRestoreJob.kt
│ │ │ │ │ │ │ ├── BackupRestorer.kt
│ │ │ │ │ │ │ ├── RestoreOptions.kt
│ │ │ │ │ │ │ └── restorers/
│ │ │ │ │ │ │ ├── CategoriesRestorer.kt
│ │ │ │ │ │ │ ├── ExtensionRepoRestorer.kt
│ │ │ │ │ │ │ ├── MangaRestorer.kt
│ │ │ │ │ │ │ └── PreferenceRestorer.kt
│ │ │ │ │ │ ├── cache/
│ │ │ │ │ │ │ ├── ChapterCache.kt
│ │ │ │ │ │ │ └── CoverCache.kt
│ │ │ │ │ │ ├── coil/
│ │ │ │ │ │ │ ├── BufferedSourceFetcher.kt
│ │ │ │ │ │ │ ├── MangaCoverFetcher.kt
│ │ │ │ │ │ │ ├── MangaCoverKeyer.kt
│ │ │ │ │ │ │ ├── TachiyomiImageDecoder.kt
│ │ │ │ │ │ │ └── Utils.kt
│ │ │ │ │ │ ├── database/
│ │ │ │ │ │ │ └── models/
│ │ │ │ │ │ │ ├── Chapter.kt
│ │ │ │ │ │ │ ├── ChapterImpl.kt
│ │ │ │ │ │ │ ├── Track.kt
│ │ │ │ │ │ │ └── TrackImpl.kt
│ │ │ │ │ │ ├── download/
│ │ │ │ │ │ │ ├── DownloadCache.kt
│ │ │ │ │ │ │ ├── DownloadJob.kt
│ │ │ │ │ │ │ ├── DownloadManager.kt
│ │ │ │ │ │ │ ├── DownloadNotifier.kt
│ │ │ │ │ │ │ ├── DownloadPendingDeleter.kt
│ │ │ │ │ │ │ ├── DownloadProvider.kt
│ │ │ │ │ │ │ ├── DownloadStore.kt
│ │ │ │ │ │ │ ├── Downloader.kt
│ │ │ │ │ │ │ └── model/
│ │ │ │ │ │ │ └── Download.kt
│ │ │ │ │ │ ├── export/
│ │ │ │ │ │ │ └── LibraryExporter.kt
│ │ │ │ │ │ ├── library/
│ │ │ │ │ │ │ ├── LibraryUpdateJob.kt
│ │ │ │ │ │ │ ├── LibraryUpdateNotifier.kt
│ │ │ │ │ │ │ └── MetadataUpdateJob.kt
│ │ │ │ │ │ ├── notification/
│ │ │ │ │ │ │ ├── NotificationHandler.kt
│ │ │ │ │ │ │ ├── NotificationReceiver.kt
│ │ │ │ │ │ │ └── Notifications.kt
│ │ │ │ │ │ ├── preference/
│ │ │ │ │ │ │ └── SharedPreferencesDataStore.kt
│ │ │ │ │ │ ├── saver/
│ │ │ │ │ │ │ └── ImageSaver.kt
│ │ │ │ │ │ ├── track/
│ │ │ │ │ │ │ ├── BaseTracker.kt
│ │ │ │ │ │ │ ├── DeletableTracker.kt
│ │ │ │ │ │ │ ├── EnhancedTracker.kt
│ │ │ │ │ │ │ ├── Tracker.kt
│ │ │ │ │ │ │ ├── TrackerManager.kt
│ │ │ │ │ │ │ ├── anilist/
│ │ │ │ │ │ │ │ ├── Anilist.kt
│ │ │ │ │ │ │ │ ├── AnilistApi.kt
│ │ │ │ │ │ │ │ ├── AnilistInterceptor.kt
│ │ │ │ │ │ │ │ ├── AnilistUtils.kt
│ │ │ │ │ │ │ │ └── dto/
│ │ │ │ │ │ │ │ ├── ALAddManga.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
│ │ │ │ │ │ │ ├── kavita/
│ │ │ │ │ │ │ │ ├── Kavita.kt
│ │ │ │ │ │ │ │ ├── KavitaApi.kt
│ │ │ │ │ │ │ │ ├── KavitaInterceptor.kt
│ │ │ │ │ │ │ │ └── KavitaModels.kt
│ │ │ │ │ │ │ ├── kitsu/
│ │ │ │ │ │ │ │ ├── Kitsu.kt
│ │ │ │ │ │ │ │ ├── KitsuApi.kt
│ │ │ │ │ │ │ │ ├── KitsuDateHelper.kt
│ │ │ │ │ │ │ │ ├── KitsuInterceptor.kt
│ │ │ │ │ │ │ │ ├── KitsuUtils.kt
│ │ │ │ │ │ │ │ └── dto/
│ │ │ │ │ │ │ │ ├── KitsuAddManga.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/
│ │ │ │ │ │ │ │ └── TrackSearch.kt
│ │ │ │ │ │ │ ├── myanimelist/
│ │ │ │ │ │ │ │ ├── MyAnimeList.kt
│ │ │ │ │ │ │ │ ├── MyAnimeListApi.kt
│ │ │ │ │ │ │ │ ├── MyAnimeListInterceptor.kt
│ │ │ │ │ │ │ │ ├── MyAnimeListUtils.kt
│ │ │ │ │ │ │ │ └── dto/
│ │ │ │ │ │ │ │ ├── MALList.kt
│ │ │ │ │ │ │ │ ├── MALManga.kt
│ │ │ │ │ │ │ │ ├── MALOAuth.kt
│ │ │ │ │ │ │ │ ├── MALSearch.kt
│ │ │ │ │ │ │ │ └── MALUser.kt
│ │ │ │ │ │ │ ├── shikimori/
│ │ │ │ │ │ │ │ ├── Shikimori.kt
│ │ │ │ │ │ │ │ ├── ShikimoriApi.kt
│ │ │ │ │ │ │ │ ├── ShikimoriInterceptor.kt
│ │ │ │ │ │ │ │ ├── ShikimoriUtils.kt
│ │ │ │ │ │ │ │ └── dto/
│ │ │ │ │ │ │ │ ├── SMAddMangaResponse.kt
│ │ │ │ │ │ │ │ ├── SMManga.kt
│ │ │ │ │ │ │ │ ├── SMOAuth.kt
│ │ │ │ │ │ │ │ ├── SMUser.kt
│ │ │ │ │ │ │ │ └── SMUserListEntry.kt
│ │ │ │ │ │ │ └── suwayomi/
│ │ │ │ │ │ │ ├── Suwayomi.kt
│ │ │ │ │ │ │ ├── SuwayomiApi.kt
│ │ │ │ │ │ │ └── SuwayomiModels.kt
│ │ │ │ │ │ └── updater/
│ │ │ │ │ │ ├── AppUpdateChecker.kt
│ │ │ │ │ │ ├── AppUpdateDownloadJob.kt
│ │ │ │ │ │ └── AppUpdateNotifier.kt
│ │ │ │ │ ├── di/
│ │ │ │ │ │ ├── AppModule.kt
│ │ │ │ │ │ └── PreferenceModule.kt
│ │ │ │ │ ├── extension/
│ │ │ │ │ │ ├── ExtensionManager.kt
│ │ │ │ │ │ ├── api/
│ │ │ │ │ │ │ ├── ExtensionApi.kt
│ │ │ │ │ │ │ └── ExtensionUpdateNotifier.kt
│ │ │ │ │ │ ├── installer/
│ │ │ │ │ │ │ ├── Installer.kt
│ │ │ │ │ │ │ ├── PackageInstallerInstaller.kt
│ │ │ │ │ │ │ └── ShizukuInstaller.kt
│ │ │ │ │ │ ├── model/
│ │ │ │ │ │ │ ├── Extension.kt
│ │ │ │ │ │ │ ├── InstallStep.kt
│ │ │ │ │ │ │ └── LoadResult.kt
│ │ │ │ │ │ └── util/
│ │ │ │ │ │ ├── ExtensionInstallActivity.kt
│ │ │ │ │ │ ├── ExtensionInstallReceiver.kt
│ │ │ │ │ │ ├── ExtensionInstallService.kt
│ │ │ │ │ │ ├── ExtensionInstaller.kt
│ │ │ │ │ │ └── ExtensionLoader.kt
│ │ │ │ │ ├── source/
│ │ │ │ │ │ ├── AndroidSourceManager.kt
│ │ │ │ │ │ └── SourceExtensions.kt
│ │ │ │ │ ├── ui/
│ │ │ │ │ │ ├── base/
│ │ │ │ │ │ │ ├── activity/
│ │ │ │ │ │ │ │ └── BaseActivity.kt
│ │ │ │ │ │ │ └── delegate/
│ │ │ │ │ │ │ ├── SecureActivityDelegate.kt
│ │ │ │ │ │ │ └── ThemingDelegate.kt
│ │ │ │ │ │ ├── browse/
│ │ │ │ │ │ │ ├── BrowseTab.kt
│ │ │ │ │ │ │ ├── extension/
│ │ │ │ │ │ │ │ ├── ExtensionFilterScreen.kt
│ │ │ │ │ │ │ │ ├── ExtensionFilterScreenModel.kt
│ │ │ │ │ │ │ │ ├── ExtensionsScreenModel.kt
│ │ │ │ │ │ │ │ ├── ExtensionsTab.kt
│ │ │ │ │ │ │ │ └── details/
│ │ │ │ │ │ │ │ ├── ExtensionDetailsScreen.kt
│ │ │ │ │ │ │ │ ├── ExtensionDetailsScreenModel.kt
│ │ │ │ │ │ │ │ └── SourcePreferencesScreen.kt
│ │ │ │ │ │ │ ├── migration/
│ │ │ │ │ │ │ │ ├── manga/
│ │ │ │ │ │ │ │ │ ├── MigrateMangaScreen.kt
│ │ │ │ │ │ │ │ │ └── MigrateMangaScreenModel.kt
│ │ │ │ │ │ │ │ ├── search/
│ │ │ │ │ │ │ │ │ ├── MigrateSearchScreen.kt
│ │ │ │ │ │ │ │ │ ├── MigrateSearchScreenModel.kt
│ │ │ │ │ │ │ │ │ └── MigrateSourceSearchScreen.kt
│ │ │ │ │ │ │ │ └── sources/
│ │ │ │ │ │ │ │ ├── MigrateSourceScreenModel.kt
│ │ │ │ │ │ │ │ └── MigrateSourceTab.kt
│ │ │ │ │ │ │ └── source/
│ │ │ │ │ │ │ ├── SourcesFilterScreen.kt
│ │ │ │ │ │ │ ├── SourcesFilterScreenModel.kt
│ │ │ │ │ │ │ ├── SourcesScreenModel.kt
│ │ │ │ │ │ │ ├── SourcesTab.kt
│ │ │ │ │ │ │ ├── browse/
│ │ │ │ │ │ │ │ ├── BrowseSourceScreen.kt
│ │ │ │ │ │ │ │ ├── BrowseSourceScreenModel.kt
│ │ │ │ │ │ │ │ └── SourceFilterDialog.kt
│ │ │ │ │ │ │ └── globalsearch/
│ │ │ │ │ │ │ ├── GlobalSearchScreen.kt
│ │ │ │ │ │ │ ├── GlobalSearchScreenModel.kt
│ │ │ │ │ │ │ └── SearchScreenModel.kt
│ │ │ │ │ │ ├── category/
│ │ │ │ │ │ │ ├── CategoryScreen.kt
│ │ │ │ │ │ │ └── CategoryScreenModel.kt
│ │ │ │ │ │ ├── deeplink/
│ │ │ │ │ │ │ ├── DeepLinkActivity.kt
│ │ │ │ │ │ │ ├── DeepLinkScreen.kt
│ │ │ │ │ │ │ └── DeepLinkScreenModel.kt
│ │ │ │ │ │ ├── download/
│ │ │ │ │ │ │ ├── DownloadAdapter.kt
│ │ │ │ │ │ │ ├── DownloadHeaderHolder.kt
│ │ │ │ │ │ │ ├── DownloadHeaderItem.kt
│ │ │ │ │ │ │ ├── DownloadHolder.kt
│ │ │ │ │ │ │ ├── DownloadItem.kt
│ │ │ │ │ │ │ ├── DownloadQueueScreen.kt
│ │ │ │ │ │ │ └── DownloadQueueScreenModel.kt
│ │ │ │ │ │ ├── history/
│ │ │ │ │ │ │ ├── HistoryScreenModel.kt
│ │ │ │ │ │ │ └── HistoryTab.kt
│ │ │ │ │ │ ├── home/
│ │ │ │ │ │ │ └── HomeScreen.kt
│ │ │ │ │ │ ├── library/
│ │ │ │ │ │ │ ├── LibraryItem.kt
│ │ │ │ │ │ │ ├── LibraryScreenModel.kt
│ │ │ │ │ │ │ ├── LibrarySettingsScreenModel.kt
│ │ │ │ │ │ │ └── LibraryTab.kt
│ │ │ │ │ │ ├── main/
│ │ │ │ │ │ │ └── MainActivity.kt
│ │ │ │ │ │ ├── manga/
│ │ │ │ │ │ │ ├── MangaCoverScreenModel.kt
│ │ │ │ │ │ │ ├── MangaScreen.kt
│ │ │ │ │ │ │ ├── MangaScreenModel.kt
│ │ │ │ │ │ │ ├── notes/
│ │ │ │ │ │ │ │ └── MangaNotesScreen.kt
│ │ │ │ │ │ │ └── track/
│ │ │ │ │ │ │ ├── TrackInfoDialog.kt
│ │ │ │ │ │ │ └── TrackItem.kt
│ │ │ │ │ │ ├── more/
│ │ │ │ │ │ │ ├── MoreTab.kt
│ │ │ │ │ │ │ ├── NewUpdateScreen.kt
│ │ │ │ │ │ │ └── OnboardingScreen.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/
│ │ │ │ │ │ │ ├── SettingsScreen.kt
│ │ │ │ │ │ │ └── track/
│ │ │ │ │ │ │ ├── BaseOAuthLoginActivity.kt
│ │ │ │ │ │ │ └── TrackLoginActivity.kt
│ │ │ │ │ │ ├── stats/
│ │ │ │ │ │ │ ├── StatsScreen.kt
│ │ │ │ │ │ │ └── StatsScreenModel.kt
│ │ │ │ │ │ ├── updates/
│ │ │ │ │ │ │ ├── UpdatesScreenModel.kt
│ │ │ │ │ │ │ ├── UpdatesSettingsScreenModel.kt
│ │ │ │ │ │ │ └── UpdatesTab.kt
│ │ │ │ │ │ └── webview/
│ │ │ │ │ │ ├── WebViewActivity.kt
│ │ │ │ │ │ ├── WebViewScreen.kt
│ │ │ │ │ │ └── WebViewScreenModel.kt
│ │ │ │ │ ├── util/
│ │ │ │ │ │ ├── CrashLogUtil.kt
│ │ │ │ │ │ ├── MangaExtensions.kt
│ │ │ │ │ │ ├── PkceUtil.kt
│ │ │ │ │ │ ├── chapter/
│ │ │ │ │ │ │ ├── ChapterFilterDownloaded.kt
│ │ │ │ │ │ │ ├── ChapterGetNextUnread.kt
│ │ │ │ │ │ │ └── ChapterRemoveDuplicates.kt
│ │ │ │ │ │ ├── lang/
│ │ │ │ │ │ │ ├── CloseableExtensions.kt
│ │ │ │ │ │ │ ├── DateExtensions.kt
│ │ │ │ │ │ │ └── RectFExtensions.kt
│ │ │ │ │ │ ├── storage/
│ │ │ │ │ │ │ ├── FileExtensions.kt
│ │ │ │ │ │ │ └── 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
│ │ │ │ │ │ │ └── WorkManagerExtensions.kt
│ │ │ │ │ │ └── view/
│ │ │ │ │ │ ├── EditTextPreferenceExtensions.kt
│ │ │ │ │ │ ├── ViewExtensions.kt
│ │ │ │ │ │ └── WindowExtensions.kt
│ │ │ │ │ └── widget/
│ │ │ │ │ ├── TachiyomiTextInputEditText.kt
│ │ │ │ │ └── ViewPagerAdapter.kt
│ │ │ │ └── test/
│ │ │ │ └── DummyTracker.kt
│ │ │ └── mihon/
│ │ │ ├── app/
│ │ │ │ └── shizuku/
│ │ │ │ └── ShellInterface.kt
│ │ │ ├── core/
│ │ │ │ ├── designsystem/
│ │ │ │ │ └── utils/
│ │ │ │ │ └── WindowSize.kt
│ │ │ │ └── migration/
│ │ │ │ ├── Migration.kt
│ │ │ │ ├── MigrationCompletedListener.kt
│ │ │ │ ├── MigrationContext.kt
│ │ │ │ ├── MigrationJobFactory.kt
│ │ │ │ ├── MigrationStrategy.kt
│ │ │ │ ├── MigrationStrategyFactory.kt
│ │ │ │ ├── Migrator.kt
│ │ │ │ └── migrations/
│ │ │ │ ├── CategoryPreferencesCleanupMigration.kt
│ │ │ │ ├── InstallationIdMigration.kt
│ │ │ │ ├── Migrations.kt
│ │ │ │ ├── SetupBackupCreateMigration.kt
│ │ │ │ ├── SetupLibraryUpdateMigration.kt
│ │ │ │ └── TrustExtensionRepositoryMigration.kt
│ │ │ ├── domain/
│ │ │ │ └── migration/
│ │ │ │ ├── models/
│ │ │ │ │ └── MigrationFlag.kt
│ │ │ │ └── usecases/
│ │ │ │ └── MigrateMangaUseCase.kt
│ │ │ └── feature/
│ │ │ ├── common/
│ │ │ │ └── utils/
│ │ │ │ └── MigrationFlag.kt
│ │ │ ├── migration/
│ │ │ │ ├── config/
│ │ │ │ │ ├── MigrationConfigScreen.kt
│ │ │ │ │ └── MigrationConfigScreenSheet.kt
│ │ │ │ ├── dialog/
│ │ │ │ │ └── MigrateMangaDialog.kt
│ │ │ │ └── list/
│ │ │ │ ├── MigrationListScreen.kt
│ │ │ │ ├── MigrationListScreenContent.kt
│ │ │ │ ├── MigrationListScreenModel.kt
│ │ │ │ ├── components/
│ │ │ │ │ ├── MigrationExitDialog.kt
│ │ │ │ │ ├── MigrationMangaDialog.kt
│ │ │ │ │ └── MigrationProgressDialog.kt
│ │ │ │ ├── models/
│ │ │ │ │ └── MigratingManga.kt
│ │ │ │ └── search/
│ │ │ │ ├── BaseSmartSearchEngine.kt
│ │ │ │ └── SmartSourceSearchEngine.kt
│ │ │ └── upcoming/
│ │ │ ├── UpcomingScreen.kt
│ │ │ ├── UpcomingScreenContent.kt
│ │ │ ├── UpcomingScreenModel.kt
│ │ │ ├── UpcomingUIModel.kt
│ │ │ └── components/
│ │ │ ├── UpcomingItem.kt
│ │ │ └── calendar/
│ │ │ ├── Calendar.kt
│ │ │ ├── CalendarDay.kt
│ │ │ ├── CalendarHeader.kt
│ │ │ └── CalendarIndicator.kt
│ │ └── res/
│ │ ├── anim/
│ │ │ ├── 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_browse_enter.xml
│ │ │ ├── anim_caret_down.xml
│ │ │ ├── anim_history_enter.xml
│ │ │ ├── anim_library_enter.xml
│ │ │ ├── anim_more_enter.xml
│ │ │ ├── anim_updates_enter.xml
│ │ │ ├── brand_anilist.xml
│ │ │ ├── brand_bangumi.xml
│ │ │ ├── brand_kavita.xml
│ │ │ ├── brand_kitsu.xml
│ │ │ ├── brand_komga.xml
│ │ │ ├── brand_mangaupdates.xml
│ │ │ ├── brand_myanimelist.xml
│ │ │ ├── brand_shikimori.xml
│ │ │ ├── brand_suwayomi.xml
│ │ │ ├── cover_error.xml
│ │ │ ├── ic_book_24dp.xml
│ │ │ ├── ic_close_24dp.xml
│ │ │ ├── ic_crop_24dp.xml
│ │ │ ├── ic_crop_off_24dp.xml
│ │ │ ├── ic_done_24dp.xml
│ │ │ ├── ic_done_prev_24dp.xml
│ │ │ ├── ic_download_chapter_24dp.xml
│ │ │ ├── ic_drag_handle_24dp.xml
│ │ │ ├── ic_extension_24dp.xml
│ │ │ ├── ic_folder_24dp.xml
│ │ │ ├── ic_glasses_24dp.xml
│ │ │ ├── ic_info_24dp.xml
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ ├── ic_launcher_monochrome.xml
│ │ │ ├── ic_mihon.xml
│ │ │ ├── ic_mihon_splash.xml
│ │ │ ├── ic_overflow_24dp.xml
│ │ │ ├── ic_pause_24dp.xml
│ │ │ ├── ic_photo_24dp.xml
│ │ │ ├── ic_play_arrow_24dp.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_system_update_alt_white_24dp.xml
│ │ │ ├── ic_tab_close_24px.xml
│ │ │ ├── ic_warning_white_24dp.xml
│ │ │ ├── line_divider.xml
│ │ │ ├── material_popup_background.xml
│ │ │ ├── sc_collections_bookmark_48dp.xml
│ │ │ ├── sc_explore_48dp.xml
│ │ │ ├── sc_history_48dp.xml
│ │ │ └── sc_new_releases_48dp.xml
│ │ ├── layout/
│ │ │ ├── download_header.xml
│ │ │ ├── download_item.xml
│ │ │ ├── download_list.xml
│ │ │ ├── pref_widget_switch_material.xml
│ │ │ ├── reader_activity.xml
│ │ │ └── reader_error.xml
│ │ ├── menu/
│ │ │ └── download_single.xml
│ │ ├── mipmap/
│ │ │ └── ic_launcher.xml
│ │ ├── values/
│ │ │ ├── bools.xml
│ │ │ ├── dimens.xml
│ │ │ ├── ids.xml
│ │ │ ├── styles.xml
│ │ │ └── themes.xml
│ │ ├── values-night/
│ │ │ ├── bools.xml
│ │ │ └── themes.xml
│ │ ├── values-night-v31/
│ │ │ └── themes.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
│ └── kotlin/
│ ├── eu/
│ │ └── kanade/
│ │ └── tachiyomi/
│ │ ├── core/
│ │ │ └── security/
│ │ │ ├── PrivacyPreferences.kt
│ │ │ └── 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
│ │ └── system/
│ │ ├── DensityExtensions.kt
│ │ ├── DeviceUtil.kt
│ │ ├── GLUtil.kt
│ │ ├── ToastExtensions.kt
│ │ └── WebViewUtil.kt
│ ├── mihon/
│ │ └── core/
│ │ └── common/
│ │ ├── FeatureFlags.kt
│ │ └── utils/
│ │ └── Set.kt
│ └── tachiyomi/
│ └── core/
│ └── common/
│ ├── Constants.kt
│ ├── 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
│ └── 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/
│ └── MangaDetails.kt
├── data/
│ ├── build.gradle.kts
│ ├── consumer-rules.pro
│ ├── proguard-rules.pro
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ ├── java/
│ │ ├── mihon/
│ │ │ └── data/
│ │ │ └── repository/
│ │ │ └── ExtensionRepoRepositoryImpl.kt
│ │ └── tachiyomi/
│ │ └── data/
│ │ ├── AndroidDatabaseHandler.kt
│ │ ├── DatabaseAdapter.kt
│ │ ├── DatabaseHandler.kt
│ │ ├── QueryPagingSource.kt
│ │ ├── TransactionContext.kt
│ │ ├── category/
│ │ │ └── CategoryRepositoryImpl.kt
│ │ ├── chapter/
│ │ │ ├── ChapterRepositoryImpl.kt
│ │ │ └── ChapterSanitizer.kt
│ │ ├── history/
│ │ │ ├── HistoryMapper.kt
│ │ │ └── HistoryRepositoryImpl.kt
│ │ ├── manga/
│ │ │ ├── MangaMapper.kt
│ │ │ └── MangaRepositoryImpl.kt
│ │ ├── release/
│ │ │ ├── GithubRelease.kt
│ │ │ └── ReleaseServiceImpl.kt
│ │ ├── source/
│ │ │ ├── SourcePagingSource.kt
│ │ │ ├── SourceRepositoryImpl.kt
│ │ │ └── StubSourceRepositoryImpl.kt
│ │ ├── track/
│ │ │ ├── TrackMapper.kt
│ │ │ └── TrackRepositoryImpl.kt
│ │ └── updates/
│ │ └── UpdatesRepositoryImpl.kt
│ └── sqldelight/
│ └── tachiyomi/
│ ├── 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
│ │ ├── 2.sqm
│ │ ├── 3.sqm
│ │ ├── 4.sqm
│ │ ├── 5.sqm
│ │ ├── 6.sqm
│ │ ├── 7.sqm
│ │ ├── 8.sqm
│ │ └── 9.sqm
│ └── view/
│ ├── historyView.sq
│ ├── libraryView.sq
│ └── updatesView.sq
├── domain/
│ ├── build.gradle.kts
│ ├── consumer-rules.pro
│ ├── proguard-rules.pro
│ └── src/
│ ├── main/
│ │ ├── AndroidManifest.xml
│ │ └── java/
│ │ ├── mihon/
│ │ │ └── domain/
│ │ │ ├── chapter/
│ │ │ │ └── interactor/
│ │ │ │ └── FilterChaptersForDownload.kt
│ │ │ ├── extensionrepo/
│ │ │ │ ├── exception/
│ │ │ │ │ └── SaveExtensionRepoException.kt
│ │ │ │ ├── interactor/
│ │ │ │ │ ├── CreateExtensionRepo.kt
│ │ │ │ │ ├── DeleteExtensionRepo.kt
│ │ │ │ │ ├── GetExtensionRepo.kt
│ │ │ │ │ ├── GetExtensionRepoCount.kt
│ │ │ │ │ ├── ReplaceExtensionRepo.kt
│ │ │ │ │ └── UpdateExtensionRepo.kt
│ │ │ │ ├── model/
│ │ │ │ │ └── ExtensionRepo.kt
│ │ │ │ ├── repository/
│ │ │ │ │ └── ExtensionRepoRepository.kt
│ │ │ │ └── service/
│ │ │ │ ├── ExtensionRepoDto.kt
│ │ │ │ └── ExtensionRepoService.kt
│ │ │ ├── manga/
│ │ │ │ └── model/
│ │ │ │ └── SManga.kt
│ │ │ └── upcoming/
│ │ │ └── interactor/
│ │ │ └── GetUpcomingManga.kt
│ │ └── tachiyomi/
│ │ └── domain/
│ │ ├── backup/
│ │ │ └── service/
│ │ │ └── BackupPreferences.kt
│ │ ├── category/
│ │ │ ├── interactor/
│ │ │ │ ├── CreateCategoryWithName.kt
│ │ │ │ ├── DeleteCategory.kt
│ │ │ │ ├── GetCategories.kt
│ │ │ │ ├── RenameCategory.kt
│ │ │ │ ├── ReorderCategory.kt
│ │ │ │ ├── ResetCategoryFlags.kt
│ │ │ │ ├── SetDisplayMode.kt
│ │ │ │ ├── SetMangaCategories.kt
│ │ │ │ ├── SetSortModeForCategory.kt
│ │ │ │ └── UpdateCategory.kt
│ │ │ ├── model/
│ │ │ │ ├── Category.kt
│ │ │ │ └── CategoryUpdate.kt
│ │ │ └── repository/
│ │ │ └── CategoryRepository.kt
│ │ ├── chapter/
│ │ │ ├── interactor/
│ │ │ │ ├── GetBookmarkedChaptersByMangaId.kt
│ │ │ │ ├── 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
│ │ │ ├── ChapterSort.kt
│ │ │ └── MissingChapters.kt
│ │ ├── download/
│ │ │ └── service/
│ │ │ └── DownloadPreferences.kt
│ │ ├── history/
│ │ │ ├── interactor/
│ │ │ │ ├── GetHistory.kt
│ │ │ │ ├── GetNextChapters.kt
│ │ │ │ ├── GetTotalReadDuration.kt
│ │ │ │ ├── RemoveHistory.kt
│ │ │ │ └── UpsertHistory.kt
│ │ │ ├── model/
│ │ │ │ ├── History.kt
│ │ │ │ ├── HistoryUpdate.kt
│ │ │ │ └── HistoryWithRelations.kt
│ │ │ └── repository/
│ │ │ └── HistoryRepository.kt
│ │ ├── library/
│ │ │ ├── model/
│ │ │ │ ├── Flag.kt
│ │ │ │ ├── LibraryDisplayMode.kt
│ │ │ │ ├── LibraryManga.kt
│ │ │ │ └── LibrarySortMode.kt
│ │ │ └── service/
│ │ │ └── LibraryPreferences.kt
│ │ ├── manga/
│ │ │ ├── interactor/
│ │ │ │ ├── FetchInterval.kt
│ │ │ │ ├── GetDuplicateLibraryManga.kt
│ │ │ │ ├── GetFavorites.kt
│ │ │ │ ├── GetLibraryManga.kt
│ │ │ │ ├── GetManga.kt
│ │ │ │ ├── GetMangaByUrlAndSourceId.kt
│ │ │ │ ├── GetMangaWithChapters.kt
│ │ │ │ ├── NetworkToLocalManga.kt
│ │ │ │ ├── ResetViewerFlags.kt
│ │ │ │ ├── SetMangaChapterFlags.kt
│ │ │ │ └── UpdateMangaNotes.kt
│ │ │ ├── model/
│ │ │ │ ├── Manga.kt
│ │ │ │ ├── MangaCover.kt
│ │ │ │ ├── MangaUpdate.kt
│ │ │ │ ├── MangaWithChapterCount.kt
│ │ │ │ └── TriState.kt
│ │ │ └── repository/
│ │ │ └── MangaRepository.kt
│ │ ├── release/
│ │ │ ├── interactor/
│ │ │ │ └── GetApplicationRelease.kt
│ │ │ ├── model/
│ │ │ │ └── Release.kt
│ │ │ └── service/
│ │ │ └── ReleaseService.kt
│ │ ├── source/
│ │ │ ├── interactor/
│ │ │ │ ├── GetRemoteManga.kt
│ │ │ │ └── GetSourcesWithNonLibraryManga.kt
│ │ │ ├── model/
│ │ │ │ ├── Pin.kt
│ │ │ │ ├── Source.kt
│ │ │ │ ├── SourceWithCount.kt
│ │ │ │ └── StubSource.kt
│ │ │ ├── repository/
│ │ │ │ ├── SourceRepository.kt
│ │ │ │ └── StubSourceRepository.kt
│ │ │ └── service/
│ │ │ └── SourceManager.kt
│ │ ├── storage/
│ │ │ └── service/
│ │ │ ├── StorageManager.kt
│ │ │ └── StoragePreferences.kt
│ │ ├── track/
│ │ │ ├── interactor/
│ │ │ │ ├── DeleteTrack.kt
│ │ │ │ ├── GetTracks.kt
│ │ │ │ ├── GetTracksPerManga.kt
│ │ │ │ └── InsertTrack.kt
│ │ │ ├── model/
│ │ │ │ └── Track.kt
│ │ │ └── repository/
│ │ │ └── TrackRepository.kt
│ │ └── updates/
│ │ ├── interactor/
│ │ │ └── GetUpdates.kt
│ │ ├── model/
│ │ │ └── UpdatesWithRelations.kt
│ │ ├── repository/
│ │ │ └── UpdatesRepository.kt
│ │ └── service/
│ │ └── UpdatesPreferences.kt
│ └── test/
│ └── java/
│ └── tachiyomi/
│ └── domain/
│ ├── chapter/
│ │ └── service/
│ │ ├── ChapterRecognitionTest.kt
│ │ └── MissingChaptersTest.kt
│ ├── library/
│ │ └── model/
│ │ └── LibraryFlagsTest.kt
│ ├── manga/
│ │ └── interactor/
│ │ └── FetchIntervalTest.kt
│ └── release/
│ └── interactor/
│ └── GetApplicationReleaseTest.kt
├── gradle/
│ ├── androidx.versions.toml
│ ├── compose.versions.toml
│ ├── 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/
│ ├── androidMain/
│ │ └── AndroidManifest.xml
│ └── 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
│ ├── tt/
│ │ └── 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
├── 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
│ │ │ ├── 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
│ │ │ ├── Facebook.kt
│ │ │ ├── Github.kt
│ │ │ ├── Reddit.kt
│ │ │ └── X.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
│ └── res/
│ ├── values/
│ │ ├── colors.xml
│ │ ├── colors_catppuccin.xml
│ │ ├── colors_greenapple.xml
│ │ ├── colors_lavender.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/
│ ├── colors.xml
│ ├── colors_catppuccin.xml
│ ├── colors_greenapple.xml
│ ├── colors_lavender.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/
│ │ ├── BaseUpdatesGridGlanceWidget.kt
│ │ ├── UpdatesGridCoverScreenGlanceReceiver.kt
│ │ ├── UpdatesGridCoverScreenGlanceWidget.kt
│ │ ├── UpdatesGridGlanceReceiver.kt
│ │ ├── UpdatesGridGlanceWidget.kt
│ │ ├── WidgetManager.kt
│ │ ├── components/
│ │ │ ├── LockedWidget.kt
│ │ │ ├── UpdatesMangaCover.kt
│ │ │ └── UpdatesWidget.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/
│ │ ├── source/
│ │ │ └── PreferenceScreen.kt
│ │ └── util/
│ │ └── RxExtension.kt
│ └── commonMain/
│ └── kotlin/
│ └── eu/
│ └── kanade/
│ └── tachiyomi/
│ ├── source/
│ │ ├── CatalogueSource.kt
│ │ ├── ConfigurableSource.kt
│ │ ├── PreferenceScreen.kt
│ │ ├── Source.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/
│ ├── JsoupExtensions.kt
│ └── RxExtension.kt
├── source-local/
│ ├── build.gradle.kts
│ ├── consumer-rules.pro
│ ├── proguard-rules.pro
│ └── src/
│ ├── androidMain/
│ │ ├── AndroidManifest.xml
│ │ └── kotlin/
│ │ └── tachiyomi/
│ │ └── source/
│ │ └── local/
│ │ ├── LocalSource.kt
│ │ ├── filter/
│ │ │ └── OrderBy.kt
│ │ ├── image/
│ │ │ └── LocalCoverManager.kt
│ │ ├── io/
│ │ │ └── LocalSourceFileSystem.kt
│ │ └── metadata/
│ │ └── EpubReaderExtensions.kt
│ └── commonMain/
│ └── kotlin/
│ └── tachiyomi/
│ └── source/
│ └── local/
│ ├── LocalSource.kt
│ ├── image/
│ │ └── LocalCoverManager.kt
│ └── io/
│ ├── Archive.kt
│ ├── Format.kt
│ └── LocalSourceFileSystem.kt
└── telemetry/
├── build.gradle.kts
└── src/
├── firebase/
│ └── kotlin/
│ └── mihon/
│ └── telemetry/
│ ├── PackageInfo.kt
│ └── TelemetryConfig.kt
├── main/
│ └── AndroidManifest.xml
└── noop/
├── AndroidManifest.xml
└── kotlin/
└── mihon/
└── telemetry/
└── TelemetryConfig.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,sq,sqm,aidl}]
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_comment-wrapping = disabled
ktlint_standard_discouraged-comment-location = disabled
ktlint_standard_function-expression-body = disabled
ktlint_standard_function-signature = disabled
ktlint_standard_type-argument-comment = disabled
ktlint_standard_type-parameter-comment = disabled
ktlint_standard_blank-line-between-when-conditions = 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/.java-version
================================================
21
================================================
FILE: .github/FUNDING.yml
================================================
patreon: mihon
================================================
FILE: .github/ISSUE_TEMPLATE/1_request_feature.yml
================================================
name: ⭐ Feature request
description: Suggest a feature to improve Mihon
labels: [feature request]
body:
- type: textarea
id: feature-description
attributes:
label: Describe your suggested feature
description: How can Mihon 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: I have updated the app to version **[0.19.5](https://github.com/mihonapp/mihon/releases/latest)**.
required: true
- label: I will fill out all of the requested information in this form.
required: true
================================================
FILE: .github/ISSUE_TEMPLATE/2_report_issue.yml
================================================
name: 🐞 Issue report
description: Report an issue in Mihon
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: mihon-version
attributes:
label: Mihon version
description: You can find your Mihon version in **More → About**.
placeholder: |
Example: "0.19.5"
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: I have gone through the [FAQ](https://mihon.app/docs/faq/general) and [troubleshooting guide](https://mihon.app/docs/guides/troubleshooting/).
required: true
- label: I have updated the app to version **[0.19.5](https://github.com/mihonapp/mihon/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 **Mihon 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/config.yml
================================================
blank_issues_enabled: false
contact_links:
- name: ❌ Help with Extensions
url: https://mihon.app/docs/faq/browse/extensions
about: For extension-related questions/issues
- name: 🖥️ Mihon website
url: https://mihon.app/
about: Guides, troubleshooting, and answers to common questions
================================================
FILE: .github/pull_request_template.md
================================================
<!--
Please include a summary of the change and which issue is fixed.
Also make sure you've tested your code and also done a self-review of it.
Don't forget to check all base themes and tablet mode for relevant changes.
If your changes are visual, please provide images below:
### Images
| Image 1 | Image 2 |
| ------- | ------- |
|  |  |
-->
================================================
FILE: .github/renovate.json5
================================================
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"labels": ["Dependencies"],
"semanticCommits": "disabled",
"packageRules": [
{
"groupName": "GitHub Actions",
"matchManagers": ["github-actions"],
"pinDigests": true,
},
],
}
================================================
FILE: .github/workflows/build.yml
================================================
name: Build & Test
on:
pull_request:
paths:
- '**'
- '!**.md'
- '!i18n/src/commonMain/moko-resources/**/strings.xml'
- '!i18n/src/commonMain/moko-resources/**/plurals.xml'
- 'i18n/src/commonMain/moko-resources/base/strings.xml'
- 'i18n/src/commonMain/moko-resources/base/plurals.xml'
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: Build & Test App
runs-on: 'ubuntu-24.04'
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Dependency Review
if: github.event_name == 'pull_request'
uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # v4.9.0
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version-file: .github/.java-version
distribution: temurin
- name: Set up Gradle
uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
- name: Check code format
run: ./gradlew spotlessCheck
- name: Build app
run: ./gradlew assembleRelease -Pinclude-telemetry -Penable-updater
- name: Run unit tests
id: unit_tests
run: ./gradlew testReleaseUnitTest
- name: Upload test report
if: steps.unit_tests.outcome == 'failure'
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: test-report-${{ github.sha }}
path: app/build/reports/tests/testReleaseUnitTest
- name: Upload APK
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
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@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: mapping-${{ github.sha }}
path: app/build/outputs/mapping/release
================================================
FILE: .github/workflows/release.yml
================================================
name: Release
on:
push:
tags:
- v*
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
get_tag:
if: github.repository == 'mihonapp/mihon'
name: Extract tag name
runs-on: 'ubuntu-24.04'
outputs:
tag: ${{ steps.extract.outputs.tag }}
steps:
- name: Get tag name
id: extract
run: echo "tag=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
build:
if: github.repository == 'mihonapp/mihon'
name: Build
runs-on: 'ubuntu-24.04'
needs: get_tag
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version-file: .github/.java-version
distribution: temurin
- name: Set up Gradle
uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
- name: Build
run: ./gradlew assembleRelease -Pinclude-telemetry -Penable-updater
- name: Sign APK
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: Rename APK
run: |
set -e
mv app/build/outputs/apk/release/app-universal-release-unsigned-signed.apk mihon-${{ needs.get_tag.outputs.tag }}.apk
mv app/build/outputs/apk/release/app-arm64-v8a-release-unsigned-signed.apk mihon-arm64-v8a-${{ needs.get_tag.outputs.tag }}.apk
mv app/build/outputs/apk/release/app-armeabi-v7a-release-unsigned-signed.apk mihon-armeabi-v7a-${{ needs.get_tag.outputs.tag }}.apk
mv app/build/outputs/apk/release/app-x86-release-unsigned-signed.apk mihon-x86-${{ needs.get_tag.outputs.tag }}.apk
mv app/build/outputs/apk/release/app-x86_64-release-unsigned-signed.apk mihon-x86_64-${{ needs.get_tag.outputs.tag }}.apk
- name: Upload APK
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: mihon
path: |
mihon-${{ needs.get_tag.outputs.tag }}.apk
mihon-arm64-v8a-${{ needs.get_tag.outputs.tag }}.apk
mihon-armeabi-v7a-${{ needs.get_tag.outputs.tag }}.apk
mihon-x86-${{ needs.get_tag.outputs.tag }}.apk
mihon-x86_64-${{ needs.get_tag.outputs.tag }}.apk
build_foss:
if: github.repository == 'mihonapp/mihon'
name: Build (FOSS)
runs-on: ubuntu-24.04
needs: get_tag
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version-file: .github/.java-version
distribution: temurin
- name: Set up Gradle
uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
with:
cache-disabled: true
- name: Build
run: ./gradlew assembleFoss -Penable-updater
- name: Sign APK
uses: r0adkll/sign-android-release@f30bdd30588842ac76044ecdbd4b6d0e3e813478
with:
releaseDirectory: app/build/outputs/apk/foss
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
BUILD_TOOLS_VERSION: '35.0.1'
- name: Rename APK
run: |
set -e
mv app/build/outputs/apk/foss/app-universal-foss-unsigned-signed.apk mihon-${{ needs.get_tag.outputs.tag }}-foss.apk
- name: Upload APK
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: mihon-foss
path: mihon-${{ needs.get_tag.outputs.tag }}-foss.apk
release:
if: github.repository == 'mihonapp/mihon'
name: Create GitHub Release
runs-on: ubuntu-24.04
needs: [get_tag, build, build_foss]
steps:
- name: Download all artifacts
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
with:
merge-multiple: true
- name: Delete all artifacts
uses: geekyeggo/delete-artifact@f275313e70c08f6120db482d7a6b98377786765b # v5.1.0
with:
failOnError: false
name: |
mihon
mihon-foss
- name: Create GitHub Release
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2.6.1
with:
tag_name: ${{ needs.get_tag.outputs.tag }}
name: Mihon ${{ needs.get_tag.outputs.tag }}
body: |
Check out the [past release notes](https://github.com/mihonapp/mihon/releases) if you're upgrading from an earlier version. Consider [becoming a patron](https://www.patreon.com/mihon/membership) to help keep Mihon improving!
<!-->
<!-->
> [!TIP]
>
> ### If you are unsure which version to download then go with `mihon-${{ needs.get_tag.outputs.tag }}.apk`
files: |
mihon-${{ needs.get_tag.outputs.tag }}.apk
mihon-${{ needs.get_tag.outputs.tag }}-foss.apk
mihon-arm64-v8a-${{ needs.get_tag.outputs.tag }}.apk
mihon-armeabi-v7a-${{ needs.get_tag.outputs.tag }}.apk
mihon-x86-${{ needs.get_tag.outputs.tag }}.apk
mihon-x86_64-${{ needs.get_tag.outputs.tag }}.apk
draft: true
prerelease: false
token: ${{ secrets.MIHON_BOT_TOKEN }}
================================================
FILE: .github/workflows/update_website.yml
================================================
name: Update website
on:
release:
types:
- published
- deleted
- edited
jobs:
update_website:
runs-on: 'ubuntu-24.04'
steps:
- name: Update website
run: |
curl --fail-with-body -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.MIHON_BOT_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/mihonapp/website/dispatches \
-d '{"event_type":"app_release"}'
================================================
FILE: .gitignore
================================================
# Build files
.gradle
.kotlin
build
# IDE files
*.iml
.idea/*
!.idea/icon.svg
/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]
## [v0.19.5] - 2026-03-20
### Changed
- Retry in reader now redownloads image ([@AntsyLich](https://github.com/AntsyLich)) ([#3089](https://github.com/mihonapp/mihon/pull/3089))
### Fixed
- Fix performance regression introduced in v0.19.4 ([@AntsyLich](https://github.com/AntsyLich)) ([#3082](https://github.com/mihonapp/mihon/pull/3082))
- Fix duplicate key crash in duplicate detection ([@leodyversemilla07](https://github.com/leodyversemilla07)) ([#3040](https://github.com/mihonapp/mihon/pull/3040))
- Fix MangaUpdates HTTP 4XX errors ([@leodyversemilla07](https://github.com/leodyversemilla07)) ([#3021](https://github.com/mihonapp/mihon/pull/3021))
- Fix WebView JavaScript dialogs popup after screen is closed ([@leodyversemilla07](https://github.com/leodyversemilla07)) ([#3041](https://github.com/mihonapp/mihon/pull/3041))
- Fix extension actions disappearing after installing and uninstalling in same session ([@leodyversemilla07](https://github.com/leodyversemilla07)) ([#3049](https://github.com/mihonapp/mihon/pull/3049))
## [v0.19.4] - 2026-02-25
### Added
- Automatically remove downloads on Suwayomi after reading, configurable via extension settings ([@cpiber](https://github.com/cpiber)) ([#2673](https://github.com/mihonapp/mihon/pull/2673))
- Display author & artist name in MAL search results ([@MajorTanya](https://github.com/MajorTanya)) ([#2833](https://github.com/mihonapp/mihon/pull/2833))
- Add filter options to Updates tab ([@MajorTanya](https://github.com/MajorTanya)) ([#2851](https://github.com/mihonapp/mihon/pull/2851))
- Add bookmarked chapters to chapter download options ([@NarwhalHorns](https://github.com/NarwhalHorns)) ([#2891](https://github.com/mihonapp/mihon/pull/2891))
- Add `src:` prefix to search the library by source ID ([@MajorTanya](https://github.com/MajorTanya)) ([#2927](https://github.com/mihonapp/mihon/pull/2927))
- Add `src:local` as a way to search for Local Source entries ([@MajorTanya](https://github.com/MajorTanya)) ([#2928](https://github.com/mihonapp/mihon/pull/2928))
### Improved
- Minimize memory usage by reducing in-memory cover cache size ([@Lolle2000la](https://github.com/Lolle2000la)) ([#2266](https://github.com/mihonapp/mihon/pull/2266))
- Optimize MAL search queries ([@MajorTanya](https://github.com/MajorTanya)) ([#2832](https://github.com/mihonapp/mihon/pull/2832))
- Reword download reindexing message to avoid confusion ([@MajorTanya](https://github.com/MajorTanya)) ([#2874](https://github.com/mihonapp/mihon/pull/2874))
- Optimize tracked library filter ([@NarwhalHorns](https://github.com/NarwhalHorns)) ([#2977](https://github.com/mihonapp/mihon/pull/2977))
- Utilize tracker for library duplicate detection ([@NarwhalHorns](https://github.com/NarwhalHorns)) ([#2978](https://github.com/mihonapp/mihon/pull/2978))
### Changed
- Update tracker icons ([@AntsyLich](https://github.com/AntsyLich)) ([#2773](https://github.com/mihonapp/mihon/pull/2773))
- Add a small increment to chapter number before comparison to fix progress sync issues for Suwayomi ([@cpiber](https://github.com/cpiber)) ([#2657](https://github.com/mihonapp/mihon/pull/2675))
- Add all pages of adjacent chapters in the UI instead of only the first or last three ([@AntsyLich](https://github.com/AntsyLich)) ([#2995](https://github.com/mihonapp/mihon/pull/2995))
- Going back now first clears search query on browse extension tab ([@cuong-tran](https://github.com/cuong-tran)) ([#2906](https://github.com/mihonapp/mihon/pull/2906))
- Automatic library updates now run even when connected to a VPN ([@AntsyLich](https://github.com/AntsyLich)) ([#2773](https://github.com/mihonapp/mihon/pull/2773))
### Fixed
- Fix reader tap zones triggering after scrolling is stopped by tapping ([@NGB-Was-Taken](https://github.com/NGB-Was-Taken)) ([#2680](https://github.com/mihonapp/mihon/pull/2680))
- Fix shizuku installer not updating installed extensions ([@NGB-Was-Taken](https://github.com/NGB-Was-Taken)) ([#2697](https://github.com/mihonapp/mihon/pull/2697))
- Fix mass migration not using the same search queries as individual migration ([@AntsyLich](https://github.com/AntsyLich)) ([#2736](https://github.com/mihonapp/mihon/pull/2736))
- Fix reader not saving read duration when changing chapter ([@AntsyLich](https://github.com/AntsyLich), [@KotlinHero](https://github.com/KotlinHero)) ([#2784](https://github.com/mihonapp/mihon/pull/2784))
- Fix pre-1970 upload date display in chapter list ([@MajorTanya](https://github.com/MajorTanya)) ([#2779](https://github.com/mihonapp/mihon/pull/2779))
- Fix crash when trying to install/update extensions while shizuku is not running ([@NGB-Was-Taken](https://github.com/NGB-Was-Taken)) ([#2837](https://github.com/mihonapp/mihon/pull/2837))
- Fix Add Repo input not taking up the full dialog width ([@cuong-tran](https://github.com/cuong-tran)) ([#2816](https://github.com/mihonapp/mihon/pull/2816))
- Fix migration's selected sources order not preserved ([@AntsyLich](https://github.com/AntsyLich)) ([#2993](https://github.com/mihonapp/mihon/pull/2993))
- Fix migration dialog not showing for consecutive prompts from the same screen ([@AntsyLich](https://github.com/AntsyLich)) ([#2994](https://github.com/mihonapp/mihon/pull/2994))
- Fix extension install/update stuck at pending ([@AntsyLich](https://github.com/AntsyLich)) ([#3000](https://github.com/mihonapp/mihon/pull/3000))
- Fix crash when downloading multiple chapters with Arabic locale ([@MajorTanya](https://github.com/MajorTanya)) ([#2676](https://github.com/mihonapp/mihon/pull/2676))
### Other
- Enable logcat logging on stable and debug builds without enabling verbose logging ([@NGB-Was-Taken](https://github.com/NGB-Was-Taken)) ([#2836](https://github.com/mihonapp/mihon/pull/2836))
## [v0.19.3] - 2025-11-07
### Improved
- Improved various aspects of the WebView multi window support ([@TheUnlocked](https://github.com/TheUnlocked)) ([#2662](https://github.com/mihonapp/mihon/pull/2662))
### Removed
- Revert "Fix reader tap zones triggering after scrolling was stopped by the user" due to introduction of regression ([@AntsyLich](https://github.com/AntsyLich)) ([#2670](https://github.com/mihonapp/mihon/pull/2670))
### Fixed
- Fix WebView crash introduced in 0.19.2 ([@bapeey](https://github.com/bapeey)) ([#2649](https://github.com/mihonapp/mihon/pull/2649))
- Fix extra padding appearing in reader after user interactions ([@AntsyLich](https://github.com/AntsyLich)) ([#2669](https://github.com/mihonapp/mihon/pull/2669))
- Fix long strip reader not scrolling on consecutive taps ([@AntsyLich](https://github.com/AntsyLich)) ([#2670](https://github.com/mihonapp/mihon/pull/2670))
## [v0.19.2] - 2025-11-02
### Added
- Advanced setting to limit download filenames to ASCII characters. This is provided only as a workaround for OSes that do not properly handle standard Unicode filenames. This setting is generally not recommended and should only be used as a last resort ([@raxod502](https://github.com/radian-software)) ([#2305](https://github.com/mihonapp/mihon/pull/2305))
- Option to customize the number of concurrent source and page downloads ([@AntsyLich](https://github.com/AntsyLich)) ([#2637](https://github.com/mihonapp/mihon/pull/2637))
### Changed
- Increased default concurrent page downloads to 5 ([@AntsyLich](https://github.com/AntsyLich)) ([#2637](https://github.com/mihonapp/mihon/pull/2637))
### Improved
- Spoofing of `X-Requested-With` header to support newer WebView versions ([@Guzmazow](https://github.com/Guzmazow)) ([#2491](https://github.com/mihonapp/mihon/pull/2491))
- Download support for chapters with the same metadata. Now a hash based on chapter's url is appended to download filename to tell them apart, letting you download both. Existing downloaded chapters will continue to work normally ([@raxod502](https://github.com/radian-software)) ([#2305](https://github.com/mihonapp/mihon/pull/2305))
- Auto refresh extension list whenever a repository is added or removed ([@c2y5](https://github.com/c2y5)) ([#2483](https://github.com/mihonapp/mihon/pull/2483))
- Added proper multi window support in WebView instead of treating everything as a redirect ([@TheUnlocked](https://github.com/TheUnlocked)) ([#2584](https://github.com/mihonapp/mihon/pull/2584))
### Fixed
- Fix height of description not being calculated correctly if images are present ([@Secozzi](https://github.com/Secozzi)) ([#2382](https://github.com/mihonapp/mihon/pull/2382))
- Fix migration progress not updating after manual search ([@Secozzi](https://github.com/Secozzi)) ([#2484](https://github.com/mihonapp/mihon/pull/2484))
- Fix category migration flag being ignored due to incorrect check against chapter flag ([@Secozzi](https://github.com/Secozzi)) ([#2484](https://github.com/mihonapp/mihon/pull/2484))
- Fix disabling incognito mode from notification ([@NGB-Was-Taken](https://github.com/NGB-Was-Taken)) ([#2512](https://github.com/mihonapp/mihon/pull/2512))
- Fix mass migration advanced search query building ([@AntsyLich](https://github.com/AntsyLich)) ([#2629](https://github.com/mihonapp/mihon/pull/2629))
- Fix migration dialog migrating to wrong entry ([@AntsyLich](https://github.com/AntsyLich)) ([#2631](https://github.com/mihonapp/mihon/pull/2631))
- Fix migration "Attempt to invoke virtual method" crash ([@AntsyLich](https://github.com/AntsyLich)) ([#2632](https://github.com/mihonapp/mihon/pull/2632))
- Fix reader "Unable to edit key" error ([@AntsyLich](https://github.com/AntsyLich)) ([#2634](https://github.com/mihonapp/mihon/pull/2634))
- Fix extension download stuck in pending state in some cases ([@c2y5](https://github.com/c2y5)) ([#2483](https://github.com/mihonapp/mihon/pull/2483))
- Fix scrollbar not showing when animator duration scale animation is turned off ([@anirudhsnayak](https://github.com/anirudhsnayak)) ([#2398](https://github.com/mihonapp/mihon/pull/2398))
- Fix date picker not allowing the same start and finish date in negative time zones ([@AntsyLich](https://github.com/AntsyLich), [@kashish-aggarwal21](https://github.com/kashish-aggarwal21)) ([#2617](https://github.com/mihonapp/mihon/pull/2617))
- Fix reader tap zones triggering after scrolling was stopped by the user ([@Naputt1](https://github.com/Naputt1), [@AntsyLich](https://github.com/AntsyLich)) ([#2518](https://github.com/mihonapp/mihon/pull/2518))
- Fix reader page indicator being partially visible on some devices ([@AntsyLich](https://github.com/AntsyLich)) ([#1908](https://github.com/mihonapp/mihon/pull/1908))
- Fix inconsistent system bar and reader app bar background ([@AntsyLich](https://github.com/AntsyLich)) ([#1908](https://github.com/mihonapp/mihon/pull/1908))
- Fix transparent system bar background in reader on Android 15+ ([@AntsyLich](https://github.com/AntsyLich)) ([#1908](https://github.com/mihonapp/mihon/pull/1908))
### Other
- Delegate Suwayomi tracker authentication to extension ([@cpiber](https://github.com/cpiber)) ([#2476](https://github.com/mihonapp/mihon/pull/2476))
- Fix Kitsu tracker to conform to tracker data structure properly ([@cpiber](https://github.com/cpiber)) ([#2609](https://github.com/mihonapp/mihon/pull/2609))
- Update Suwayomi tracker to use GraphQL API instead of REST API ([@cpiber](https://github.com/cpiber)) ([#2585](https://github.com/mihonapp/mihon/pull/2585))
## [v0.19.1] - 2025-08-07
### Changed
- LocalSource now reads ComicInfo.xml file for chapter (if available) to display chapter title, number and scanlator ([@raxod502](https://github.com/radian-software)) ([#2332](https://github.com/mihonapp/mihon/pull/2332))
### Removed
- Predictive back support ([@AntsyLich](https://github.com/AntsyLich)) ([#2362](https://github.com/mihonapp/mihon/pull/2362))
### Fixed
- Fix scrollbar sometimes not showing during scroll or not reaching the bottom with few items ([@anirudhsnayak](https://github.com/anirudhsnayak)) ([#2304](https://github.com/mihonapp/mihon/pull/2304))
- Fix local source EPUB files not loading ([@AntsyLich](https://github.com/AntsyLich)) ([#2369](https://github.com/mihonapp/mihon/pull/2369))
- Fix title text color in light mode on mass migration list ([@AntsyLich](https://github.com/AntsyLich)) ([#2370](https://github.com/mihonapp/mihon/pull/2370))
- Fix 'Default' category showing in library with no user-added categories ([@AntsyLich](https://github.com/AntsyLich)) ([#2371](https://github.com/mihonapp/mihon/pull/2371))
- Fix crash when opening filter sheet with an empty library ([@krysanify](https://github.com/krysanify/)) ([#2355](https://github.com/mihonapp/mihon/pull/2355))
- Fix mark as read/unread not working for selected library items ([@krysanify](https://github.com/krysanify/)) ([#2355](https://github.com/mihonapp/mihon/pull/2355))
## [v0.19.0] - 2025-08-04
### Added
- Add more Kaomoji for empty/error screens ([@ianfhunter](https://github.com/ianfhunter/)) ([#1909](https://github.com/mihonapp/mihon/pull/1909))
- Add user manga notes ([@imkunet](https://github.com/imkunet), [@AntsyLich](https://github.com/AntsyLich)) ([#428](https://github.com/mihonapp/mihon/pull/428))
- Fix user notes not restoring when manga doesn't exist in DB ([@AntsyLich](https://github.com/AntsyLich)) ([#1945](https://github.com/mihonapp/mihon/pull/1945))
- Add markdown support for manga descriptions ([@Secozzi](https://github.com/Secozzi)) ([#1948](https://github.com/mihonapp/mihon/pull/1948))
- Use simpler markdown flavour ([@Secozzi](https://github.com/Secozzi)) ([#2000](https://github.com/mihonapp/mihon/pull/2000))
- Use Github markdown flavour for Github releases & fix bullet list alignment ([@Secozzi](https://github.com/Secozzi)) ([#2024](https://github.com/mihonapp/mihon/pull/2024))
- Add option to toggle image loading ([@Secozzi](https://github.com/Secozzi)) ([#2076](https://github.com/mihonapp/mihon/pull/2076))
- Add Nord Theme ([@Riztard](https://github.com/Riztard)) ([#1951](https://github.com/mihonapp/mihon/pull/1951))
- Option to keep read manga when clearing database ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#1979](https://github.com/mihonapp/mihon/pull/1979))
- Add advanced option to always update manga title from source ([@FlaminSarge](https://github.com/FlaminSarge)) ([#1182](https://github.com/mihonapp/mihon/pull/1182))
- Full predictive back support ([@AntsyLich](https://github.com/AntsyLich)) ([#2085](https://github.com/mihonapp/mihon/pull/2085))
- Add Catppuccin theme (mocha for dark and latte for light, mauve accent) ([@claymorwan](https://github.com/claymorwan/)) ([#2117](https://github.com/mihonapp/mihon/pull/2117))
- Manga mass migration ([@AntsyLich](https://github.com/AntsyLich), [@jobobby04](https://github.com/jobobby04)) ([#2110](https://github.com/mihonapp/mihon/pull/2110), [#2336](https://github.com/mihonapp/mihon/pull/2336), [#2338](https://github.com/mihonapp/mihon/pull/2338), [`f119386`](https://github.com/mihonapp/mihon/commit/f119386))
### Improved
- Significantly improve browsing speed (near instantaneous) ([@AntsyLich](https://github.com/AntsyLich)) ([#1946](https://github.com/mihonapp/mihon/pull/1946))
- Deduplicate entries when browsing ([@AntsyLich](https://github.com/AntsyLich)) ([#1957](https://github.com/mihonapp/mihon/pull/1957))
- Update non-library manga data when browsing ([@AntsyLich](https://github.com/AntsyLich)) ([#1967](https://github.com/mihonapp/mihon/pull/1967))
- Surface image loading error in Reader ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#1981](https://github.com/mihonapp/mihon/pull/1981))
- Include source headers when opening failed images from reader ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#2004](https://github.com/mihonapp/mihon/pull/2004))
- Added autofill support to tracker login dialog ([@AntsyLich](https://github.com/AntsyLich)) ([#2069](https://github.com/mihonapp/mihon/pull/2069))
- Added option to hide missing chapter count ([@User826](https://github.com/User826), [@AntsyLich](https://github.com/AntsyLich)) ([#2108](https://github.com/mihonapp/mihon/pull/2108))
- Use median to determine smart update interval, making it more resilient to long hiatuses ([@Kladki](https://github.com/Kladki)) ([#2251](https://github.com/mihonapp/mihon/pull/2251))
- Optimize library code to potentially better handle big user libraries ([@AntsyLich](https://github.com/AntsyLich)) ([#2329](https://github.com/mihonapp/mihon/pull/2329), [#2341](https://github.com/mihonapp/mihon/pull/2341))
### Changed
- Display all similarly named duplicates in duplicate manga dialogue ([@NarwhalHorns](https://github.com/NarwhalHorns), [@AntsyLich](https://github.com/AntsyLich)) ([#1861](https://github.com/mihonapp/mihon/pull/1861))
- Display chapter count on items in duplicate manga dialogue ([@NarwhalHorns](https://github.com/NarwhalHorns)) ([#1963](https://github.com/mihonapp/mihon/pull/1963))
- Update Facebook and Reddit icons ([@Joehuu](https://github.com/Joehuu)) ([#1994](https://github.com/mihonapp/mihon/pull/1994))
- Switch default user agent to Android Chrome ([@AntsyLich](https://github.com/AntsyLich)) ([#2048](https://github.com/mihonapp/mihon/pull/2048))
- Changed log in button text when processing tracker login ([@AntsyLich](https://github.com/AntsyLich)) ([#2069](https://github.com/mihonapp/mihon/pull/2069))
- Disable reader's 'Keep screen on' setting by default ([@AntsyLich](https://github.com/AntsyLich)) ([#2095](https://github.com/mihonapp/mihon/pull/2095))
- Update manga without chapters even if restricted by source ([@AntsyLich](https://github.com/AntsyLich)) ([#2224](https://github.com/mihonapp/mihon/pull/224))
- Make local source default chapter sorting match file explorer behavior ([@AntsyLich](https://github.com/AntsyLich)) ([#2224](https://github.com/mihonapp/mihon/pull/224))
- Include Manga `initialized` status in backup ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#2285](https://github.com/mihonapp/mihon/pull/2285))
### Fixed
- Fix Bangumi search results including novels ([@MajorTanya](https://github.com/MajorTanya)) ([#1885](https://github.com/mihonapp/mihon/pull/1885))
- Fix next chapter button occasionally jumping to the last page of the current chapter ([@perokhe](https://github.com/perokhe)) ([#1920](https://github.com/mihonapp/mihon/pull/1920))
- Fix page number not appearing when opening chapter ([@perokhe](https://github.com/perokhe)) ([#1936](https://github.com/mihonapp/mihon/pull/1936))
- Fix backup sharing from notifications not working when app is in background ([@JaymanR](https://github.com/JaymanR))([#1929](https://github.com/mihonapp/mihon/pull/1929))
- Fix mark existing duplicate read chapters as read option not working in some cases ([@AntsyLich](https://github.com/AntsyLich)) ([#1944](https://github.com/mihonapp/mihon/pull/1944))
- Fix app bar action tooltips blocking clicks ([@Bartuzen](https://github.com/Bartuzen)) ([#1928](https://github.com/mihonapp/mihon/pull/1928))
- Fix unintended app permissions due to Firebase misconfiguration ([@AntsyLich](https://github.com/AntsyLich)) ([#1960](https://github.com/mihonapp/mihon/pull/1960))
- Fix navigation issue after migrating a duplicated entry from History tab ([@cuong-tran](https://github.com/cuong-tran)) ([#1980](https://github.com/mihonapp/mihon/pull/1980))
- Fix duplicate requests in WebView due to empty reasonPhrase ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#2003](https://github.com/mihonapp/mihon/pull/2003))
- Fix content under source browse screen top appbar is interactable ([@AntsyLich](https://github.com/AntsyLich)) ([#2026](https://github.com/mihonapp/mihon/pull/2026))
- Fix crash when trying use source sort filter without a pre-selection ([@AntsyLich](https://github.com/AntsyLich)) ([#2036](https://github.com/mihonapp/mihon/pull/2036))
- Fix empty layout not appearing in browse source screen in some cases ([@NarwhalHorns](https://github.com/NarwhalHorns)) ([#2043](https://github.com/mihonapp/mihon/pull/2043))
- Fix Pill not following the local text style ([@AntsyLich](https://github.com/AntsyLich)) ([`f8cb506`](https://github.com/mihonapp/mihon/commit/f8cb506))
- Fix downloader stopping after failing to create download directory of a manga ([@AntsyLich](https://github.com/AntsyLich)) ([#2068](https://github.com/mihonapp/mihon/pull/2068))
- Fix pressing `Enter` while searching also triggering navigation back on physical keyboards ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#2077](https://github.com/mihonapp/mihon/pull/2077))
- Ensure app waits for Cloudflare challenge to complete before continuing ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#2200](https://github.com/mihonapp/mihon/pull/2200))
### Removed
- Remove Okhttp networking from WebView Screen ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#2020](https://github.com/mihonapp/mihon/pull/2020))
## [v0.18.0] - 2025-03-20
### Added
- Add option to always decode long strip images with SSIV ([@AntsyLich](https://github.com/AntsyLich)) ([`c5655e8`](https://github.com/mihonapp/mihon/commit/c5655e8803bc32d0931657f0b7bc6afeab70feaf))
- Change option label ([@AntsyLich](https://github.com/AntsyLich)) ([#1835](https://github.com/mihonapp/mihon/pull/1835))
- Added option to enable incognito per extension ([@sdaqo](https://github.com/sdaqo), [@AntsyLich](https://github.com/AntsyLich)) ([#157](https://github.com/mihonapp/mihon/pull/157))
- Add button to favorite manga from history screen ([@Animeboynz](https://github.com/Animeboynz)) ([#1733](https://github.com/mihonapp/mihon/pull/1733))
- Add Monochrome theme (made with e-ink displays in mind) ([@MajorTanya](https://github.com/MajorTanya)) ([#1752](https://github.com/mihonapp/mihon/pull/1752))
- Support for private tracking with AniList and Bangumi ([@NarwhalHorns](https://github.com/NarwhalHorns)) ([#1736](https://github.com/mihonapp/mihon/pull/1736))
- Add private tracking support for Kitsu ([@MajorTanya](https://github.com/MajorTanya)) ([#1774](https://github.com/mihonapp/mihon/pull/1774))
- Add option to export minimal library information to a CSV file ([@Animeboynz](https://github.com/Animeboynz), [@AntsyLich](https://github.com/AntsyLich)) ([#1161](https://github.com/mihonapp/mihon/pull/1161))
- Add back support for drag-and-drop category reordering ([@cuong-tran](https://github.com/cuong-tran)) ([#1427](https://github.com/mihonapp/mihon/pull/1427))
- Add option to mark duplicate read chapters as read after library update or while reading ([@AntsyLich](https://github.com/AntsyLich)) ([#1785](https://github.com/mihonapp/mihon/pull/1785), [#1791](https://github.com/mihonapp/mihon/pull/1791), [#1870](https://github.com/mihonapp/mihon/pull/1870))
- Display staff information on Anilist tracker search results ([@NarwhalHorns](https://github.com/NarwhalHorns)) ([#1810](https://github.com/mihonapp/mihon/pull/1810))
- Add `id:` prefix search to library to search by internal DB ID ([@MajorTanya](https://github.com/MajorTanya)) ([#1856](https://github.com/mihonapp/mihon/pull/1856))
- Add back option to disable unread chapter badge in library ([@AntsyLich](https://github.com/AntsyLich)) ([#1871](https://github.com/mihonapp/mihon/pull/1871))
### Changed
- Sliders UI ([@AntsyLich](https://github.com/AntsyLich)) ([#1840](https://github.com/mihonapp/mihon/pull/1840))
- Apply "Downloaded only" filter to all entries regardless of favourite status ([@NGB-Was-Taken](https://github.com/NGB-Was-Taken)) ([#1603](https://github.com/mihonapp/mihon/pull/1603))
- Ignore hidden files/folders for Local Source chapter list ([@BrutuZ](https://github.com/BrutuZ)) ([#1763](https://github.com/mihonapp/mihon/pull/1763))
- Migrate to newer Bangumi API ([@MajorTanya](https://github.com/MajorTanya)) ([#1748](https://github.com/mihonapp/mihon/pull/1748))
- Now showing manga starting dates in search
- Reduced request load by 2-4x in certain situations
- Bump default user agent ([@AntsyLich](https://github.com/AntsyLich)) ([#1833](https://github.com/mihonapp/mihon/pull/1833))
- Changed the label of chapter swipe settings and renamed the group to "Behavior" ([@AntsyLich](https://github.com/AntsyLich)) ([#1870](https://github.com/mihonapp/mihon/pull/1870))
### Fixed
- Fix MAL `main_picture` nullability breaking search if a result doesn't have a cover set ([@MajorTanya](https://github.com/MajorTanya)) ([#1618](https://github.com/mihonapp/mihon/pull/1618))
- Fix Bangumi and MAL tracking 401 errors due to Mihon sending expired credentials ([@MajorTanya](https://github.com/MajorTanya)) ([#1681](https://github.com/mihonapp/mihon/pull/1681), [#1682](https://github.com/mihonapp/mihon/pull/1682))
- Fix certain Infinix, Xiaomi devices being unable to use any "Open link in browser" actions, including tracker setup ([@MajorTanya](https://github.com/MajorTanya)) ([#1684](https://github.com/mihonapp/mihon/pull/1684)) ([#1776](https://github.com/mihonapp/mihon/pull/1776))
- Fix App's preferences referencing deleted categories ([@cuong-tran](https://github.com/cuong-tran)) ([#1734](https://github.com/mihonapp/mihon/pull/1734))
- Fix backup/restore of category related preferences ([@cuong-tran](https://github.com/cuong-tran)) ([#1726](https://github.com/mihonapp/mihon/pull/1726))
- Fix WebView sending app's package name in `X-Requested-With` header, which led to sources blocking access ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#1812](https://github.com/mihonapp/mihon/pull/1812))
- Fix an issue where tracker reading progress is changed to a lower value ([@Animeboynz](https://github.com/Animeboynz)) ([#1795](https://github.com/mihonapp/mihon/pull/1795))
- Attempt to fix crash when migrating or removing entries from library ([@FlaminSarge](https://github.com/FlaminSarge)) ([#1828](https://github.com/mihonapp/mihon/pull/1828))
### Removed
- Remove alphabetical category sort option ([@AntsyLich](https://github.com/AntsyLich)) ([#1781](https://github.com/mihonapp/mihon/pull/1781))
### Other
- Add zoned "Current time" to debug info and include year & timezone in logcat output ([@MajorTanya](https://github.com/MajorTanya)) ([#1672](https://github.com/mihonapp/mihon/pull/1672))
- Add application package ID to debug info ([@MajorTanya](https://github.com/MajorTanya)) ([#1847](https://github.com/mihonapp/mihon/pull/1847))
## [v0.17.1] - 2024-12-06
### Changed
- Bump default user agent ([@AntsyLich](https://github.com/AntsyLich)) ([`76dcf90`](https://github.com/mihonapp/mihon/commit/76dcf903403d565056f44c66d965c1ea8affffc3))
### Improved
- Bangumi search now shows the score and summary of a search result ([@MajorTanya](https://github.com/MajorTanya)) ([#1396](https://github.com/mihonapp/mihon/pull/1396))
- Extension repo URLs are now auto-formatted ([@AntsyLich](https://github.com/AntsyLich), [@MajorTanya](https://github.com/MajorTanya)) ([`22d8aad`](https://github.com/mihonapp/mihon/commit/22d8aad598bea8f00f2831779e45a6645392ca0f))
### Fixed
- Fix "currentTab was used multiple times" ([@AntsyLich](https://github.com/AntsyLich)) ([`371c143`](https://github.com/mihonapp/mihon/commit/371c1432e218f6dcf129f05405dceb2cd351c647))
- Fix a rare crash when invoking "Mark previous as read" action ([@AntsyLich](https://github.com/AntsyLich)) ([`f508d10`](https://github.com/mihonapp/mihon/commit/f508d10ad13560d7316df8642bc93fe66c05b9a8))
- Fix long strip images not loading in some old devices ([@AntsyLich](https://github.com/AntsyLich)) ([`06efc3b`](https://github.com/mihonapp/mihon/commit/06efc3b25c5af51f42448af27a269ee459d9093d))
- Switch to hardware bitmap in reader only if device can handle it ([@AntsyLich](https://github.com/AntsyLich)) ([`e6d96bd`](https://github.com/mihonapp/mihon/commit/e6d96bd348ea5d18a005d6465222ad5f5123103e))
- Add option to lower the threshold for hardware bitmaps ([@AntsyLich](https://github.com/AntsyLich)) ([`dcddac5`](https://github.com/mihonapp/mihon/commit/dcddac5daaff3ec89c8507c35dc13d345ffdb6d7))
- Improve hardware bitmap threshold option ([@AntsyLich](https://github.com/AntsyLich)) ([`d6dfd24`](https://github.com/mihonapp/mihon/commit/d6dfd24548eaa05a8c3e478068fe2e08f2ee4473))
- Always use software bitmap on certain devices ([@MajorTanya](https://github.com/MajorTanya)) ([#1543](https://github.com/mihonapp/mihon/pull/1543))
- Fix crash after removing last category while it's active in library ([@cuong-tran](https://github.com/cuong-tran)) ([#1450](https://github.com/mihonapp/mihon/pull/1450))
- Fix reader transition color scheme in auto background mode ([@cuong-tran](https://github.com/cuong-tran)) ([#1487](https://github.com/mihonapp/mihon/pull/1487))
- Fix app update error notification disappearing ([@cuong-tran](https://github.com/cuong-tran)) ([#1476](https://github.com/mihonapp/mihon/pull/1476))
- Fix browser not opening in some cases in Honor devices ([@AntsyLich](https://github.com/AntsyLich), [@MajorTanya](https://github.com/MajorTanya)) ([#1520](https://github.com/mihonapp/mihon/pull/1520))
## [v0.17.0] - 2024-10-26
### Added
- Option to disable reader zoom out ([@Splintorien](https://github.com/Splintorien)) ([#302](https://github.com/mihonapp/mihon/pull/302))
- Source name and tracker urls to app generated `ComicInfo.xml` file ([@Shamicen](https://github.com/Shamicen)) ([#459](https://github.com/mihonapp/mihon/pull/459))
- Option to migrate in Duplicate entry dialog ([@sirlag](https://github.com/sirlag)) ([#492](https://github.com/mihonapp/mihon/pull/492))
- Upcoming screen to visualize expected update dates ([@sirlag](https://github.com/sirlag)) ([#420](https://github.com/mihonapp/mihon/pull/420))
- Only show upcoming updates in the future ([@sirlag](https://github.com/sirlag)) ([#606](https://github.com/mihonapp/mihon/pull/606))
- Add Quantity Badge to Upcoming Screen ([@Animeboynz](https://github.com/Animeboynz), [@AntsyLich](https://github.com/AntsyLich)) ([#1250](https://github.com/mihonapp/mihon/pull/1250))
- Crash screen error message to the top of the crash log generated from that screen ([@FooIbar](https://github.com/FooIbar)) ([#742](https://github.com/mihonapp/mihon/pull/742))
- Support for 7Zip and RAR5 archives ([@FooIbar](https://github.com/FooIbar)) ([#949](https://github.com/mihonapp/mihon/pull/949))
- Extra configuration options to e-ink page flashes ([@sirlag](https://github.com/sirlag)) ([#625](https://github.com/mihonapp/mihon/pull/625))
- 8-bit+ AVIF image support ([@WerctFourth](https://github.com/WerctFourth)) ([#971](https://github.com/mihonapp/mihon/pull/971))
- Smart update dialog message when no predicted released date exists ([@Animeboynz](https://github.com/Animeboynz)) ([#977](https://github.com/mihonapp/mihon/pull/977))
- Option to copy reader panel to clipboard ([@Animeboynz](https://github.com/Animeboynz)) ([#1003](https://github.com/mihonapp/mihon/pull/1003))
- Copy Tracker URL option to tracker sheet ([@mm12](https://github.com/mm12)) ([#1101](https://github.com/mihonapp/mihon/pull/1101))
- A button to exclude all scanlators in exclude scanlators dialog ([@AntsyLich](https://github.com/AntsyLich)) ([`84b2164`](https://github.com/mihonapp/mihon/commit/84b2164787a795f3fd757c325cbfb6ef660ac3a3))
- Open in browser option to reader menu ([@mm12](https://github.com/mm12)) ([#1110](https://github.com/mihonapp/mihon/pull/1110))
- Reorder reader menu overflow items ([@AntsyLich](https://github.com/AntsyLich)) ([`788235f`](https://github.com/mihonapp/mihon/commit/788235feeca241228eac0561339dd07b5ea0b77d))
- Option to skip downloading duplicate read chapters ([@shabnix](https://github.com/shabnix)) ([#1125](https://github.com/mihonapp/mihon/pull/1125))
- Add confirmation dialog when adding repo via URI ([@Animeboynz](https://github.com/Animeboynz)) ([#1158](https://github.com/mihonapp/mihon/pull/1158))
- Add "show entry" action to download notifications ([@mm12](https://github.com/mm12), [@AntsyLich](https://github.com/AntsyLich)) ([#1159](https://github.com/mihonapp/mihon/pull/1159))
- Option to update trackers when chapter marked as read ([@Animeboynz](https://github.com/Animeboynz), [@AntsyLich](https://github.com/AntsyLich)) ([#1177](https://github.com/mihonapp/mihon/pull/1177), [#1365](https://github.com/mihonapp/mihon/pull/1365), [#1374](https://github.com/mihonapp/mihon/pull/1374))
- Toast to restart app when User-Agent is changed ([@NGB-Was-Taken](https://github.com/NGB-Was-Taken)) ([#1204](https://github.com/mihonapp/mihon/pull/1204))
- Added more profile compilation status (p) ([`c8bb78d`](https://github.com/mihonapp/mihon/commit/c8bb78d91afc2824baaca999f0095559c49d1306))
- Add option to opt out of Analytics and Crashlytics ([@Animeboynz](https://github.com/Animeboynz)) ([#1237](https://github.com/mihonapp/mihon/pull/1237))
- Rework Firebase setup ([@AntsyLich](https://github.com/AntsyLich)) ([`15e3f28`](https://github.com/mihonapp/mihon/commit/15e3f28aa36bec3c31f212c572ab57ce960cc862))
- Added random library sort ([@jackhamilton](https://github.com/jackhamilton)) ([#1317](https://github.com/mihonapp/mihon/pull/1317))
- Make sure random library sort is at the bottom ([@AntsyLich](https://github.com/AntsyLich)) ([`2e2c8d3`](https://github.com/mihonapp/mihon/commit/2e2c8d36c1e23bf274c7c19f1242e14b0c7afbc1))
- Confirmation dialog when removing privately installed extensions ([@Animeboynz](https://github.com/Animeboynz), [@AntsyLich](https://github.com/AntsyLich)) ([#1320](https://github.com/mihonapp/mihon/pull/1320))
- Option to backup non-library read entries ([@Animeboynz](https://github.com/Animeboynz), [@jobobby04](https://github.com/jobobby04), [@AntsyLich](https://github.com/AntsyLich)) ([#1324](https://github.com/mihonapp/mihon/pull/1324))
### Changed
- Read archive files from memory instead of temporarily extracting to internal storage ([@FooIbar](https://github.com/FooIbar)) ([#326](https://github.com/mihonapp/mihon/pull/326))
- Fix dual page split ([@FooIbar](https://github.com/FooIbar)) ([#485](https://github.com/mihonapp/mihon/pull/485))
- Bump default user agent ([@AntsyLich](https://github.com/AntsyLich)) ([`8160b47`](https://github.com/mihonapp/mihon/commit/8160b47ff5fbbd9b32caeb462b5be881fabd3449))
- Wait for sources to be initialized before performing source related tasks ([@jobobby04](https://github.com/jobobby04)) ([`a08e03f`](https://github.com/mihonapp/mihon/commit/a08e03f5cbf3f4e6be1de35f97ef8ebb26a1210e))
- Duplicate entry dialog UI ([@sirlag](https://github.com/sirlag)) ([#492](https://github.com/mihonapp/mihon/pull/492))
- Extension trust system
- Store extension repo details from `repo.json` in database ([@sirlag](https://github.com/sirlag)) ([#506](https://github.com/mihonapp/mihon/pull/506))
- Fix extension repo migration not triggering ([@AntsyLich](https://github.com/AntsyLich)) ([`9672ea8`](https://github.com/mihonapp/mihon/commit/9672ea8b1b06f464800e310c96e060ead182f7ca))
- Refactor the ExtensionRepoService to use DTOs ([@MajorTanya](https://github.com/MajorTanya)) ([#573](https://github.com/mihonapp/mihon/pull/573))
- Fix extension repo name is used to construct URL instead of baseUrl ([@MajorTanya](https://github.com/MajorTanya)) ([#572](https://github.com/mihonapp/mihon/pull/572))
- Fix crash with `TypeReference` issue when creating extension repo ([@AntsyLich](https://github.com/AntsyLich)) ([#574](https://github.com/mihonapp/mihon/pull/574), [`e020ae5`](https://github.com/mihonapp/mihon/commit/e020ae5ed558e80742ef0ad8bfa0f69af0959d5a))
- Fix mishap in [`e020ae5`](https://github.com/mihonapp/mihon/commit/e020ae5ed558e80742ef0ad8bfa0f69af0959d5a) ([@AntsyLich](https://github.com/AntsyLich)) ([`6965e59`](https://github.com/mihonapp/mihon/commit/6965e59a643c67a2bf81b3c69ec70268e5da5797))
- Backup and Restore ([@Animeboynz](https://github.com/Animeboynz)) ([#1057](https://github.com/mihonapp/mihon/pull/1057))
- Trust extension by repo ([@AntsyLich](https://github.com/AntsyLich)) ([#570](https://github.com/mihonapp/mihon/pull/570))
- From M2 ripple to M3 ([@FooIbar](https://github.com/FooIbar)) ([#675](https://github.com/mihonapp/mihon/pull/675))
- Increased continue reading button size ([@AntsyLich](https://github.com/AntsyLich), [@Animeboynz](https://github.com/Animeboynz)) ([`e17f70f`](https://github.com/mihonapp/mihon/commit/e17f70f7226ea031fc1f962c9dfea3e404ba53ad))
- Global search "Has result" choice is now sticky ([@AntsyLich](https://github.com/AntsyLich)) ([`5a61ca5`](https://github.com/mihonapp/mihon/commit/5a61ca5535fe0d9e8e7bcb9e665ba2f9cb0cf649))
- Make category backup/restore not dependant on library backup ([@AntsyLich](https://github.com/AntsyLich)) ([`56fb4f6`](https://github.com/mihonapp/mihon/commit/56fb4f62a152e87a71892aa68c78cac51a2c8596))
- Rename backup restore error log file ([@AntsyLich](https://github.com/AntsyLich)) ([`2858ef8`](https://github.com/mihonapp/mihon/commit/2858ef835fec8d7278b1d0cad1b5664104d1e4b0))
- Keyboard type in add extension repo dialog ([@xbjfk](https://github.com/xbjfk)) ([#764](https://github.com/mihonapp/mihon/pull/764))
- Adjust collapse/open animation on manga description ([@AntsyLich](https://github.com/AntsyLich), [@ivaniskandar](https://github.com/ivaniskandar)) ([`1c16fc7`](https://github.com/mihonapp/mihon/commit/1c16fc79c2ac4c4be30308fed84ffb371dab5902))
- Kitsu domain to `kitsu.app` ([@MajorTanya](https://github.com/MajorTanya)) ([#1106](https://github.com/mihonapp/mihon/pull/1106))
- Respect privacy settings in extension update notification ([@Animeboynz](https://github.com/Animeboynz)) ([#1156](https://github.com/mihonapp/mihon/pull/1156))
- Hide keyboard when a Tracker SearchResultItem is clicked ([@Animeboynz](https://github.com/Animeboynz)) ([#1168](https://github.com/mihonapp/mihon/pull/1168))
- Enable 'Split Tall Images' by default ([@Smol-Ame](https://github.com/Smol-Ame)) ([#1185](https://github.com/mihonapp/mihon/pull/1185))
- Ignore "intent://" urls on webview ([@bapeey](https://github.com/bapeey)) ([#1193](https://github.com/mihonapp/mihon/pull/1193))
- Make reader chapter navigator slightly wider on small screens (p) ([#1202](https://github.com/mihonapp/mihon/pull/1202))
- Re-enable fetching chapters list for entries with licenced status ([@Animeboynz](https://github.com/Animeboynz)) ([#1230](https://github.com/mihonapp/mihon/pull/1230))
- Change casing for Extention Repos String ([@Animeboynz](https://github.com/Animeboynz)) ([#1248](https://github.com/mihonapp/mihon/pull/1248))
- Retain remote last chapter read if it's higher than the local one for EnhancedTracker ([@brewkunz](https://github.com/brewkunz)) ([#1301](https://github.com/mihonapp/mihon/pull/1301))
- Adjust expandable fab animation (p) ([`eb6092b`](https://github.com/mihonapp/mihon/commit/eb6092bd0cfa09694985a8bafdd8bbf2815190a1))
- "Invalidate downloads index" to "Reindex downloads" ([@AntsyLich](https://github.com/AntsyLich)) ([`d2afbfe`](https://github.com/mihonapp/mihon/commit/d2afbfe4ede283076aae40633c79c3f90b4390e7))
### Improved
- Reader performance
- Avoid unnecessary copying when processing reader image ([@FooIbar](https://github.com/FooIbar)) ([#691](https://github.com/mihonapp/mihon/pull/691))
- Significantly improve performance when loading extremely long images in long strip mode ([@FooIbar](https://github.com/FooIbar)) ([#692](https://github.com/mihonapp/mihon/pull/692))
- Use `Bitmap.Config.HARDWARE` if possible to improve image loading speed ([@wwww-wwww](https://github.com/wwww-wwww)) ([#687](https://github.com/mihonapp/mihon/pull/687))
- Improve preloading in long strip mode ([@FooIbar](https://github.com/FooIbar)) ([#1076](https://github.com/mihonapp/mihon/pull/1076))
- Performance when looking up specific files ([@raxod502](https://github.com/raxod502)) ([#728](https://github.com/mihonapp/mihon/pull/728))
- Chapter number parsing ([@Naputt1](https://github.com/Naputt1)) ([`6a80305`](https://github.com/mihonapp/mihon/commit/6a80305d6c572da6c08c0c69f5c25ff26ecf7383))
- Error message on restoring if backup decoding fails ([@vetleledaal](https://github.com/vetleledaal)) ([#1056](https://github.com/mihonapp/mihon/pull/1056))
### Removed
- Legacy download folder names no longer supported ([@AntsyLich](https://github.com/AntsyLich)) ([`e55e5f6`](https://github.com/mihonapp/mihon/commit/e55e5f6f64f872475d370d6ce0c186e2601776e4))
- Remove legacy broken source and history backup ([@AntsyLich](https://github.com/AntsyLich)) ([`518abf0`](https://github.com/mihonapp/mihon/commit/518abf032ccb9bb45d197927be2a5faca4167d29))
- Remove more unnecessary permissions from Firebase dependency ([@AntsyLich](https://github.com/AntsyLich)) ([`02af9b1`](https://github.com/mihonapp/mihon/commit/02af9b1acf9f590d29560bc3fc90d206e8e6e1af))
- Fix mishap in `02af9b1` ([@AntsyLich](https://github.com/AntsyLich)) ([`f22767d`](https://github.com/mihonapp/mihon/commit/f22767d863a0fa001f93f24092cd5ade87350502))
### Fixed
- Extracting `ComicInfo.xml` from local source archives ([@FooIbar](https://github.com/FooIbar)) ([#325](https://github.com/mihonapp/mihon/pull/325))
- Chapter download indicator ([@ivaniskandar](https://github.com/ivaniskandar)) ([`d8b9a9f`](https://github.com/mihonapp/mihon/commit/d8b9a9f593911569ff2bceb49b4f020978d0d2e1))
- Issues with shizuku in a multi user setup ([@Redjard](https://github.com/Redjard)) ([#494](https://github.com/mihonapp/mihon/pull/494))
- Fix reader page image not being decoded until it's visible ([@FooIbar](https://github.com/FooIbar)) ([#563](https://github.com/mihonapp/mihon/pull/563))
- Reader chapter progress slider visuals ([@FooIbar](https://github.com/FooIbar)) ([#674](https://github.com/mihonapp/mihon/pull/674))
- Extension being marked as not installed instead of untrusted after updating with private installer ([@AntsyLich](https://github.com/AntsyLich)) ([`2114514`](https://github.com/mihonapp/mihon/commit/21145144cdf550aa775047603e06e261951ebc42))
- Extension update counter not updating due to extension being marked as untrusted ([@AntsyLich](https://github.com/AntsyLich)) ([`2114514`](https://github.com/mihonapp/mihon/commit/21145144cdf550aa775047603e06e261951ebc42))
- `Key "extension-XXX-YYY" was already used` crash ([@AntsyLich](https://github.com/AntsyLich)) ([`2114514`](https://github.com/mihonapp/mihon/commit/21145144cdf550aa775047603e06e261951ebc42))
- Navigation layout tap zones shifting after zooming out in webtoon readers ([@FooIbar](https://github.com/FooIbar)) ([#767](https://github.com/mihonapp/mihon/pull/767))
- Some extension not loading due to missing classes ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#783](https://github.com/mihonapp/mihon/pull/783))
- Theme colors in accordance to upstream changes ([@CrepeTF](https://github.com/CrepeTF), [@AntsyLich](https://github.com/AntsyLich)) ([#766](https://github.com/mihonapp/mihon/pull/766), [#963](https://github.com/mihonapp/mihon/pull/963), [#976](https://github.com/mihonapp/mihon/pull/976), [9a34ace](https://github.com/mihonapp/mihon/commit/9a34ace09c66274e6c2b3f9446058a0fa99d4bd0))
- Crash when requesting folder access on non-conforming devices ([@mainrs](https://github.com/mainrs)) ([#726](https://github.com/mihonapp/mihon/pull/726))
- Fix unexpected skips in strong skipping mode ([@FooIbar](https://github.com/FooIbar)) ([#940](https://github.com/mihonapp/mihon/pull/940))
- Bugged color for Date/Scanlator in chapter list for read chapters ([@ivaniskandar](https://github.com/ivaniskandar)) ([`15d9992`](https://github.com/mihonapp/mihon/commit/15d999229fcce865001d5fa77d0163e6e80e38db))
- Categories having same `order` after restoring backup ([@Cologler](https://github.com/Cologler)) ([`119bcbf`](https://github.com/mihonapp/mihon/commit/119bcbf8ed2415664922ea77fadf0da1165d1732))
- Filter by "Tracking" temporarily stuck after signing out of tracker ([@AntsyLich](https://github.com/AntsyLich)) ([#987](https://github.com/mihonapp/mihon/pull/987))
- Fix login prompts despite being logged in to trackers in Manga screen ([@AntsyLich](https://github.com/AntsyLich)) ([`cbcd8bd`](https://github.com/mihonapp/mihon/commit/cbcd8bd6682023f728568f2b44da26124618aed7))
- JXL image downloading and loading ([@FooIbar](https://github.com/FooIbar)) ([#993](https://github.com/mihonapp/mihon/pull/993))
- Crash when using `%` in category name ([@Animeboynz](https://github.com/Animeboynz), [@FooIbar](https://github.com/FooIbar)) ([#1030](https://github.com/mihonapp/mihon/pull/1030))
- Fix item disappearing when fast scrolling ([@cuong-tran](https://github.com/cuong-tran)) ([#1035](https://github.com/mihonapp/mihon/pull/1035))
- Library is backed up while being disabled ([@AntsyLich](https://github.com/AntsyLich)) ([`56fb4f6`](https://github.com/mihonapp/mihon/commit/56fb4f62a152e87a71892aa68c78cac51a2c8596))
- Crash on list with only sticky header ([@cuong-tran](https://github.com/cuong-tran)) ([#1083](https://github.com/mihonapp/mihon/pull/1083))
- Crash when trying to clear cookies of some source ([@FooIbar](https://github.com/FooIbar)) ([#1084](https://github.com/mihonapp/mihon/pull/1084))
- MAL search results not showing start dates ([@MajorTanya](https://github.com/MajorTanya)) ([#1098](https://github.com/mihonapp/mihon/pull/1098))
- Android SDK 35 API collision ([@AntsyLich](https://github.com/AntsyLich)) ([`fdb9617`](https://github.com/mihonapp/mihon/commit/fdb96179c6373eb0a8e7d6daea671a315d5ce5f0))
- Manga next update calculation when considering custom fetch interval ([@cuong-tran](https://github.com/cuong-tran)) ([#1206](https://github.com/mihonapp/mihon/pull/1206))
- WheelPicker Manual Input ([@Animeboynz](https://github.com/Animeboynz)) ([#1209](https://github.com/mihonapp/mihon/pull/1209))
- EnhancedTracker not auto binding when adding manga to library ([@brewkunz](https://github.com/brewkunz)) ([#1298](https://github.com/mihonapp/mihon/pull/1298))
- Step count in settings slider ([@abdurisaq](https://github.com/abdurisaq)) ([#1356](https://github.com/mihonapp/mihon/pull/1356))
- Freezing in some screens due to blocking call ([@cuong-tran](https://github.com/cuong-tran)) ([#1364](https://github.com/mihonapp/mihon/pull/1364))
- Crash when removing non-existent tracked entry from tracker ([@cuong-tran](https://github.com/cuong-tran)) ([#1380](https://github.com/mihonapp/mihon/pull/1380))
### Other
- Code cleanup
- Minor refactor of theming when expressions ([@MajorTanya](https://github.com/MajorTanya)) ([#396](https://github.com/mihonapp/mihon/pull/396))
- Inside `WorkerInfoScreen` ([@AntsyLich](https://github.com/AntsyLich)) ([`5aec8f8`](https://github.com/mihonapp/mihon/commit/5aec8f8018236a38106483da08f9cbc28261ac9b))
- Inside `ChapterDownloadIndicator`, `MangaChapterListItem` ([@AntsyLich](https://github.com/AntsyLich)) ([`b7e091d`](https://github.com/mihonapp/mihon/commit/b7e091d5d039e00cababc7daf555280df6cf9c03))
- MangaCoverFetcher ([@ivaniskandar](https://github.com/ivaniskandar)) ([`1365695`](https://github.com/mihonapp/mihon/commit/13656959ae0606736f6ca9eb62699dc23e467c2f))
- Cleanup `LibraryScreenModel` `LibraryMap.applySort` and some more ([@AntsyLich](https://github.com/AntsyLich)) ([`2beb89d`](https://github.com/mihonapp/mihon/commit/2beb89d53163a6d288f8acdebe0f5d26fea8ab3e))
- Address `overridePendingTransition` deprecation ([@MajorTanya](https://github.com/MajorTanya)) ([#410](https://github.com/mihonapp/mihon/pull/410))
- Prioritize extension classes and files over app ([@beer-psi](https://github.com/beer-psi)) ([#433](https://github.com/mihonapp/mihon/pull/433))
- Use compose pager implementation ([@ivaniskandar](https://github.com/ivaniskandar)) ([`84984ef`](https://github.com/mihonapp/mihon/commit/84984ef7e1d7242924120cd2f171cb9dd75bc916))
- Switch to coil3 from coil2 ([@ivaniskandar](https://github.com/ivaniskandar)) ([`f72b6e4`](https://github.com/mihonapp/mihon/commit/f72b6e4d7c1f2f93d705402e4d80c94160bef54d))
- Fix GIF not playing ([@jobobby04](https://github.com/jobobby04)) ([`59bedb3`](https://github.com/mihonapp/mihon/commit/59bedb33ff59ad5db1df2e93567a2266fb63eacc))
- Accommodate db for sync support ([@kaiserbh](https://github.com/kaiserbh)) ([#450](https://github.com/mihonapp/mihon/pull/450))
- Fix webtoon last visible item position calculation ([@FooIbar](https://github.com/FooIbar)) ([#562](https://github.com/mihonapp/mihon/pull/562))
- Migrate from `com.google.accompanist:accompanist-webview` to `io.github.kevinnzou:compose-webview` ([@sirlag](https://github.com/sirlag)) ([#569](https://github.com/mihonapp/mihon/pull/569))
- Rewrite migrations ([@ghostbear](https://github.com/ghostbear)) ([#577](https://github.com/mihonapp/mihon/pull/577))
- Further improve migration ([@ghostbear](https://github.com/ghostbear)) ([#588](https://github.com/mihonapp/mihon/pull/588))
- Fix migrations not running ([@ghostbear](https://github.com/ghostbear)) ([#604](https://github.com/mihonapp/mihon/pull/604))
- Fix MigratorTest after updating to Kotlin 2 ([@cuong-tran](https://github.com/cuong-tran)) ([#896](https://github.com/mihonapp/mihon/pull/896))
- Add MigratorTest to build script ([@cuong-tran](https://github.com/cuong-tran)) ([#896](https://github.com/mihonapp/mihon/pull/896))
- Fix UI freeze after migration ([@AntsyLich](https://github.com/AntsyLich)) ([`3f1d28c`](https://github.com/mihonapp/mihon/commit/3f1d28c3833e6b868152149ed02b3fb8c54eccef))
- Fix some migrations never running ([@MajorTanya](https://github.com/MajorTanya), [@AntsyLich](https://github.com/AntsyLich)) ([#1030](https://github.com/mihonapp/mihon/pull/1030))
- Add ProGuard rule to keep `mihon` namespace classes ([@MajorTanya](https://github.com/MajorTanya)) ([#605](https://github.com/mihonapp/mihon/pull/605))
- Use gradle plugins to share build configuration instead of subprojects ([@AntsyLich](https://github.com/AntsyLich)) ([`e448e40`](https://github.com/mihonapp/mihon/commit/e448e40406e8d9916120a278e42829a6f1b25a7a))
- Remove dependency on compose material 2 components ([@AntsyLich](https://github.com/AntsyLich)) ([`fb94230`](https://github.com/mihonapp/mihon/commit/fb9423028eb017c110cb805f2d0601e5b02e50f9))
- Upload PR build artifacts to GitHub ([@FooIbar](https://github.com/FooIbar)) ([#941](https://github.com/mihonapp/mihon/pull/941))
- Refactor archive support with libarchive ([@FooIbar](https://github.com/FooIbar)) ([#949](https://github.com/mihonapp/mihon/pull/949))
- Add safeguard to prevent ArchiveInputStream from being closed twice ([@null2264](https://github.com/null2264)) ([#967](https://github.com/mihonapp/mihon/pull/967))
- Move archive related code to :core:archive ([@AntsyLich](https://github.com/AntsyLich)) ([`bd7b354`](https://github.com/mihonapp/mihon/commit/bd7b35419861df6d426d6ec0a188391910d0f615))
- Replace detekt with ktlint via spotless ([@AntsyLich](https://github.com/AntsyLich)) ([#1130](https://github.com/mihonapp/mihon/pull/1130), [#1136](https://github.com/mihonapp/mihon/pull/1136), [#1138](https://github.com/mihonapp/mihon/pull/1138))
- Refrain from running spotless on weblate files ([@AntsyLich](https://github.com/AntsyLich)) ([`32d2c2a`](https://github.com/mihonapp/mihon/commit/32d2c2ac1bc224cbda2f09a4023d7d120ea0e954))
- Use feature flags in compose compiler plugin ([@AntsyLich](https://github.com/AntsyLich)) ([`8f9a325`](https://github.com/mihonapp/mihon/commit/8f9a325895bb7b94c2ec92dd969094fc30b3b5e2))
- PagerPageHolder: lazy init loading indicator ([@AntsyLich](https://github.com/AntsyLich), [@ivaniskandar](https://github.com/ivaniskandar)) ([`a45eb5e`](https://github.com/mihonapp/mihon/commit/a45eb5e5288159dbbbbb5f92140ce0dd32a8f3ab))
- Collect MangaScreen state with lifecycle ([@AntsyLich](https://github.com/AntsyLich), [@ivaniskandar](https://github.com/ivaniskandar)) ([`03eb756`](https://github.com/mihonapp/mihon/commit/03eb756ecba0692d88d3a76254afc4c157fa225b))
- Add stable marker to Manga data class ([@AntsyLich](https://github.com/AntsyLich), [@ivaniskandar](https://github.com/ivaniskandar)) ([`03eb756`](https://github.com/mihonapp/mihon/commit/03eb756ecba0692d88d3a76254afc4c157fa225b))
- Use DTOs to parse tracking API responses ([@MajorTanya](https://github.com/MajorTanya)) ([#1103](https://github.com/mihonapp/mihon/pull/1103))
- Fix Kitsu ratingTwenty being typed as String ([@MajorTanya](https://github.com/MajorTanya)) ([#1191](https://github.com/mihonapp/mihon/pull/1191))
- Fix Kitsu `synopsis` nullability ([@MajorTanya](https://github.com/MajorTanya)) ([#1233](https://github.com/mihonapp/mihon/pull/1233))
- Fix AniList `ALSearchItem.status` nullibility ([@Secozzi](https://github.com/Secozzi)) ([#1297](https://github.com/mihonapp/mihon/pull/1297))
- Migrate some classpaths to gradle plugins ([@AntsyLich](https://github.com/AntsyLich)) ([`fc1c804`](https://github.com/mihonapp/mihon/commit/fc1c804bfda1d76c0399bbb6214e75b3def951cc))
- Add crashlytics to standard builds ([@AntsyLich](https://github.com/AntsyLich)) ([`3c611b9`](https://github.com/mihonapp/mihon/commit/3c611b95fb79e5ac972019b76c7b24f46a3087fd))
- Switch to stable compose ([@AntsyLich](https://github.com/AntsyLich)) ([`2baffa6`](https://github.com/mihonapp/mihon/commit/2baffa62cade1abd978d5fd03151b47fc87fd31e))
- Switch from inorichi injekt to kohesive Injekt ([@AntsyLich](https://github.com/AntsyLich)) ([#1205](https://github.com/mihonapp/mihon/pull/1205))
- Use custom injekt register with inorichi patch ([@AntsyLich](https://github.com/AntsyLich)) ([`83fd474`](https://github.com/mihonapp/mihon/commit/83fd4746eda1b99f35292b0c2211e606a421b3eb))
- Use TextFieldState in BasicTextField where applicable (p) ([#1201](https://github.com/mihonapp/mihon/pull/1201))
- Bump NDK version ([@AntsyLich](https://github.com/AntsyLich)) ([#1203](https://github.com/mihonapp/mihon/pull/1203))
- Move firebase permission removal to standard flavor ([@AntsyLich](https://github.com/AntsyLich)) ([`be671b4`](https://github.com/mihonapp/mihon/commit/be671b42cefd70180644e01bb065a18cb7701bf9))
- Adjust distinct checker in WidgetManager and run on default dispatcher (p) ([`9b8ab6a`](https://github.com/mihonapp/mihon/commit/9b8ab6acc25a5f99c9c5eebf9cc250975931c57c))
- Update resources exclusion rules (p) ([`481cfed`](https://github.com/mihonapp/mihon/commit/481cfedf08576cecfbb35616837bd8f627d8f959))
- Bump compile sdk to 35 (p) ([`37419cd`](https://github.com/mihonapp/mihon/commit/37419cdc26c2b5c4f8583fc2ba439b08fab42856))
- ChapterNavigator: dispatch page change only when needed (p) ([`f84d9a0`](https://github.com/mihonapp/mihon/commit/f84d9a08b4af768b1e9920c43cc445c86f5427fc))
- Remove usage of deprecated accompanist SystemUiController ([@AntsyLich](https://github.com/AntsyLich)) ([`2ba3f06`](https://github.com/mihonapp/mihon/commit/2ba3f0612c08c7021fed2f6d96cd538da2f34a13))
- Run PR check when base strings are changed ([@AntsyLich](https://github.com/AntsyLich)) ([`4051f18`](https://github.com/mihonapp/mihon/commit/4051f180a2e36e8a2cde6c55f0bea7952fdc4704))
- Fix PR build check ([@AntsyLich](https://github.com/AntsyLich)) ([`9503082`](https://github.com/mihonapp/mihon/commit/9503082d44b5bd868ee1bfc42741dc978d1d9047))
- Cleanup .gitignore files ([@AntsyLich](https://github.com/AntsyLich)) ([`afa5002`](https://github.com/mihonapp/mihon/commit/afa50029882655af8d5eea40aed7644fce4564d8))
- Pass uncaught exception to default handler in GlobalExceptionHandler (so it's reported to crashlytics) ([@AntsyLich](https://github.com/AntsyLich)) ([`f3a2f56`](https://github.com/mihonapp/mihon/commit/f3a2f566c8a09ab862758ae69b43da2a2cd8f1db))
## [v0.16.5] - 2024-04-09
### Added
- Relative date for up to a week in the future ([@sirlag](https://github.com/sirlag)) ([#415](https://github.com/mihonapp/mihon/pull/415))
- Advance setting to install custom color profiles ([@wwww-wwww](https://github.com/wwww-wwww)) ([#523](https://github.com/mihonapp/mihon/pull/523))
### Changed
- Permanently enable 32-bit color mode ([@wwww-wwww](https://github.com/wwww-wwww)) ([#523](https://github.com/mihonapp/mihon/pull/523))
### Fixed
- Wrong dates in Updates and History tab due to time zone issues ([@sirlag](https://github.com/sirlag)) ([#402](https://github.com/mihonapp/mihon/pull/402))
- Fix extra date header introduced by parent PR ([@sirlag](https://github.com/sirlag)) ([#415](https://github.com/mihonapp/mihon/pull/415))
- Fix build time in about screen displayed in UTC ([@AntsyLich](https://github.com/AntsyLich)) ([`aed53d3`](https://github.com/mihonapp/mihon/commit/aed53d3bdc85ce0e899fbb90b9f9cad0f1b86480))
- App infinitely retries tracker update instead of failing after 3 tries ([@MajorTanya](https://github.com/MajorTanya)) ([#411](https://github.com/mihonapp/mihon/pull/411))
- Crash on Pixel devices (was introduced due to compose update) ([@AntsyLich](https://github.com/AntsyLich)) ([`ab06720`](https://github.com/mihonapp/mihon/commit/ab067209661eceefc04c65f6bdbfcaa8a1264651))
- Crash when opening some heif/heic images ([@az4521](https://github.com/az4521)) ([#466](https://github.com/mihonapp/mihon/pull/466))
- Crash when putting app in background while track date selection dialog is open ([@ivaniskandar](https://github.com/ivaniskandar)) ([`c348fac`](https://github.com/mihonapp/mihon/commit/c348fac78fac479fb123bd617c01c78b9ca851d5))
- Dates for saved images not following the specification (fixes date issue mainly on Samsung devices) ([@MajorTanya](https://github.com/MajorTanya)) ([#552](https://github.com/mihonapp/mihon/pull/552))
- Colors getting distorted when opening CMYK jpeg images ([@wwww-wwww](https://github.com/wwww-wwww)) ([#523](https://github.com/mihonapp/mihon/pull/523))
## [v0.16.4] - 2024-02-27
### Changed
- Don't include custom user agent for MAL (circumvents MAL block) ([@AntsyLich](https://github.com/AntsyLich)) ([`085ad8d`](https://github.com/mihonapp/mihon/commit/085ad8d44637c375a8ed24aba3a6f75f5b0cc9ee))
## [v0.16.3] - 2024-01-30
### Added
- Copy extension debug info when clicking logo or name in the extension details screen ([@MajorTanya](https://github.com/MajorTanya)) ([#271](https://github.com/mihonapp/mihon/pull/271))
### Changed
- Hide display cutoff setting in reader settings sheet if fullscreen is disabled ([@Riztard](https://github.com/Riztard)) ([#241](https://github.com/mihonapp/mihon/pull/241))
- Library update error filename to `mihon_update_errors.txt` from `tachiyomi_update_errors.txt` ([@mjishnu](https://github.com/mjishnu)) ([#253](https://github.com/mihonapp/mihon/pull/253))
### Fixed
- Bottom sheet UI issues on non-tablet devices ([@theolm](https://github.com/theolm)) ([#182](https://github.com/mihonapp/mihon/pull/182))
- Crash when switching screen while a list is scrolling ([@theolm](https://github.com/theolm)) ([#272](https://github.com/mihonapp/mihon/pull/272))
- Newly installed extensions not being recognized by Mihon ([@AwkwardPeak7](https://github.com/AwkwardPeak7)) ([#275](https://github.com/mihonapp/mihon/pull/275))
- Failing to refresh MAL token being inferred as token expiration ([@AntsyLich](https://github.com/AntsyLich)) ([`0f4de03`](https://github.com/mihonapp/mihon/commit/0f4de03d7a77b52490dc9a95e96a308b93b26e4f))
### Other
- Add `detekt` (kotlin code analyzer) to the project ([@theolm](https://github.com/theolm)) ([#216](https://github.com/mihonapp/mihon/pull/216))
## [v0.16.2] - 2024-01-28
### Changed
- Backup now contains scanlator filter of a series ([@jobobby04](https://github.com/jobobby04)) ([#166](https://github.com/mihonapp/mihon/pull/166))
- App icon scaling ([@AntsyLich](https://github.com/AntsyLich)) ([`26815c7`](https://github.com/mihonapp/mihon/commit/26815c7356111394665467c1e81255ac9ee33c1a))
- Tracker OAuth client to Mihon's (fixes login issue for Shikimori tracker) ([@AntsyLich](https://github.com/AntsyLich)) ([`e3f33e2`](https://github.com/mihonapp/mihon/commit/e3f33e24f5e928ac8a85d1f500fd42d4715fc6b5))
- Tracker user agents ([@AntsyLich](https://github.com/AntsyLich), [@kitsumed](https://github.com/kitsumed)) ([`e3f33e2`](https://github.com/mihonapp/mihon/commit/e3f33e24f5e928ac8a85d1f500fd42d4715fc6b5))
- Crash log filename to `mihon_crash_logs.txt` from `tachiyomi_crash_logs.txt` ([@MajorTanya](https://github.com/MajorTanya)) ([#234](https://github.com/mihonapp/mihon/pull/234))
- Don't try to refresh MAL token after refresh token expires ([@AntsyLich](https://github.com/AntsyLich)) ([`32188f9`](https://github.com/mihonapp/mihon/commit/32188f9f65009a18250674ef1bd6e57d351c1fba))
### Fixed
- "Flash screen on page change" making the screen full black ([@AntsyLich](https://github.com/AntsyLich)) ([`38d6ab8`](https://github.com/mihonapp/mihon/commit/38d6ab80ce868707829dbc81de4170afe3c2f2a5))
- Faulty MangaUpdates score in database ([@AntsyLich](https://github.com/AntsyLich)) ([`a024218`](https://github.com/mihonapp/mihon/commit/a024218410953a389b8af4880fa7ae6cc30124a2))
- Updating extension not reflecting correctly ([@AntsyLich](https://github.com/AntsyLich)) ([`cb06898`](https://github.com/mihonapp/mihon/commit/cb068984303f811692531bf6f14902ae118d8ac7))
- Inconsistent button height in "Data and storage" for some languages ([@theolm](https://github.com/theolm)) ([#202](https://github.com/mihonapp/mihon/pull/202))
- Chapter not being marked as read locally when refreshing Enhanced Trackers ([@Secozzi](https://github.com/Secozzi)) ([#219](https://github.com/mihonapp/mihon/pull/219))
### Other
- Make `last_modified_at` field in database be `0` on insert ([@kaiserbh](https://github.com/kaiserbh)) ([#113](https://github.com/mihonapp/mihon/pull/113))
- Remove usage of `.not()` where possible in code ([@AntsyLich](https://github.com/AntsyLich)) ([`3940740`](https://github.com/mihonapp/mihon/commit/39407407f282dbb7fa972b12053c26b3e3bd66d8))
- Use type-safe project accessors ([@theolm](https://github.com/theolm)) ([#194](https://github.com/mihonapp/mihon/pull/194))
- Legacy tracker model properties now has the same type as the domain ones ([@AntsyLich](https://github.com/AntsyLich)) ([#245](https://github.com/mihonapp/mihon/pull/245))
## [v0.16.1] - 2024-01-18
### Changed
- Branding to Mihon (for references we missed) ([@AntsyLich](https://github.com/AntsyLich)) ([`6539406`](https://github.com/mihonapp/mihon/commit/653940613d661eb371aab3b3c3a8181e4e308c43))
- Preview builds are now called Beta builds ([@AntsyLich](https://github.com/AntsyLich)) ([`3c3a1cd`](https://github.com/mihonapp/mihon/commit/3c3a1cd448ab1f653ddd12b2afe0cba38968d1b9))
### Fixed
- App icon not following the [specification](https://developer.android.com/develop/ui/views/launch/icon_design_adaptive) ([@AntsyLich](https://github.com/AntsyLich)) ([`1849715`](https://github.com/mihonapp/mihon/commit/18497154183356bb0d469b27827f9f7d6b7a3130))
- MangaUpdates default score being set to -1.0 ([@AntsyLich](https://github.com/AntsyLich)) ([`99fd273`](https://github.com/mihonapp/mihon/commit/99fd2731f5d9d374700e89fa67d4d5bf611bbafa))
## [v0.16.0] - 2024-01-16
### Changed
- Branding to Mihon ([@AntsyLich](https://github.com/AntsyLich))
- Minimum supported Android version to 8 ([@AntsyLich](https://github.com/AntsyLich)) ([`dfb3091`](https://github.com/mihonapp/mihon/commit/dfb3091e380dda3e9bfb64bf5c9a685cf3a03d0e))
[unreleased]: https://github.com/mihonapp/mihon/compare/v0.19.5...main
[v0.19.4]: https://github.com/mihonapp/mihon/compare/v0.19.4...v0.19.5
[v0.19.4]: https://github.com/mihonapp/mihon/compare/v0.19.3...v0.19.4
[v0.19.3]: https://github.com/mihonapp/mihon/compare/v0.19.2...v0.19.3
[v0.19.2]: https://github.com/mihonapp/mihon/compare/v0.19.1...v0.19.2
[v0.19.1]: https://github.com/mihonapp/mihon/compare/v0.19.0...v0.19.1
[v0.19.0]: https://github.com/mihonapp/mihon/compare/v0.18.0...v0.19.0
[v0.18.0]: https://github.com/mihonapp/mihon/compare/v0.17.1...v0.18.0
[v0.17.1]: https://github.com/mihonapp/mihon/compare/v0.17.0...v0.17.1
[v0.17.0]: https://github.com/mihonapp/mihon/compare/v0.16.5...v0.17.0
[v0.16.5]: https://github.com/mihonapp/mihon/compare/v0.16.4...v0.16.5
[v0.16.4]: https://github.com/mihonapp/mihon/compare/v0.16.3...v0.16.4
[v0.16.3]: https://github.com/mihonapp/mihon/compare/v0.16.2...v0.16.3
[v0.16.2]: https://github.com/mihonapp/mihon/compare/v0.16.1...v0.16.2
[v0.16.1]: https://github.com/mihonapp/mihon/compare/v0.16.0...v0.16.1
[v0.16.0]: https://github.com/mihonapp/mihon/compare/a9c7cbf...v0.16.0
================================================
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 [Mihon Discord server](https://discord.gg/mihon).
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/mihonapp/mihon#issues-feature-requests-and-contributing).
---
Thanks for your interest in contributing to Mihon!
# Code contributions
Pull requests are welcome!
If you're interested in taking on [an open issue](https://github.com/mihonapp/mihon/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/mihon) for online help and to ask questions while developing.
# Translations
Translations are done externally via Weblate. See [our website](https://mihon.app/docs/contribute#translation) for more details.
# Forks
Forks are allowed so long as they abide by [the project's LICENSE](https://github.com/mihonapp/mihon/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/mihonapp/mihon/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/mihonapp/mihon/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/mihonapp/mihon/blob/main/app/src/standard/google-services.json) 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
================================================
<div align="center">
<a href="https://mihon.app">
<img src="./.github/assets/logo.png" alt="Mihon logo" title="Mihon logo" width="80"/>
</a>
# Mihon [App](#)
### Full-featured reader
Discover and read manga, webtoons, comics, and more – easier than ever on your Android device.
[](https://discord.gg/mihon)
[](https://mihon.app/download)
[](https://github.com/mihonapp/mihon/actions/workflows/build_push.yml)
[](/LICENSE)
[](https://hosted.weblate.org/engage/mihon/)
## Download
[](https://mihon.app/download)
[](https://mihon.app/download)
*Requires Android 8.0 or higher.*
## Features
<div align="left">
* Local reading of content.
* A configurable reader with multiple viewers, reading directions and other settings.
* Tracker support: [MyAnimeList](https://myanimelist.net/), [AniList](https://anilist.co/), [Kitsu](https://kitsu.app/), [MangaUpdates](https://mangaupdates.com), [Shikimori](https://shikimori.one), and [Bangumi](https://bgm.tv/) support.
* Categories to organize your library.
* Light and dark themes.
* Schedule updating your library for new chapters.
* Create backups locally to read offline or to your desired cloud service.
* Plus much more...
</div>
## Contributing
[Code of conduct](./CODE_OF_CONDUCT.md) · [Contributing guide](./CONTRIBUTING.md)
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Before reporting a new issue, take a look at the [FAQ](https://mihon.app/docs/faq/general), the [changelog](https://mihon.app/changelogs/) and the already opened [issues](https://github.com/mihonapp/mihon/issues); if you got any questions, join our [Discord server](https://discord.gg/mihon).
### Repositories
[](https://github.com/mihonapp/website/)
[](https://github.com/mihonapp/bitmap.kt/)
### Credits
Thank you to all the people who have contributed!
<a href="https://github.com/mihonapp/mihon/graphs/contributors">
<img src="https://contrib.rocks/image?repo=mihonapp/mihon" alt="Mihon app contributors" title="Mihon app contributors" width="800"/>
</a>
### Disclaimer
The developer(s) of this application does not have any affiliation with the content providers available, and this application hosts zero content.
### License
<pre>
Copyright © 2015 Javier Tomás
Copyright © 2024 Mihon 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.
</pre>
</div>
================================================
FILE: app/build.gradle.kts
================================================
import mihon.buildlogic.Config
import mihon.buildlogic.getBuildTime
import mihon.buildlogic.getCommitCount
import mihon.buildlogic.getGitSha
plugins {
id("mihon.android.application")
id("mihon.android.application.compose")
id("com.github.zellius.shortcut-helper")
kotlin("plugin.serialization")
alias(libs.plugins.aboutLibraries)
}
if (Config.includeTelemetry) {
pluginManager.apply {
apply(libs.plugins.google.services.get().pluginId)
apply(libs.plugins.firebase.crashlytics.get().pluginId)
}
}
shortcutHelper.setFilePath("./shortcuts.xml")
android {
namespace = "eu.kanade.tachiyomi"
defaultConfig {
applicationId = "app.mihon"
versionCode = 19
versionName = "0.19.5"
buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")
buildConfigField("String", "BUILD_TIME", "\"${getBuildTime(useLastCommitTime = false)}\"")
buildConfigField("boolean", "TELEMETRY_INCLUDED", "${Config.includeTelemetry}")
buildConfigField("boolean", "UPDATER_ENABLED", "${Config.enableUpdater}")
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
val debug by getting {
applicationIdSuffix = ".dev"
versionNameSuffix = "-${getCommitCount()}"
isPseudoLocalesEnabled = true
}
val release by getting {
isMinifyEnabled = Config.enableCodeShrink
isShrinkResources = Config.enableCodeShrink
proguardFiles("proguard-android-optimize.txt", "proguard-rules.pro")
buildConfigField("String", "BUILD_TIME", "\"${getBuildTime(useLastCommitTime = true)}\"")
}
val commonMatchingFallbacks = listOf(release.name)
create("foss") {
initWith(release)
applicationIdSuffix = ".foss"
matchingFallbacks.addAll(commonMatchingFallbacks)
}
create("preview") {
initWith(release)
applicationIdSuffix = ".debug"
versionNameSuffix = debug.versionNameSuffix
signingConfig = debug.signingConfig
matchingFallbacks.addAll(commonMatchingFallbacks)
buildConfigField("String", "BUILD_TIME", "\"${getBuildTime(useLastCommitTime = false)}\"")
}
create("benchmark") {
initWith(release)
isDebuggable = false
isProfileable = true
versionNameSuffix = "-benchmark"
applicationIdSuffix = ".benchmark"
signingConfig = debug.signingConfig
matchingFallbacks.addAll(commonMatchingFallbacks)
}
}
sourceSets {
getByName("preview").res.srcDirs("src/debug/res")
getByName("benchmark").res.srcDirs("src/debug/res")
}
splits {
abi {
isEnable = true
isUniversalApk = true
reset()
include("armeabi-v7a", "arm64-v8a", "x86", "x86_64")
}
}
packaging {
jniLibs {
keepDebugSymbols += listOf(
"libandroidx.graphics.path",
"libarchive-jni",
"libconscrypt_jni",
"libimagedecoder",
"libquickjs",
"libsqlite3x",
)
.map { "**/$it.so" }
}
resources {
excludes += setOf(
"kotlin-tooling-metadata.json",
"LICENSE.txt",
"META-INF/**/*.properties",
"META-INF/**/LICENSE.txt",
"META-INF/*.properties",
"META-INF/*.version",
"META-INF/DEPENDENCIES",
"META-INF/LICENSE",
"META-INF/NOTICE",
"META-INF/README.md",
)
}
}
dependenciesInfo {
includeInApk = Config.includeDependencyInfo
includeInBundle = Config.includeDependencyInfo
}
buildFeatures {
viewBinding = true
buildConfig = true
aidl = true
// Disable some unused things
renderScript = false
shaders = false
}
lint {
abortOnError = false
checkReleaseBuilds = false
}
}
kotlin {
compilerOptions {
freeCompilerArgs.addAll(
"-opt-in=androidx.compose.animation.ExperimentalAnimationApi",
"-opt-in=androidx.compose.animation.graphics.ExperimentalAnimationGraphicsApi",
"-opt-in=androidx.compose.foundation.ExperimentalFoundationApi",
"-opt-in=androidx.compose.foundation.layout.ExperimentalLayoutApi",
"-opt-in=androidx.compose.material3.ExperimentalMaterial3Api",
"-opt-in=androidx.compose.material3.ExperimentalMaterial3ExpressiveApi",
"-opt-in=androidx.compose.ui.ExperimentalComposeUiApi",
"-opt-in=coil3.annotation.ExperimentalCoilApi",
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
"-opt-in=kotlinx.coroutines.FlowPreview",
"-opt-in=kotlinx.coroutines.InternalCoroutinesApi",
"-opt-in=kotlinx.serialization.ExperimentalSerializationApi",
"-Xannotation-default-target=param-property",
)
}
}
dependencies {
implementation(projects.i18n)
implementation(projects.core.archive)
implementation(projects.core.common)
implementation(projects.coreMetadata)
implementation(projects.sourceApi)
implementation(projects.sourceLocal)
implementation(projects.data)
implementation(projects.domain)
implementation(projects.presentationCore)
implementation(projects.presentationWidget)
implementation(projects.telemetry)
// Compose
implementation(compose.activity)
implementation(compose.foundation)
implementation(compose.material3.core)
implementation(compose.material.icons)
implementation(compose.animation)
implementation(compose.animation.graphics)
debugImplementation(compose.ui.tooling)
implementation(compose.ui.tooling.preview)
implementation(compose.ui.util)
implementation(androidx.interpolator)
implementation(androidx.paging.runtime)
implementation(androidx.paging.compose)
implementation(androidx.sqlite.bundled)
implementation(kotlinx.reflect)
implementation(kotlinx.immutables)
implementation(platform(kotlinx.coroutines.bom))
implementation(kotlinx.bundles.coroutines)
// AndroidX libraries
implementation(androidx.annotation)
implementation(androidx.appcompat)
implementation(androidx.biometricktx)
implementation(androidx.constraintlayout)
implementation(androidx.corektx)
implementation(androidx.splashscreen)
implementation(androidx.recyclerview)
implementation(androidx.viewpager)
implementation(androidx.profileinstaller)
implementation(androidx.bundles.lifecycle)
// Job scheduling
implementation(androidx.workmanager)
// RxJava
implementation(libs.rxjava)
// Networking
implementation(libs.bundles.okhttp)
implementation(libs.okio)
implementation(libs.conscrypt.android) // TLS 1.3 support for Android < 10
// Data serialization (JSON, protobuf, xml)
implementation(kotlinx.bundles.serialization)
// HTML parser
implementation(libs.jsoup)
// Disk
implementation(libs.disklrucache)
implementation(libs.unifile)
// Preferences
implementation(libs.preferencektx)
// Dependency injection
implementation(libs.injekt)
// Image loading
implementation(platform(libs.coil.bom))
implementation(libs.bundles.coil)
implementation(libs.subsamplingscaleimageview) {
exclude(module = "image-decoder")
}
implementation(libs.image.decoder)
// UI libraries
implementation(libs.material)
implementation(libs.flexible.adapter.core)
implementation(libs.photoview)
implementation(libs.directionalviewpager) {
exclude(group = "androidx.viewpager", module = "viewpager")
}
implementation(libs.richeditor.compose)
implementation(libs.aboutLibraries.compose)
implementation(libs.bundles.voyager)
implementation(libs.compose.materialmotion)
implementation(libs.swipe)
implementation(libs.compose.webview)
implementation(libs.compose.grid)
implementation(libs.reorderable)
implementation(libs.bundles.markdown)
implementation(libs.materialKolor)
// Logging
implementation(libs.logcat)
// Shizuku
implementation(libs.bundles.shizuku)
// String similarity
implementation(libs.stringSimilarity)
// Tests
testImplementation(libs.bundles.test)
testRuntimeOnly(libs.junit.platform.launcher)
// For detecting memory leaks; see https://square.github.io/leakcanary/
// debugImplementation(libs.leakcanary.android)
implementation(libs.leakcanary.plumber)
testImplementation(kotlinx.coroutines.test)
}
androidComponents {
onVariants(selector().withFlavor("default" to "standard")) {
// Only excluding in standard flavor because this breaks
// Layout Inspector's Compose tree
it.packaging.resources.excludes.add("META-INF/*.version")
}
}
buildscript {
dependencies {
classpath(kotlinx.gradle)
}
}
================================================
FILE: app/google-services.json
================================================
{
"project_info": {
"project_number": "82031285239",
"project_id": "mihonapp",
"storage_bucket": "mihonapp.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:82031285239:android:336ed6dceef55c357594f2",
"android_client_info": {
"package_name": "app.mihon"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyDTvOxBQnuXADx5isKxoynPG0nlAO8bQbk"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
},
{
"client_info": {
"mobilesdk_app_id": "1:82031285239:android:b7440cbdd0d33c9d7594f2",
"android_client_info": {
"package_name": "app.mihon.debug"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyDTvOxBQnuXADx5isKxoynPG0nlAO8bQbk"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}
================================================
FILE: app/proguard-android-optimize.txt
================================================
-dontusemixedcaseclassnames
-ignorewarnings
-verbose
-keepattributes *Annotation*
-keepclasseswithmembernames,includedescriptorclasses class * {
native <methods>;
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class * implements android.os.Parcelable {
public static final ** CREATOR;
}
-keep class androidx.annotation.Keep
-keep @androidx.annotation.Keep class * {*;}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <init>(...);
}
================================================
FILE: app/proguard-rules.pro
================================================
-dontobfuscate
-keep,allowoptimization class eu.kanade.**
-keep,allowoptimization class tachiyomi.**
-keep,allowoptimization class mihon.**
# Keep common dependencies used in extensions
-keep,allowoptimization class androidx.preference.** { public protected *; }
-keep,allowoptimization class kotlin.** { public protected *; }
-keep,allowoptimization class kotlinx.coroutines.** { public protected *; }
-keep,allowoptimization class kotlinx.serialization.** { public protected *; }
-keep,allowoptimization class kotlin.time.** { public protected *; }
-keep,allowoptimization class okhttp3.** { public protected *; }
-keep,allowoptimization class okio.** { public protected *; }
-keep,allowoptimization class org.jsoup.** { public protected *; }
-keep,allowoptimization class rx.** { public protected *; }
-keep,allowoptimization class app.cash.quickjs.** { public protected *; }
-keep,allowoptimization class uy.kohesive.injekt.** { public protected *; }
# From extensions-lib
-keep,allowoptimization class eu.kanade.tachiyomi.network.interceptor.RateLimitInterceptorKt { public protected *; }
-keep,allowoptimization class eu.kanade.tachiyomi.network.interceptor.SpecificHostRateLimitInterceptorKt { public protected *; }
-keep,allowoptimization class eu.kanade.tachiyomi.network.NetworkHelper { public protected *; }
-keep,allowoptimization class eu.kanade.tachiyomi.network.OkHttpExtensionsKt { public protected *; }
-keep,allowoptimization class eu.kanade.tachiyomi.network.RequestsKt { public protected *; }
-keep,allowoptimization class eu.kanade.tachiyomi.AppInfo { public protected *; }
##---------------Begin: proguard configuration for RxJava 1.x ----------
-dontwarn sun.misc.**
-keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* {
long producerIndex;
long consumerIndex;
}
-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef {
rx.internal.util.atomic.LinkedQueueNode producerNode;
}
-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueConsumerNodeRef {
rx.internal.util.atomic.LinkedQueueNode consumerNode;
}
-dontnote rx.internal.util.PlatformDependent
##---------------End: proguard configuration for RxJava 1.x ----------
##---------------Begin: proguard configuration for okhttp ----------
-keepclasseswithmembers class okhttp3.MultipartBody$Builder { *; }
##---------------End: proguard configuration for okhttp ----------
##---------------Begin: proguard configuration for kotlinx.serialization ----------
-keepattributes *Annotation*, InnerClasses
-dontnote kotlinx.serialization.** # core serialization annotations
# kotlinx-serialization-json specific. Add this if you have java.lang.NoClassDefFoundError kotlinx.serialization.json.JsonObjectSerializer
-keepclassmembers class kotlinx.serialization.json.** {
*** Companion;
}
-keepclasseswithmembers class kotlinx.serialization.json.** {
kotlinx.serialization.KSerializer serializer(...);
}
-keep,includedescriptorclasses class eu.kanade.**$$serializer { *; }
-keepclassmembers class eu.kanade.** {
*** Companion;
}
-keepclasseswithmembers class eu.kanade.** {
kotlinx.serialization.KSerializer serializer(...);
}
-keep class kotlinx.serialization.**
-keepclassmembers class kotlinx.serialization.** {
<methods>;
}
##---------------End: proguard configuration for kotlinx.serialization ----------
# XmlUtil
-keep public enum nl.adaptivity.xmlutil.EventType { *; }
# Firebase
-keep class com.google.firebase.installations.** { *; }
-keep interface com.google.firebase.installations.** { *; }
================================================
FILE: app/shortcuts.xml
================================================
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:enabled="true"
android:icon="@drawable/sc_collections_bookmark_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
android:shortcutId="show_library"
android:shortcutLongLabel="@string/label_library"
android:shortcutShortLabel="@string/label_library">
<intent
android:action="eu.kanade.tachiyomi.SHOW_LIBRARY"
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
<shortcut
android:enabled="true"
android:icon="@drawable/sc_new_releases_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
android:shortcutId="show_recently_updated"
android:shortcutLongLabel="@string/label_recent_updates"
android:shortcutShortLabel="@string/label_recent_updates">
<intent
android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_UPDATED"
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
<shortcut
android:enabled="true"
android:icon="@drawable/sc_history_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
android:shortcutId="show_recently_read"
android:shortcutLongLabel="@string/label_recent_manga"
android:shortcutShortLabel="@string/label_recent_manga">
<intent
android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_READ"
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
<shortcut
android:enabled="true"
android:icon="@drawable/sc_explore_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
android:shortcutId="show_catalogues"
android:shortcutLongLabel="@string/browse"
android:shortcutShortLabel="@string/browse">
<intent
android:action="eu.kanade.tachiyomi.SHOW_CATALOGUES"
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
</shortcuts>
================================================
FILE: app/src/debug/res/drawable/ic_launcher_background.xml
================================================
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="432"
android:viewportHeight="432">
<group>
<clip-path
android:pathData="M0,0h432v432h-432z"/>
<path
android:pathData="M0,0h432v432h-432z"
android:fillColor="#FAFAFA"/>
<path
android:pathData="M0,0h432v432h-432z"
android:fillColor="#2E3943"/>
<path
android:pathData="M322.13,215.5C322.13,272.66 274.64,319 216.07,319C157.49,319 110,272.66 110,215.5C110,158.34 157.49,112 216.07,112C274.64,112 322.13,158.34 322.13,215.5Z"
android:fillColor="#F2FAFF"/>
<path
android:pathData="M216.07,299.59C263.66,299.59 302.24,261.94 302.24,215.5C302.24,169.06 263.66,131.41 216.07,131.41C168.47,131.41 129.89,169.06 129.89,215.5C129.89,261.94 168.47,299.59 216.07,299.59ZM216.07,319C274.64,319 322.13,272.66 322.13,215.5C322.13,158.34 274.64,112 216.07,112C157.49,112 110,158.34 110,215.5C110,272.66 157.49,319 216.07,319Z"
android:fillColor="#7EBBED"
android:fillType="evenOdd"/>
</group>
</vector>
================================================
FILE: app/src/debug/res/drawable/ic_launcher_foreground.xml
================================================
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="432"
android:viewportHeight="432">
<path
android:pathData="M182.03,188.7L181.33,172.69C183.42,173.09 185.91,173.19 191.57,173.19C198.44,173.19 207.49,172.79 212.16,172.19C214.15,171.99 214.95,171.7 216.24,171L226.98,180.15C225.98,181.54 225.68,182.14 224.59,184.92C223.7,187.11 219.62,199.74 218.03,205.11C225.39,206.6 229.46,207.7 235.03,209.98C235.73,205.11 235.83,202.52 235.83,193.67C235.83,191.39 235.73,190.09 235.43,188.01L252.74,188.6C252.24,190.99 252.14,191.98 252.04,195.86C251.64,205.21 251.24,209.68 250.25,216.45C257.11,219.93 257.11,219.93 260.59,221.82C262.38,222.81 262.78,223.01 263.97,223.41L258.2,242.01C255.42,239.52 251.54,236.83 245.87,233.65C240.9,245.49 232.65,254.14 220.12,261C215.94,255.43 212.76,252.05 207.68,248.07C215.04,244.59 218.43,242.4 222.3,238.72C226.08,235.04 228.57,231.46 230.96,226.09C224.59,223.21 220.51,221.92 213.45,220.43C209.38,232.56 206.09,240.32 203.21,244.99C199.33,251.25 194.06,254.54 187.99,254.54C183.32,254.54 178.55,252.45 175.07,248.87C171.09,244.79 169,239.12 169,232.56C169,222.81 173.67,214.36 181.83,209.09C187.1,205.71 192.67,204.21 201.52,203.72C203.31,197.85 204.8,192.78 206.19,187.11C201.82,187.51 196.35,187.81 189.68,188.1C186.1,188.2 184.91,188.3 182.03,188.7ZM197.14,218.93C192.47,219.73 189.68,221.22 187.2,224.4C185.31,226.59 184.41,229.18 184.41,231.96C184.41,235.04 185.91,237.33 187.8,237.33C190.08,237.33 192.67,232.16 197.14,218.93Z"
android:fillColor="#031019"/>
</vector>
================================================
FILE: app/src/main/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<!-- Internet -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<!-- Storage -->
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage" />
<!-- For background jobs -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
<!-- For managing extensions -->
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
<uses-permission android:name="android.permission.UPDATE_PACKAGES_WITHOUT_USER_ACTION" />
<!-- To view extension packages in API 30+ -->
<uses-permission
android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission
android:name="android.permission.READ_APP_SPECIFIC_LOCALES"
tools:ignore="ProtectedPermissions" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
<application
android:name=".App"
android:allowBackup="false"
android:enableOnBackInvokedCallback="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:localeConfig="@xml/locales_config"
android:networkSecurityConfig="@xml/network_security_config"
android:preserveLegacyExternalStorage="true"
android:requestLegacyExternalStorage="true"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/Theme.Tachiyomi">
<activity
android:name=".ui.main.MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/Theme.Tachiyomi.SplashScreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- Deep link to add repos -->
<intent-filter android:label="@string/action_add_repo">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="tachiyomi" />
<data android:host="add-repo" />
</intent-filter>
<!-- Open backup files -->
<intent-filter android:label="@string/pref_restore_backup">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" />
<data android:scheme="content" />
<data android:host="*" />
<data android:mimeType="*/*" />
<!--
Work around Android's ugly primitive PatternMatcher
implementation that can't cope with finding a . early in
the path unless it's explicitly matched.
See https://stackoverflow.com/a/31028507
-->
<data android:pathPattern=".*\\.tachibk" />
<data android:pathPattern=".*\\..*\\.tachibk" />
<data android:pathPattern=".*\\..*\\..*\\.tachibk" />
<data android:pathPattern=".*\\..*\\..*\\..*\\.tachibk" />
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.tachibk" />
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.tachibk" />
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\.tachibk" />
</intent-filter>
<!--suppress AndroidDomInspection -->
<meta-data
android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
</activity>
<activity
android:name=".crash.CrashActivity"
android:exported="false"
android:process=":error_handler" />
<activity
android:name=".ui.deeplink.DeepLinkActivity"
android:exported="true"
android:label="@string/action_search"
android:launchMode="singleTask"
android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<action android:name="com.google.android.gms.actions.SEARCH_ACTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="eu.kanade.tachiyomi.SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<activity
android:name=".ui.reader.ReaderActivity"
android:exported="false"
android:launchMode="singleTask">
<intent-filter>
<action android:name="com.samsung.android.support.REMOTE_ACTION" />
</intent-filter>
<meta-data
android:name="com.samsung.android.support.REMOTE_ACTION"
android:resource="@xml/s_pen_actions" />
</activity>
<activity
android:name=".ui.security.UnlockActivity"
android:exported="false"
android:theme="@style/Theme.Tachiyomi" />
<activity
android:name=".ui.webview.WebViewActivity"
android:configChanges="uiMode|orientation|screenSize"
android:exported="false" />
<activity
android:name=".extension.util.ExtensionInstallActivity"
android:exported="false"
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
<activity
android:name=".ui.setting.track.TrackLoginActivity"
android:exported="true"
android:label="@string/track_activity_name">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="mihon" />
<data android:host="anilist-auth" />
<data android:host="bangumi-auth" />
<data android:host="myanimelist-auth" />
<data android:host="shikimori-auth" />
</intent-filter>
</activity>
<receiver
android:name=".data.notification.NotificationReceiver"
android:exported="false" />
<service
android:name=".extension.util.ExtensionInstallService"
android:exported="false"
android:foregroundServiceType="shortService" />
<service
android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
android:enabled="false"
android:exported="false">
<meta-data
android:name="autoStoreLocales"
android:value="true" />
</service>
<service
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:foregroundServiceType="dataSync"
tools:node="merge" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
<provider
android:name="rikka.shizuku.ShizukuProvider"
android:authorities="${applicationId}.shizuku"
android:enabled="true"
android:exported="true"
android:multiprocess="false"
android:permission="android.permission.INTERACT_ACROSS_USERS_FULL" />
<meta-data
android:name="android.webkit.WebView.EnableSafeBrowsing"
android:value="false" />
<meta-data
android:name="android.webkit.WebView.MetricsOptOut"
android:value="true" />
</application>
</manifest>
================================================
FILE: app/src/main/aidl/mihon/app/shizuku/IShellInterface.aidl
================================================
package mihon.app.shizuku;
interface IShellInterface {
void install(in AssetFileDescriptor apk) = 1;
void destroy() = 16777114;
}
================================================
FILE: app/src/main/baseline-prof.txt
================================================
Landroidx/activity/Cancellable;
Landroidx/activity/ComponentActivity;
PLandroidx/activity/ComponentActivity;->$r8$lambda$OnwlVMZzrLePIRy-6IUDTtLLUV0(Landroidx/activity/ComponentActivity;)Landroid/os/Bundle;
HSPLandroidx/activity/ComponentActivity;->$r8$lambda$h2i_RK2mddCIbAsGubaI4eL8_cU(Landroidx/activity/ComponentActivity;)V
PLandroidx/activity/ComponentActivity;->$r8$lambda$h2i_RK2mddCIbAsGubaI4eL8_cU(Landroidx/activity/ComponentActivity;)V
HSPLandroidx/activity/ComponentActivity;-><init>()V
HPLandroidx/activity/ComponentActivity;-><init>()V
HSPLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
PLandroidx/activity/ComponentActivity;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
HSPLandroidx/activity/ComponentActivity;->addOnNewIntentListener(Leu/kanade/tachiyomi/ui/main/MainActivity$HandleOnNewIntent$1$1$$ExternalSyntheticLambda0;)V
PLandroidx/activity/ComponentActivity;->addOnNewIntentListener(Leu/kanade/tachiyomi/ui/main/MainActivity$HandleOnNewIntent$1$1$$ExternalSyntheticLambda0;)V
HSPLandroidx/activity/ComponentActivity;->ensureViewModelStore()V
PLandroidx/activity/ComponentActivity;->ensureViewModelStore()V
HSPLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry;
PLandroidx/activity/ComponentActivity;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry;
HSPLandroidx/activity/ComponentActivity;->getDefaultViewModelCreationExtras()Landroidx/lifecycle/viewmodel/CreationExtras;
PLandroidx/activity/ComponentActivity;->getDefaultViewModelCreationExtras()Landroidx/lifecycle/viewmodel/CreationExtras;
HSPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle;
HPLandroidx/activity/ComponentActivity;->getLifecycle()Landroidx/lifecycle/Lifecycle;
HSPLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
PLandroidx/activity/ComponentActivity;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
HSPLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
PLandroidx/activity/ComponentActivity;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
HSPLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
PLandroidx/activity/ComponentActivity;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
HSPLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V
PLandroidx/activity/ComponentActivity;->onCreate(Landroid/os/Bundle;)V
PLandroidx/activity/ComponentActivity;->onSaveInstanceState(Landroid/os/Bundle;)V
PLandroidx/activity/ComponentActivity;->onTrimMemory(I)V
PLandroidx/activity/ComponentActivity;->removeOnNewIntentListener(Landroidx/core/util/Consumer;)V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;-><init>(Landroidx/fragment/app/FragmentActivity;)V
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda1;->saveState()Landroid/os/Bundle;
Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;-><init>(Landroidx/fragment/app/FragmentActivity;)V
HSPLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->onContextAvailable(Landroid/content/Context;)V
PLandroidx/activity/ComponentActivity$$ExternalSyntheticLambda2;->onContextAvailable(Landroid/content/Context;)V
Landroidx/activity/ComponentActivity$1;
HSPLandroidx/activity/ComponentActivity$1;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$1;-><init>(Landroidx/fragment/app/FragmentActivity;)V
Landroidx/activity/ComponentActivity$2;
HSPLandroidx/activity/ComponentActivity$2;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$2;-><init>(Landroidx/fragment/app/FragmentActivity;)V
Landroidx/activity/ComponentActivity$3;
HSPLandroidx/activity/ComponentActivity$3;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$3;-><init>(Landroidx/fragment/app/FragmentActivity;)V
HSPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
HPLandroidx/activity/ComponentActivity$3;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$4;
HSPLandroidx/activity/ComponentActivity$4;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$4;-><init>(Landroidx/fragment/app/FragmentActivity;)V
HSPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
HPLandroidx/activity/ComponentActivity$4;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$5;
HSPLandroidx/activity/ComponentActivity$5;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$5;-><init>(Landroidx/fragment/app/FragmentActivity;)V
HSPLandroidx/activity/ComponentActivity$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
PLandroidx/activity/ComponentActivity$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/ComponentActivity$NonConfigurationInstances;
Landroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;
HSPLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;-><init>(Landroidx/fragment/app/FragmentActivity;)V
PLandroidx/activity/ComponentActivity$ReportFullyDrawnExecutorApi16Impl;-><init>(Landroidx/fragment/app/FragmentActivity;)V
Landroidx/activity/ComponentDialog$$ExternalSyntheticLambda0;
HSPLandroidx/activity/ComponentDialog$$ExternalSyntheticLambda0;-><init>(Ljava/lang/Object;I)V
PLandroidx/activity/ComponentDialog$$ExternalSyntheticLambda0;-><init>(Ljava/lang/Object;I)V
Landroidx/activity/FullyDrawnReporter;
HSPLandroidx/activity/FullyDrawnReporter;-><init>(Ljava/util/concurrent/Executor;Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;)V
PLandroidx/activity/FullyDrawnReporter;-><init>(Ljava/util/concurrent/Executor;Landroidx/activity/ComponentActivity$$ExternalSyntheticLambda0;)V
Landroidx/activity/OnBackPressedCallback;
HSPLandroidx/activity/OnBackPressedCallback;-><init>(Z)V
PLandroidx/activity/OnBackPressedCallback;-><init>(Z)V
HSPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V
HPLandroidx/activity/OnBackPressedCallback;->addCancellable(Landroidx/activity/Cancellable;)V
HSPLandroidx/activity/OnBackPressedCallback;->remove()V
HPLandroidx/activity/OnBackPressedCallback;->remove()V
HSPLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V
HPLandroidx/activity/OnBackPressedCallback;->removeCancellable(Landroidx/activity/Cancellable;)V
HSPLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V
PLandroidx/activity/OnBackPressedCallback;->setEnabled(Z)V
Landroidx/activity/OnBackPressedDispatcher;
HSPLandroidx/activity/OnBackPressedDispatcher;-><init>(Ljava/lang/Runnable;)V
PLandroidx/activity/OnBackPressedDispatcher;-><init>(Ljava/lang/Runnable;)V
HSPLandroidx/activity/OnBackPressedDispatcher;->access$getOnBackPressedCallbacks$p(Landroidx/activity/OnBackPressedDispatcher;)Lkotlin/collections/ArrayDeque;
PLandroidx/activity/OnBackPressedDispatcher;->access$getOnBackPressedCallbacks$p(Landroidx/activity/OnBackPressedDispatcher;)Lkotlin/collections/ArrayDeque;
HSPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V
HPLandroidx/activity/OnBackPressedDispatcher;->addCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/OnBackPressedCallback;)V
HSPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback$activity_release(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable;
HPLandroidx/activity/OnBackPressedDispatcher;->addCancellableCallback$activity_release(Landroidx/activity/OnBackPressedCallback;)Landroidx/activity/Cancellable;
Landroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;
HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V
HPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/Lifecycle;Landroidx/activity/OnBackPressedCallback;)V
HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V
PLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->cancel()V
HSPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
HPLandroidx/activity/OnBackPressedDispatcher$LifecycleOnBackPressedCancellable;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
Landroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;
HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V
HPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/activity/OnBackPressedCallback;)V
HSPLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V
PLandroidx/activity/OnBackPressedDispatcher$OnBackPressedCancellable;->cancel()V
Landroidx/activity/OnBackPressedDispatcherKt;
HSPLandroidx/activity/OnBackPressedDispatcherKt;->get(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
PLandroidx/activity/OnBackPressedDispatcherKt;->get(Landroid/view/View;)Landroidx/activity/OnBackPressedDispatcherOwner;
Landroidx/activity/OnBackPressedDispatcherOwner;
Landroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;-><clinit>()V
PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;-><clinit>()V
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;-><init>(I)V
PLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;-><init>(I)V
HSPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/activity/ViewTreeOnBackPressedDispatcherOwner$findViewTreeOnBackPressedDispatcherOwner$1;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/activity/compose/BackHandlerKt;
HSPLandroidx/activity/compose/BackHandlerKt;->BackHandler(ZLkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;II)V
HPLandroidx/activity/compose/BackHandlerKt;->BackHandler(ZLkotlin/jvm/functions/Function0;Landroidx/compose/runtime/Composer;II)V
Landroidx/activity/compose/BackHandlerKt$BackHandler$1$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;-><init>(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;Z)V
PLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;-><init>(Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;Z)V
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()Ljava/lang/Object;
HPLandroidx/activity/compose/BackHandlerKt$BackHandler$1$1;->invoke()Ljava/lang/Object;
Landroidx/activity/compose/BackHandlerKt$BackHandler$2;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
PLandroidx/activity/compose/BackHandlerKt$BackHandler$2;-><init>(Landroidx/activity/OnBackPressedDispatcher;Landroidx/lifecycle/LifecycleOwner;Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;)V
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/activity/compose/BackHandlerKt$BackHandler$2;->invoke(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;-><init>(Ljava/lang/Object;I)V
PLandroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;-><init>(Ljava/lang/Object;I)V
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;->dispose()V
PLandroidx/activity/compose/BackHandlerKt$BackHandler$2$invoke$$inlined$onDispose$1;->dispose()V
Landroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;
HSPLandroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;-><init>(ZLandroidx/compose/runtime/MutableState;)V
PLandroidx/activity/compose/BackHandlerKt$BackHandler$backCallback$1$1;-><init>(ZLandroidx/compose/runtime/MutableState;)V
Landroidx/activity/compose/ComponentActivityKt;
HSPLandroidx/activity/compose/ComponentActivityKt;-><clinit>()V
PLandroidx/activity/compose/ComponentActivityKt;-><clinit>()V
HSPLandroidx/activity/compose/ComponentActivityKt;->setContent(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/internal/ComposableLambdaImpl;)V
PLandroidx/activity/compose/ComponentActivityKt;->setContent(Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/internal/ComposableLambdaImpl;)V
Landroidx/activity/compose/LocalActivityResultRegistryOwner$LocalComposition$1;
HSPLandroidx/activity/compose/LocalActivityResultRegistryOwner$LocalComposition$1;-><clinit>()V
PLandroidx/activity/compose/LocalActivityResultRegistryOwner$LocalComposition$1;-><clinit>()V
HSPLandroidx/activity/compose/LocalActivityResultRegistryOwner$LocalComposition$1;-><init>(I)V
PLandroidx/activity/compose/LocalActivityResultRegistryOwner$LocalComposition$1;-><init>(I)V
HSPLandroidx/activity/compose/LocalActivityResultRegistryOwner$LocalComposition$1;->invoke()Ljava/lang/Object;
PLandroidx/activity/compose/LocalActivityResultRegistryOwner$LocalComposition$1;->invoke()Ljava/lang/Object;
Landroidx/activity/compose/LocalOnBackPressedDispatcherOwner;
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;-><clinit>()V
PLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;-><clinit>()V
HSPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->getCurrent(Landroidx/compose/runtime/Composer;)Landroidx/activity/OnBackPressedDispatcherOwner;
HPLandroidx/activity/compose/LocalOnBackPressedDispatcherOwner;->getCurrent(Landroidx/compose/runtime/Composer;)Landroidx/activity/OnBackPressedDispatcherOwner;
Landroidx/activity/contextaware/ContextAwareHelper;
HSPLandroidx/activity/contextaware/ContextAwareHelper;-><init>()V
PLandroidx/activity/contextaware/ContextAwareHelper;-><init>()V
HSPLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
PLandroidx/activity/contextaware/ContextAwareHelper;->addOnContextAvailableListener(Landroidx/activity/contextaware/OnContextAvailableListener;)V
PLandroidx/activity/contextaware/ContextAwareHelper;->clearAvailableContext()V
HSPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V
HPLandroidx/activity/contextaware/ContextAwareHelper;->dispatchOnContextAvailable(Landroid/content/Context;)V
Landroidx/activity/contextaware/OnContextAvailableListener;
Landroidx/activity/result/ActivityResult;
Landroidx/activity/result/ActivityResultCallback;
Landroidx/activity/result/ActivityResultLauncher;
HSPLandroidx/activity/result/ActivityResultLauncher;-><init>()V
PLandroidx/activity/result/ActivityResultLauncher;-><init>()V
Landroidx/activity/result/ActivityResultRegistry;
HSPLandroidx/activity/result/ActivityResultRegistry;-><init>()V
PLandroidx/activity/result/ActivityResultRegistry;-><init>()V
HPLandroidx/activity/result/ActivityResultRegistry;->onSaveInstanceState(Landroid/os/Bundle;)V
HSPLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher;
PLandroidx/activity/result/ActivityResultRegistry;->register(Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)Landroidx/activity/result/ActivityResultLauncher;
HSPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)V
HPLandroidx/activity/result/ActivityResultRegistry;->registerKey(Ljava/lang/String;)V
HPLandroidx/activity/result/ActivityResultRegistry;->unregister(Ljava/lang/String;)V
Landroidx/activity/result/ActivityResultRegistry$2;
HSPLandroidx/activity/result/ActivityResultRegistry$2;-><init>(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;I)V
PLandroidx/activity/result/ActivityResultRegistry$2;-><init>(Landroidx/activity/result/ActivityResultRegistry;Ljava/lang/String;Landroidx/activity/result/contract/ActivityResultContract;I)V
PLandroidx/activity/result/ActivityResultRegistry$2;->unregister()V
Landroidx/activity/result/ActivityResultRegistry$CallbackAndContract;
HSPLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;-><init>(Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)V
PLandroidx/activity/result/ActivityResultRegistry$CallbackAndContract;-><init>(Landroidx/activity/result/contract/ActivityResultContract;Landroidx/activity/result/ActivityResultCallback;)V
Landroidx/activity/result/ActivityResultRegistryOwner;
Landroidx/activity/result/contract/ActivityResultContract;
HSPLandroidx/activity/result/contract/ActivityResultContract;-><init>()V
PLandroidx/activity/result/contract/ActivityResultContract;-><init>()V
Landroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;
HSPLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;-><init>()V
PLandroidx/activity/result/contract/ActivityResultContracts$RequestMultiplePermissions;-><init>()V
Landroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;
HSPLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;-><init>()V
PLandroidx/activity/result/contract/ActivityResultContracts$StartActivityForResult;-><init>()V
Landroidx/appcompat/R$styleable;
HSPLandroidx/appcompat/R$styleable;-><clinit>()V
PLandroidx/appcompat/R$styleable;-><clinit>()V
Landroidx/appcompat/app/ActionBar;
HSPLandroidx/appcompat/app/ActionBar;->readLocales(Landroid/content/Context;)Ljava/lang/String;
PLandroidx/appcompat/app/ActionBar;->readLocales(Landroid/content/Context;)Ljava/lang/String;
Landroidx/appcompat/app/AppCompatActivity;
HSPLandroidx/appcompat/app/AppCompatActivity;-><init>()V
PLandroidx/appcompat/app/AppCompatActivity;-><init>()V
HSPLandroidx/appcompat/app/AppCompatActivity;->attachBaseContext(Landroid/content/Context;)V
PLandroidx/appcompat/app/AppCompatActivity;->attachBaseContext(Landroid/content/Context;)V
HSPLandroidx/appcompat/app/AppCompatActivity;->findViewById(I)Landroid/view/View;
PLandroidx/appcompat/app/AppCompatActivity;->findViewById(I)Landroid/view/View;
HSPLandroidx/appcompat/app/AppCompatActivity;->getDelegate()Landroidx/appcompat/app/AppCompatDelegate;
PLandroidx/appcompat/app/AppCompatActivity;->getDelegate()Landroidx/appcompat/app/AppCompatDelegate;
HSPLandroidx/appcompat/app/AppCompatActivity;->getResources()Landroid/content/res/Resources;
HPLandroidx/appcompat/app/AppCompatActivity;->getResources()Landroid/content/res/Resources;
HSPLandroidx/appcompat/app/AppCompatActivity;->initViewTreeOwners()V
HPLandroidx/appcompat/app/AppCompatActivity;->initViewTreeOwners()V
HSPLandroidx/appcompat/app/AppCompatActivity;->onContentChanged()V
PLandroidx/appcompat/app/AppCompatActivity;->onContentChanged()V
PLandroidx/appcompat/app/AppCompatActivity;->onDestroy()V
HSPLandroidx/appcompat/app/AppCompatActivity;->onPostCreate(Landroid/os/Bundle;)V
PLandroidx/appcompat/app/AppCompatActivity;->onPostCreate(Landroid/os/Bundle;)V
HSPLandroidx/appcompat/app/AppCompatActivity;->onPostResume()V
PLandroidx/appcompat/app/AppCompatActivity;->onPostResume()V
HSPLandroidx/appcompat/app/AppCompatActivity;->onStart()V
PLandroidx/appcompat/app/AppCompatActivity;->onStart()V
PLandroidx/appcompat/app/AppCompatActivity;->onStop()V
HSPLandroidx/appcompat/app/AppCompatActivity;->onTitleChanged(Ljava/lang/CharSequence;I)V
PLandroidx/appcompat/app/AppCompatActivity;->onTitleChanged(Ljava/lang/CharSequence;I)V
HSPLandroidx/appcompat/app/AppCompatActivity;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
PLandroidx/appcompat/app/AppCompatActivity;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
HSPLandroidx/appcompat/app/AppCompatActivity;->setTheme(I)V
PLandroidx/appcompat/app/AppCompatActivity;->setTheme(I)V
Landroidx/appcompat/app/AppCompatActivity$1;
HSPLandroidx/appcompat/app/AppCompatActivity$1;-><init>(Leu/kanade/tachiyomi/ui/base/activity/BaseActivity;)V
PLandroidx/appcompat/app/AppCompatActivity$1;-><init>(Leu/kanade/tachiyomi/ui/base/activity/BaseActivity;)V
PLandroidx/appcompat/app/AppCompatActivity$1;->saveState()Landroid/os/Bundle;
Landroidx/appcompat/app/AppCompatActivity$2;
HSPLandroidx/appcompat/app/AppCompatActivity$2;-><init>(Leu/kanade/tachiyomi/ui/base/activity/BaseActivity;)V
PLandroidx/appcompat/app/AppCompatActivity$2;-><init>(Leu/kanade/tachiyomi/ui/base/activity/BaseActivity;)V
HSPLandroidx/appcompat/app/AppCompatActivity$2;->onContextAvailable(Landroid/content/Context;)V
PLandroidx/appcompat/app/AppCompatActivity$2;->onContextAvailable(Landroid/content/Context;)V
Landroidx/appcompat/app/AppCompatCallback;
Landroidx/appcompat/app/AppCompatDelegate;
HSPLandroidx/appcompat/app/AppCompatDelegate;-><clinit>()V
PLandroidx/appcompat/app/AppCompatDelegate;-><clinit>()V
HSPLandroidx/appcompat/app/AppCompatDelegate;-><init>()V
PLandroidx/appcompat/app/AppCompatDelegate;-><init>()V
HSPLandroidx/appcompat/app/AppCompatDelegate;->addActiveDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V
PLandroidx/appcompat/app/AppCompatDelegate;->addActiveDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V
HSPLandroidx/appcompat/app/AppCompatDelegate;->getDefaultNightMode()I
PLandroidx/appcompat/app/AppCompatDelegate;->getDefaultNightMode()I
HSPLandroidx/appcompat/app/AppCompatDelegate;->getRequestedAppLocales()Landroidx/core/os/LocaleListCompat;
PLandroidx/appcompat/app/AppCompatDelegate;->getRequestedAppLocales()Landroidx/core/os/LocaleListCompat;
HSPLandroidx/appcompat/app/AppCompatDelegate;->isAutoStorageOptedIn(Landroid/content/Context;)Z
PLandroidx/appcompat/app/AppCompatDelegate;->isAutoStorageOptedIn(Landroid/content/Context;)Z
PLandroidx/appcompat/app/AppCompatDelegate;->removeActivityDelegate(Landroidx/appcompat/app/AppCompatDelegate;)V
HSPLandroidx/appcompat/app/AppCompatDelegate;->removeDelegateFromActives(Landroidx/appcompat/app/AppCompatDelegate;)V
PLandroidx/appcompat/app/AppCompatDelegate;->removeDelegateFromActives(Landroidx/appcompat/app/AppCompatDelegate;)V
HSPLandroidx/appcompat/app/AppCompatDelegate;->setDefaultNightMode(I)V
PLandroidx/appcompat/app/AppCompatDelegate;->setDefaultNightMode(I)V
HSPLandroidx/appcompat/app/AppCompatDelegate;->syncRequestedAndStoredLocales(Landroid/content/Context;)V
PLandroidx/appcompat/app/AppCompatDelegate;->syncRequestedAndStoredLocales(Landroid/content/Context;)V
Landroidx/appcompat/app/AppCompatDelegateImpl;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><clinit>()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;-><clinit>()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)V
PLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/app/Activity;Landroidx/appcompat/app/AppCompatCallback;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/content/Context;Landroid/view/Window;Landroidx/appcompat/app/AppCompatCallback;Ljava/lang/Object;)V
PLandroidx/appcompat/app/AppCompatDelegateImpl;-><init>(Landroid/content/Context;Landroid/view/Window;Landroidx/appcompat/app/AppCompatCallback;Ljava/lang/Object;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->applyApplicationSpecificConfig(ZZ)Z
PLandroidx/appcompat/app/AppCompatDelegateImpl;->applyApplicationSpecificConfig(ZZ)Z
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context;
PLandroidx/appcompat/app/AppCompatDelegateImpl;->attachBaseContext2(Landroid/content/Context;)Landroid/content/Context;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->attachToWindow(Landroid/view/Window;)V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->attachToWindow(Landroid/view/Window;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->calculateApplicationLocales(Landroid/content/Context;)Landroidx/core/os/LocaleListCompat;
PLandroidx/appcompat/app/AppCompatDelegateImpl;->calculateApplicationLocales(Landroid/content/Context;)Landroidx/core/os/LocaleListCompat;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->createOverrideAppConfiguration(Landroid/content/Context;ILandroidx/core/os/LocaleListCompat;Landroid/content/res/Configuration;Z)Landroid/content/res/Configuration;
PLandroidx/appcompat/app/AppCompatDelegateImpl;->createOverrideAppConfiguration(Landroid/content/Context;ILandroidx/core/os/LocaleListCompat;Landroid/content/res/Configuration;Z)Landroid/content/res/Configuration;
PLandroidx/appcompat/app/AppCompatDelegateImpl;->dismissPopups()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->doInvalidatePanelMenu(I)V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->doInvalidatePanelMenu(I)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureSubDecor()V
HPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureSubDecor()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureWindow()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->ensureWindow()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->findViewById(I)Landroid/view/View;
PLandroidx/appcompat/app/AppCompatDelegateImpl;->findViewById(I)Landroid/view/View;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->getPanelState(I)Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;
PLandroidx/appcompat/app/AppCompatDelegateImpl;->getPanelState(I)Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->initWindowDecorActionBar()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->initWindowDecorActionBar()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->installViewFactory()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->installViewFactory()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->mapNightMode(Landroid/content/Context;I)I
PLandroidx/appcompat/app/AppCompatDelegateImpl;->mapNightMode(Landroid/content/Context;I)I
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreate()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreate()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
HPLandroidx/appcompat/app/AppCompatDelegateImpl;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onDestroy()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostCreate()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostCreate()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostResume()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onPostResume()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->onStart()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onStart()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->onStop()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->requestWindowFeature(I)Z
PLandroidx/appcompat/app/AppCompatDelegateImpl;->requestWindowFeature(I)Z
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->setContentView(Landroid/view/View;Landroid/view/ViewGroup$LayoutParams;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTheme(I)V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->setTheme(I)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->setTitle(Ljava/lang/CharSequence;)V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->setTitle(Ljava/lang/CharSequence;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->throwFeatureRequestIfSubDecorInstalled()V
PLandroidx/appcompat/app/AppCompatDelegateImpl;->throwFeatureRequestIfSubDecorInstalled()V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl;->updateStatusGuard(Landroidx/core/view/WindowInsetsCompat;Landroid/graphics/Rect;)I
PLandroidx/appcompat/app/AppCompatDelegateImpl;->updateStatusGuard(Landroidx/core/view/WindowInsetsCompat;Landroid/graphics/Rect;)I
Landroidx/appcompat/app/AppCompatDelegateImpl$3;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$3;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
PLandroidx/appcompat/app/AppCompatDelegateImpl$3;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$3;->onApplyWindowInsets(Landroid/view/View;Landroidx/core/view/WindowInsetsCompat;)Landroidx/core/view/WindowInsetsCompat;
PLandroidx/appcompat/app/AppCompatDelegateImpl$3;->onApplyWindowInsets(Landroid/view/View;Landroidx/core/view/WindowInsetsCompat;)Landroidx/core/view/WindowInsetsCompat;
Landroidx/appcompat/app/AppCompatDelegateImpl$4;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$4;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;I)V
PLandroidx/appcompat/app/AppCompatDelegateImpl$4;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;I)V
PLandroidx/appcompat/app/AppCompatDelegateImpl$4;->onDetachedFromWindow()V
Landroidx/appcompat/app/AppCompatDelegateImpl$Api24Impl;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$Api24Impl;->getLocales(Landroid/content/res/Configuration;)Landroidx/core/os/LocaleListCompat;
PLandroidx/appcompat/app/AppCompatDelegateImpl$Api24Impl;->getLocales(Landroid/content/res/Configuration;)Landroidx/core/os/LocaleListCompat;
Landroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;Landroid/view/Window$Callback;)V
PLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;-><init>(Landroidx/appcompat/app/AppCompatDelegateImpl;Landroid/view/Window$Callback;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->bypassOnContentChanged(Landroid/view/Window$Callback;)V
PLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->bypassOnContentChanged(Landroid/view/Window$Callback;)V
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onContentChanged()V
PLandroidx/appcompat/app/AppCompatDelegateImpl$AppCompatWindowCallback;->onContentChanged()V
Landroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;
HSPLandroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;-><init>(I)V
PLandroidx/appcompat/app/AppCompatDelegateImpl$PanelFeatureState;-><init>(I)V
Landroidx/appcompat/app/AppCompatViewInflater;
HSPLandroidx/appcompat/app/AppCompatViewInflater;-><clinit>()V
PLandroidx/appcompat/app/AppCompatViewInflater;-><clinit>()V
HSPLandroidx/appcompat/app/AppCompatViewInflater;-><init>()V
PLandroidx/appcompat/app/AppCompatViewInflater;-><init>()V
HSPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
HPLandroidx/appcompat/app/AppCompatViewInflater;->createView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
Landroidx/appcompat/app/AppLocalesMetadataHolderService;
Landroidx/appcompat/app/AppLocalesMetadataHolderService$Api24Impl;
HSPLandroidx/appcompat/app/AppLocalesMetadataHolderService$Api24Impl;->getDisabledComponentFlag()I
PLandroidx/appcompat/app/AppLocalesMetadataHolderService$Api24Impl;->getDisabledComponentFlag()I
Landroidx/appcompat/app/AppLocalesStorageHelper$SerialExecutor;
HSPLandroidx/appcompat/app/AppLocalesStorageHelper$SerialExecutor;-><init>(Ljava/util/concurrent/Executor;)V
PLandroidx/appcompat/app/AppLocalesStorageHelper$SerialExecutor;-><init>(Ljava/util/concurrent/Executor;)V
Landroidx/appcompat/app/AppLocalesStorageHelper$ThreadPerTaskExecutor;
HSPLandroidx/appcompat/app/AppLocalesStorageHelper$ThreadPerTaskExecutor;-><init>()V
PLandroidx/appcompat/app/AppLocalesStorageHelper$ThreadPerTaskExecutor;-><init>()V
Landroidx/appcompat/app/ToolbarActionBar$1;
HSPLandroidx/appcompat/app/ToolbarActionBar$1;-><init>(Ljava/lang/Object;I)V
PLandroidx/appcompat/app/ToolbarActionBar$1;-><init>(Ljava/lang/Object;I)V
HSPLandroidx/appcompat/app/ToolbarActionBar$1;->run()V
PLandroidx/appcompat/app/ToolbarActionBar$1;->run()V
Landroidx/appcompat/view/ContextThemeWrapper;
HSPLandroidx/appcompat/view/ContextThemeWrapper;-><init>(Landroid/content/Context;I)V
PLandroidx/appcompat/view/ContextThemeWrapper;-><init>(Landroid/content/Context;I)V
HSPLandroidx/appcompat/view/ContextThemeWrapper;->applyOverrideConfiguration(Landroid/content/res/Configuration;)V
PLandroidx/appcompat/view/ContextThemeWrapper;->applyOverrideConfiguration(Landroid/content/res/Configuration;)V
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getResources()Landroid/content/res/Resources;
PLandroidx/appcompat/view/ContextThemeWrapper;->getResources()Landroid/content/res/Resources;
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getSystemService(Ljava/lang/String;)Ljava/lang/Object;
HPLandroidx/appcompat/view/ContextThemeWrapper;->getSystemService(Ljava/lang/String;)Ljava/lang/Object;
HSPLandroidx/appcompat/view/ContextThemeWrapper;->getTheme()Landroid/content/res/Resources$Theme;
PLandroidx/appcompat/view/ContextThemeWrapper;->getTheme()Landroid/content/res/Resources$Theme;
HSPLandroidx/appcompat/view/ContextThemeWrapper;->initializeTheme()V
PLandroidx/appcompat/view/ContextThemeWrapper;->initializeTheme()V
Landroidx/appcompat/view/WindowCallbackWrapper;
HSPLandroidx/appcompat/view/WindowCallbackWrapper;-><init>(Landroid/view/Window$Callback;)V
PLandroidx/appcompat/view/WindowCallbackWrapper;-><init>(Landroid/view/Window$Callback;)V
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchPopulateAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)Z
PLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchPopulateAccessibilityEvent(Landroid/view/accessibility/AccessibilityEvent;)Z
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchTouchEvent(Landroid/view/MotionEvent;)Z
HPLandroidx/appcompat/view/WindowCallbackWrapper;->dispatchTouchEvent(Landroid/view/MotionEvent;)Z
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->getWrapped()Landroid/view/Window$Callback;
PLandroidx/appcompat/view/WindowCallbackWrapper;->getWrapped()Landroid/view/Window$Callback;
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onAttachedToWindow()V
PLandroidx/appcompat/view/WindowCallbackWrapper;->onAttachedToWindow()V
PLandroidx/appcompat/view/WindowCallbackWrapper;->onDetachedFromWindow()V
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowAttributesChanged(Landroid/view/WindowManager$LayoutParams;)V
HPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowAttributesChanged(Landroid/view/WindowManager$LayoutParams;)V
HSPLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowFocusChanged(Z)V
PLandroidx/appcompat/view/WindowCallbackWrapper;->onWindowFocusChanged(Z)V
Landroidx/appcompat/view/menu/MenuBuilder$Callback;
Landroidx/appcompat/view/menu/MenuPresenter$Callback;
Landroidx/appcompat/widget/AppCompatBackgroundHelper;
HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;-><init>(Landroid/view/View;)V
PLandroidx/appcompat/widget/AppCompatBackgroundHelper;-><init>(Landroid/view/View;)V
HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->applySupportBackgroundTint()V
PLandroidx/appcompat/widget/AppCompatBackgroundHelper;->applySupportBackgroundTint()V
HSPLandroidx/appcompat/widget/AppCompatBackgroundHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
PLandroidx/appcompat/widget/AppCompatBackgroundHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
Landroidx/appcompat/widget/AppCompatDrawableManager;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><clinit>()V
PLandroidx/appcompat/widget/AppCompatDrawableManager;-><clinit>()V
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;-><init>()V
PLandroidx/appcompat/widget/AppCompatDrawableManager;-><init>()V
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->access$000()Landroid/graphics/PorterDuff$Mode;
PLandroidx/appcompat/widget/AppCompatDrawableManager;->access$000()Landroid/graphics/PorterDuff$Mode;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->get()Landroidx/appcompat/widget/AppCompatDrawableManager;
PLandroidx/appcompat/widget/AppCompatDrawableManager;->get()Landroidx/appcompat/widget/AppCompatDrawableManager;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->getDrawable$1(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
PLandroidx/appcompat/widget/AppCompatDrawableManager;->getDrawable$1(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager;->preload()V
PLandroidx/appcompat/widget/AppCompatDrawableManager;->preload()V
Landroidx/appcompat/widget/AppCompatDrawableManager$1;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;-><init>()V
PLandroidx/appcompat/widget/AppCompatDrawableManager$1;-><init>()V
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->arrayContains(I[I)Z
PLandroidx/appcompat/widget/AppCompatDrawableManager$1;->arrayContains(I[I)Z
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->createDrawableFor(Landroidx/appcompat/widget/ResourceManagerInternal;Landroid/content/Context;I)Landroid/graphics/drawable/LayerDrawable;
PLandroidx/appcompat/widget/AppCompatDrawableManager$1;->createDrawableFor(Landroidx/appcompat/widget/ResourceManagerInternal;Landroid/content/Context;I)Landroid/graphics/drawable/LayerDrawable;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->getTintListForDrawableRes(Landroid/content/Context;I)Landroid/content/res/ColorStateList;
PLandroidx/appcompat/widget/AppCompatDrawableManager$1;->getTintListForDrawableRes(Landroid/content/Context;I)Landroid/content/res/ColorStateList;
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawable(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
PLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawable(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
HSPLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawableUsingColorFilter(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
PLandroidx/appcompat/widget/AppCompatDrawableManager$1;->tintDrawableUsingColorFilter(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
Landroidx/appcompat/widget/AppCompatImageHelper;
HSPLandroidx/appcompat/widget/AppCompatImageHelper;-><init>(Landroid/widget/ImageView;)V
PLandroidx/appcompat/widget/AppCompatImageHelper;-><init>(Landroid/widget/ImageView;)V
HSPLandroidx/appcompat/widget/AppCompatImageHelper;->applyImageLevel()V
PLandroidx/appcompat/widget/AppCompatImageHelper;->applyImageLevel()V
HSPLandroidx/appcompat/widget/AppCompatImageHelper;->applySupportImageTint()V
PLandroidx/appcompat/widget/AppCompatImageHelper;->applySupportImageTint()V
HSPLandroidx/appcompat/widget/AppCompatImageHelper;->hasOverlappingRendering()Z
PLandroidx/appcompat/widget/AppCompatImageHelper;->hasOverlappingRendering()Z
HSPLandroidx/appcompat/widget/AppCompatImageHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
PLandroidx/appcompat/widget/AppCompatImageHelper;->loadFromAttributes(Landroid/util/AttributeSet;I)V
HSPLandroidx/appcompat/widget/AppCompatImageHelper;->obtainLevelFromDrawable(Landroid/graphics/drawable/Drawable;)V
PLandroidx/appcompat/widget/AppCompatImageHelper;->obtainLevelFromDrawable(Landroid/graphics/drawable/Drawable;)V
Landroidx/appcompat/widget/AppCompatImageView;
HSPLandroidx/appcompat/widget/AppCompatImageView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
PLandroidx/appcompat/widget/AppCompatImageView;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;I)V
HSPLandroidx/appcompat/widget/AppCompatImageView;->drawableStateChanged()V
PLandroidx/appcompat/widget/AppCompatImageView;->drawableStateChanged()V
HSPLandroidx/appcompat/widget/AppCompatImageView;->hasOverlappingRendering()Z
PLandroidx/appcompat/widget/AppCompatImageView;->hasOverlappingRendering()Z
HSPLandroidx/appcompat/widget/AppCompatImageView;->setImageDrawable(Landroid/graphics/drawable/Drawable;)V
PLandroidx/appcompat/widget/AppCompatImageView;->setImageDrawable(Landroid/graphics/drawable/Drawable;)V
Landroidx/appcompat/widget/ContentFrameLayout;
HSPLandroidx/appcompat/widget/ContentFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
PLandroidx/appcompat/widget/ContentFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
HSPLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMajor()Landroid/util/TypedValue;
PLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMajor()Landroid/util/TypedValue;
HSPLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMinor()Landroid/util/TypedValue;
PLandroidx/appcompat/widget/ContentFrameLayout;->getMinWidthMinor()Landroid/util/TypedValue;
HSPLandroidx/appcompat/widget/ContentFrameLayout;->onAttachedToWindow()V
PLandroidx/appcompat/widget/ContentFrameLayout;->onAttachedToWindow()V
PLandroidx/appcompat/widget/ContentFrameLayout;->onDetachedFromWindow()V
HSPLandroidx/appcompat/widget/ContentFrameLayout;->onMeasure(II)V
HPLandroidx/appcompat/widget/ContentFrameLayout;->onMeasure(II)V
HSPLandroidx/appcompat/widget/ContentFrameLayout;->setAttachListener(Landroidx/appcompat/widget/ContentFrameLayout$OnAttachListener;)V
PLandroidx/appcompat/widget/ContentFrameLayout;->setAttachListener(Landroidx/appcompat/widget/ContentFrameLayout$OnAttachListener;)V
HSPLandroidx/appcompat/widget/ContentFrameLayout;->setDecorPadding(IIII)V
PLandroidx/appcompat/widget/ContentFrameLayout;->setDecorPadding(IIII)V
Landroidx/appcompat/widget/ContentFrameLayout$OnAttachListener;
Landroidx/appcompat/widget/DrawableUtils;
HSPLandroidx/appcompat/widget/DrawableUtils;-><clinit>()V
PLandroidx/appcompat/widget/DrawableUtils;-><clinit>()V
HSPLandroidx/appcompat/widget/DrawableUtils;->fixDrawable(Landroid/graphics/drawable/Drawable;)V
HPLandroidx/appcompat/widget/DrawableUtils;->fixDrawable(Landroid/graphics/drawable/Drawable;)V
Landroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;
HSPLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m$1(Landroid/graphics/Insets;)I
PLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m$1(Landroid/graphics/Insets;)I
HSPLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m$2(Landroid/graphics/Insets;)I
PLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m$2(Landroid/graphics/Insets;)I
HSPLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m$3(Landroid/graphics/Insets;)I
PLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m$3(Landroid/graphics/Insets;)I
HSPLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m()Landroid/graphics/BlendMode;
PLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m()Landroid/graphics/BlendMode;
HSPLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m(Landroid/graphics/Insets;)I
PLandroidx/appcompat/widget/DrawableUtils$$ExternalSyntheticApiModelOutline0;->m(Landroid/graphics/Insets;)I
Landroidx/appcompat/widget/FitWindowsFrameLayout;
HSPLandroidx/appcompat/widget/FitWindowsFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
PLandroidx/appcompat/widget/FitWindowsFrameLayout;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
HSPLandroidx/appcompat/widget/FitWindowsFrameLayout;->fitSystemWindows(Landroid/graphics/Rect;)Z
PLandroidx/appcompat/widget/FitWindowsFrameLayout;->fitSystemWindows(Landroid/graphics/Rect;)Z
Landroidx/appcompat/widget/ResourceManagerInternal;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;-><clinit>()V
PLandroidx/appcompat/widget/ResourceManagerInternal;-><clinit>()V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;-><init>()V
PLandroidx/appcompat/widget/ResourceManagerInternal;-><init>()V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->createDrawableIfNeeded(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
PLandroidx/appcompat/widget/ResourceManagerInternal;->createDrawableIfNeeded(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->get()Landroidx/appcompat/widget/ResourceManagerInternal;
PLandroidx/appcompat/widget/ResourceManagerInternal;->get()Landroidx/appcompat/widget/ResourceManagerInternal;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->getCachedDrawable(Landroid/content/Context;J)Landroid/graphics/drawable/Drawable;
PLandroidx/appcompat/widget/ResourceManagerInternal;->getCachedDrawable(Landroid/content/Context;J)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->getDrawable(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
PLandroidx/appcompat/widget/ResourceManagerInternal;->getDrawable(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->getDrawable(Landroid/content/Context;IZ)Landroid/graphics/drawable/Drawable;
PLandroidx/appcompat/widget/ResourceManagerInternal;->getDrawable(Landroid/content/Context;IZ)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->getTintList(Landroid/content/Context;I)Landroid/content/res/ColorStateList;
PLandroidx/appcompat/widget/ResourceManagerInternal;->getTintList(Landroid/content/Context;I)Landroid/content/res/ColorStateList;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->loadDrawableFromDelegates(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
PLandroidx/appcompat/widget/ResourceManagerInternal;->loadDrawableFromDelegates(Landroid/content/Context;I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->setHooks(Landroidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks;)V
PLandroidx/appcompat/widget/ResourceManagerInternal;->setHooks(Landroidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks;)V
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->tintDrawable(Landroid/content/Context;IZLandroid/graphics/drawable/Drawable;)Landroid/graphics/drawable/Drawable;
PLandroidx/appcompat/widget/ResourceManagerInternal;->tintDrawable(Landroid/content/Context;IZLandroid/graphics/drawable/Drawable;)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/ResourceManagerInternal;->tintDrawableUsingColorFilter(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
PLandroidx/appcompat/widget/ResourceManagerInternal;->tintDrawableUsingColorFilter(Landroid/content/Context;ILandroid/graphics/drawable/Drawable;)Z
Landroidx/appcompat/widget/ResourceManagerInternal$ColorFilterLruCache;
HSPLandroidx/appcompat/widget/ResourceManagerInternal$ColorFilterLruCache;-><init>()V
PLandroidx/appcompat/widget/ResourceManagerInternal$ColorFilterLruCache;-><init>()V
Landroidx/appcompat/widget/ResourceManagerInternal$ResourceManagerHooks;
Landroidx/appcompat/widget/ResourcesWrapper;
Landroidx/appcompat/widget/ThemeUtils;
HSPLandroidx/appcompat/widget/ThemeUtils;-><clinit>()V
PLandroidx/appcompat/widget/ThemeUtils;-><clinit>()V
HSPLandroidx/appcompat/widget/ThemeUtils;->checkAppCompatTheme(Landroid/view/View;Landroid/content/Context;)V
PLandroidx/appcompat/widget/ThemeUtils;->checkAppCompatTheme(Landroid/view/View;Landroid/content/Context;)V
Landroidx/appcompat/widget/TintContextWrapper;
HSPLandroidx/appcompat/widget/TintContextWrapper;-><clinit>()V
PLandroidx/appcompat/widget/TintContextWrapper;-><clinit>()V
HSPLandroidx/appcompat/widget/TintContextWrapper;->wrap(Landroid/content/Context;)V
PLandroidx/appcompat/widget/TintContextWrapper;->wrap(Landroid/content/Context;)V
Landroidx/appcompat/widget/TintResources;
Landroidx/appcompat/widget/TintTypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;-><init>(Landroid/content/Context;Landroid/content/res/TypedArray;)V
PLandroidx/appcompat/widget/TintTypedArray;-><init>(Landroid/content/Context;Landroid/content/res/TypedArray;)V
HSPLandroidx/appcompat/widget/TintTypedArray;->getDrawableIfKnown(I)Landroid/graphics/drawable/Drawable;
PLandroidx/appcompat/widget/TintTypedArray;->getDrawableIfKnown(I)Landroid/graphics/drawable/Drawable;
HSPLandroidx/appcompat/widget/TintTypedArray;->getResourceId(II)I
PLandroidx/appcompat/widget/TintTypedArray;->getResourceId(II)I
HSPLandroidx/appcompat/widget/TintTypedArray;->getWrappedTypeArray()Landroid/content/res/TypedArray;
PLandroidx/appcompat/widget/TintTypedArray;->getWrappedTypeArray()Landroid/content/res/TypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;->hasValue(I)Z
PLandroidx/appcompat/widget/TintTypedArray;->hasValue(I)Z
HSPLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;Landroid/util/AttributeSet;[II)Landroidx/appcompat/widget/TintTypedArray;
PLandroidx/appcompat/widget/TintTypedArray;->obtainStyledAttributes(Landroid/content/Context;Landroid/util/AttributeSet;[II)Landroidx/appcompat/widget/TintTypedArray;
HSPLandroidx/appcompat/widget/TintTypedArray;->recycle()V
PLandroidx/appcompat/widget/TintTypedArray;->recycle()V
Landroidx/appcompat/widget/VectorEnabledTintResources;
Landroidx/appcompat/widget/ViewStubCompat;
HSPLandroidx/appcompat/widget/ViewStubCompat;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
PLandroidx/appcompat/widget/ViewStubCompat;-><init>(Landroid/content/Context;Landroid/util/AttributeSet;)V
HSPLandroidx/appcompat/widget/ViewStubCompat;->setVisibility(I)V
PLandroidx/appcompat/widget/ViewStubCompat;->setVisibility(I)V
Landroidx/appcompat/widget/ViewUtils;
HSPLandroidx/appcompat/widget/ViewUtils;-><clinit>()V
PLandroidx/appcompat/widget/ViewUtils;-><clinit>()V
Landroidx/arch/core/executor/ArchTaskExecutor;
HSPLandroidx/arch/core/executor/ArchTaskExecutor;-><clinit>()V
PLandroidx/arch/core/executor/ArchTaskExecutor;-><clinit>()V
HSPLandroidx/arch/core/executor/ArchTaskExecutor;-><init>()V
PLandroidx/arch/core/executor/ArchTaskExecutor;-><init>()V
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->getInstance()Landroidx/arch/core/executor/ArchTaskExecutor;
HPLandroidx/arch/core/executor/ArchTaskExecutor;->getInstance()Landroidx/arch/core/executor/ArchTaskExecutor;
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->isMainThread()Z
HPLandroidx/arch/core/executor/ArchTaskExecutor;->isMainThread()Z
HSPLandroidx/arch/core/executor/ArchTaskExecutor;->postToMainThread(Ljava/lang/Runnable;)V
PLandroidx/arch/core/executor/ArchTaskExecutor;->postToMainThread(Ljava/lang/Runnable;)V
Landroidx/arch/core/executor/DefaultTaskExecutor;
HSPLandroidx/arch/core/executor/DefaultTaskExecutor;-><init>()V
PLandroidx/arch/core/executor/DefaultTaskExecutor;-><init>()V
HSPLandroidx/arch/core/executor/DefaultTaskExecutor;->createAsync(Landroid/os/Looper;)Landroid/os/Handler;
PLandroidx/arch/core/executor/DefaultTaskExecutor;->createAsync(Landroid/os/Looper;)Landroid/os/Handler;
HSPLandroidx/arch/core/executor/DefaultTaskExecutor;->postToMainThread(Ljava/lang/Runnable;)V
PLandroidx/arch/core/executor/DefaultTaskExecutor;->postToMainThread(Ljava/lang/Runnable;)V
Landroidx/arch/core/executor/DefaultTaskExecutor$1;
HSPLandroidx/arch/core/executor/DefaultTaskExecutor$1;-><init>()V
PLandroidx/arch/core/executor/DefaultTaskExecutor$1;-><init>()V
Landroidx/arch/core/internal/FastSafeIterableMap;
HSPLandroidx/arch/core/internal/FastSafeIterableMap;-><init>()V
PLandroidx/arch/core/internal/FastSafeIterableMap;-><init>()V
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->ceil(Ljava/lang/Object;)Ljava/util/Map$Entry;
HPLandroidx/arch/core/internal/FastSafeIterableMap;->ceil(Ljava/lang/Object;)Ljava/util/Map$Entry;
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->contains(Ljava/lang/Object;)Z
HPLandroidx/arch/core/internal/FastSafeIterableMap;->contains(Ljava/lang/Object;)Z
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HPLandroidx/arch/core/internal/FastSafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
PLandroidx/arch/core/internal/FastSafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/arch/core/internal/FastSafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/arch/core/internal/FastSafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
Landroidx/arch/core/internal/SafeIterableMap;
HSPLandroidx/arch/core/internal/SafeIterableMap;-><init>()V
HPLandroidx/arch/core/internal/SafeIterableMap;-><init>()V
HSPLandroidx/arch/core/internal/SafeIterableMap;->descendingIterator()Ljava/util/Iterator;
PLandroidx/arch/core/internal/SafeIterableMap;->descendingIterator()Ljava/util/Iterator;
HSPLandroidx/arch/core/internal/SafeIterableMap;->eldest()Ljava/util/Map$Entry;
PLandroidx/arch/core/internal/SafeIterableMap;->eldest()Ljava/util/Map$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HPLandroidx/arch/core/internal/SafeIterableMap;->get(Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap;->iterator()Ljava/util/Iterator;
PLandroidx/arch/core/internal/SafeIterableMap;->iterator()Ljava/util/Iterator;
HSPLandroidx/arch/core/internal/SafeIterableMap;->iteratorWithAdditions()Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
HPLandroidx/arch/core/internal/SafeIterableMap;->iteratorWithAdditions()Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
HSPLandroidx/arch/core/internal/SafeIterableMap;->newest()Ljava/util/Map$Entry;
PLandroidx/arch/core/internal/SafeIterableMap;->newest()Ljava/util/Map$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
PLandroidx/arch/core/internal/SafeIterableMap;->put(Ljava/lang/Object;Ljava/lang/Object;)Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
PLandroidx/arch/core/internal/SafeIterableMap;->putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/arch/core/internal/SafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
HPLandroidx/arch/core/internal/SafeIterableMap;->remove(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/arch/core/internal/SafeIterableMap;->size()I
PLandroidx/arch/core/internal/SafeIterableMap;->size()I
Landroidx/arch/core/internal/SafeIterableMap$AscendingIterator;
HSPLandroidx/arch/core/internal/SafeIterableMap$AscendingIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;I)V
PLandroidx/arch/core/internal/SafeIterableMap$AscendingIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;I)V
Landroidx/arch/core/internal/SafeIterableMap$Entry;
HSPLandroidx/arch/core/internal/SafeIterableMap$Entry;-><init>(Ljava/lang/Object;Ljava/lang/Object;)V
HPLandroidx/arch/core/internal/SafeIterableMap$Entry;-><init>(Ljava/lang/Object;Ljava/lang/Object;)V
HSPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getKey()Ljava/lang/Object;
PLandroidx/arch/core/internal/SafeIterableMap$Entry;->getKey()Ljava/lang/Object;
HSPLandroidx/arch/core/internal/SafeIterableMap$Entry;->getValue()Ljava/lang/Object;
PLandroidx/arch/core/internal/SafeIterableMap$Entry;->getValue()Ljava/lang/Object;
Landroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;-><init>(Landroidx/arch/core/internal/SafeIterableMap;)V
PLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;-><init>(Landroidx/arch/core/internal/SafeIterableMap;)V
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->hasNext()Z
PLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->hasNext()Z
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/lang/Object;
PLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->next()Ljava/lang/Object;
HSPLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
PLandroidx/arch/core/internal/SafeIterableMap$IteratorWithAdditions;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
Landroidx/arch/core/internal/SafeIterableMap$ListIterator;
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
PLandroidx/arch/core/internal/SafeIterableMap$ListIterator;-><init>(Landroidx/arch/core/internal/SafeIterableMap$Entry;Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->hasNext()Z
PLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->hasNext()Z
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/lang/Object;
PLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->next()Ljava/lang/Object;
HSPLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->nextNode()Landroidx/arch/core/internal/SafeIterableMap$Entry;
PLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->nextNode()Landroidx/arch/core/internal/SafeIterableMap$Entry;
PLandroidx/arch/core/internal/SafeIterableMap$ListIterator;->supportRemove(Landroidx/arch/core/internal/SafeIterableMap$Entry;)V
Landroidx/arch/core/internal/SafeIterableMap$SupportRemove;
HSPLandroidx/arch/core/internal/SafeIterableMap$SupportRemove;-><init>()V
HPLandroidx/arch/core/internal/SafeIterableMap$SupportRemove;-><init>()V
Landroidx/arch/core/util/Function;
Landroidx/collection/ArrayMap;
HSPLandroidx/collection/ArrayMap;-><init>()V
PLandroidx/collection/ArrayMap;-><init>()V
Landroidx/collection/ArrayMap$KeyIterator;
HSPLandroidx/collection/ArrayMap$KeyIterator;-><init>(Landroidx/collection/ArraySet;)V
PLandroidx/collection/ArrayMap$KeyIterator;-><init>(Landroidx/collection/ArraySet;)V
Landroidx/collection/ArraySet;
HSPLandroidx/collection/ArraySet;-><clinit>()V
PLandroidx/collection/ArraySet;-><clinit>()V
HSPLandroidx/collection/ArraySet;-><init>(I)V
PLandroidx/collection/ArraySet;-><init>(I)V
HSPLandroidx/collection/ArraySet;->add(Ljava/lang/Object;)Z
PLandroidx/collection/ArraySet;->add(Ljava/lang/Object;)Z
HSPLandroidx/collection/ArraySet;->allocArrays(I)V
PLandroidx/collection/ArraySet;->allocArrays(I)V
HSPLandroidx/collection/ArraySet;->clear()V
PLandroidx/collection/ArraySet;->clear()V
HSPLandroidx/collection/ArraySet;->freeArrays([I[Ljava/lang/Object;I)V
PLandroidx/collection/ArraySet;->freeArrays([I[Ljava/lang/Object;I)V
HSPLandroidx/collection/ArraySet;->indexOf(ILjava/lang/Object;)I
PLandroidx/collection/ArraySet;->indexOf(ILjava/lang/Object;)I
HSPLandroidx/collection/ArraySet;->iterator()Ljava/util/Iterator;
PLandroidx/collection/ArraySet;->iterator()Ljava/util/Iterator;
PLandroidx/collection/ArraySet;->removeAt(I)V
HSPLandroidx/collection/ArraySet;->toArray()[Ljava/lang/Object;
PLandroidx/collection/ArraySet;->toArray()[Ljava/lang/Object;
Landroidx/collection/ContainerHelpers;
HSPLandroidx/collection/ContainerHelpers;-><clinit>()V
PLandroidx/collection/ContainerHelpers;-><clinit>()V
PLandroidx/collection/ContainerHelpers;->binarySearch([III)I
HSPLandroidx/collection/ContainerHelpers;->binarySearch([JIJ)I
HPLandroidx/collection/ContainerHelpers;->binarySearch([JIJ)I
Landroidx/collection/IndexBasedArrayIterator;
HSPLandroidx/collection/IndexBasedArrayIterator;-><init>(I)V
PLandroidx/collection/IndexBasedArrayIterator;-><init>(I)V
HSPLandroidx/collection/IndexBasedArrayIterator;->hasNext()Z
PLandroidx/collection/IndexBasedArrayIterator;->hasNext()Z
PLandroidx/collection/IndexBasedArrayIterator;->next()Ljava/lang/Object;
PLandroidx/collection/IndexBasedArrayIterator;->remove()V
Landroidx/collection/LongSparseArray;
HSPLandroidx/collection/LongSparseArray;-><clinit>()V
PLandroidx/collection/LongSparseArray;-><clinit>()V
HSPLandroidx/collection/LongSparseArray;-><init>()V
PLandroidx/collection/LongSparseArray;-><init>()V
HSPLandroidx/collection/LongSparseArray;-><init>(I)V
HPLandroidx/collection/LongSparseArray;-><init>(I)V
HSPLandroidx/collection/LongSparseArray;->clear()V
PLandroidx/collection/LongSparseArray;->clear()V
HSPLandroidx/collection/LongSparseArray;->get(JLjava/lang/Long;)Ljava/lang/Object;
HPLandroidx/collection/LongSparseArray;->get(JLjava/lang/Long;)Ljava/lang/Object;
HSPLandroidx/collection/LongSparseArray;->indexOfKey(J)I
PLandroidx/collection/LongSparseArray;->indexOfKey(J)I
HSPLandroidx/collection/LongSparseArray;->keyAt(I)J
PLandroidx/collection/LongSparseArray;->keyAt(I)J
HSPLandroidx/collection/LongSparseArray;->put(JLjava/lang/Object;)V
HPLandroidx/collection/LongSparseArray;->put(JLjava/lang/Object;)V
HSPLandroidx/collection/LongSparseArray;->remove(J)V
PLandroidx/collection/LongSparseArray;->remove(J)V
HSPLandroidx/collection/LongSparseArray;->size()I
PLandroidx/collection/LongSparseArray;->size()I
HSPLandroidx/collection/LongSparseArray;->valueAt(I)Ljava/lang/Object;
PLandroidx/collection/LongSparseArray;->valueAt(I)Ljava/lang/Object;
Landroidx/collection/LruCache;
HSPLandroidx/collection/LruCache;-><init>(I)V
PLandroidx/collection/LruCache;-><init>(I)V
HSPLandroidx/collection/LruCache;->create(Ljava/lang/Object;)Ljava/lang/Object;
PLandroidx/collection/LruCache;->create(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/LruCache;->get(Ljava/lang/Object;)Ljava/lang/Object;
PLandroidx/collection/LruCache;->get(Ljava/lang/Object;)Ljava/lang/Object;
HSPLandroidx/collection/LruCache;->put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
PLandroidx/collection/LruCache;->put(Ljava/lang/Object;Ljava/la
gitextract_77iowqz2/
├── .editorconfig
├── .gitattributes
├── .github/
│ ├── .java-version
│ ├── FUNDING.yml
│ ├── ISSUE_TEMPLATE/
│ │ ├── 1_request_feature.yml
│ │ ├── 2_report_issue.yml
│ │ └── config.yml
│ ├── pull_request_template.md
│ ├── renovate.json5
│ └── workflows/
│ ├── build.yml
│ ├── release.yml
│ └── update_website.yml
├── .gitignore
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── app/
│ ├── build.gradle.kts
│ ├── google-services.json
│ ├── proguard-android-optimize.txt
│ ├── proguard-rules.pro
│ ├── shortcuts.xml
│ └── src/
│ ├── debug/
│ │ └── res/
│ │ └── drawable/
│ │ ├── ic_launcher_background.xml
│ │ └── ic_launcher_foreground.xml
│ ├── main/
│ │ ├── AndroidManifest.xml
│ │ ├── aidl/
│ │ │ └── mihon/
│ │ │ └── app/
│ │ │ └── shizuku/
│ │ │ └── IShellInterface.aidl
│ │ ├── baseline-prof.txt
│ │ ├── java/
│ │ │ ├── eu/
│ │ │ │ └── kanade/
│ │ │ │ ├── core/
│ │ │ │ │ ├── preference/
│ │ │ │ │ │ ├── CheckboxState.kt
│ │ │ │ │ │ └── PreferenceMutableState.kt
│ │ │ │ │ └── util/
│ │ │ │ │ ├── CollectionUtils.kt
│ │ │ │ │ └── SourceUtil.kt
│ │ │ │ ├── domain/
│ │ │ │ │ ├── DomainModule.kt
│ │ │ │ │ ├── base/
│ │ │ │ │ │ ├── BasePreferences.kt
│ │ │ │ │ │ └── ExtensionInstallerPreference.kt
│ │ │ │ │ ├── chapter/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── GetAvailableScanlators.kt
│ │ │ │ │ │ │ ├── SetReadStatus.kt
│ │ │ │ │ │ │ └── SyncChaptersWithSource.kt
│ │ │ │ │ │ └── model/
│ │ │ │ │ │ ├── Chapter.kt
│ │ │ │ │ │ └── ChapterFilter.kt
│ │ │ │ │ ├── download/
│ │ │ │ │ │ └── interactor/
│ │ │ │ │ │ └── DeleteDownload.kt
│ │ │ │ │ ├── extension/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── GetExtensionLanguages.kt
│ │ │ │ │ │ │ ├── GetExtensionSources.kt
│ │ │ │ │ │ │ ├── GetExtensionsByType.kt
│ │ │ │ │ │ │ └── TrustExtension.kt
│ │ │ │ │ │ └── model/
│ │ │ │ │ │ └── Extensions.kt
│ │ │ │ │ ├── manga/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── GetExcludedScanlators.kt
│ │ │ │ │ │ │ ├── SetExcludedScanlators.kt
│ │ │ │ │ │ │ ├── SetMangaViewerFlags.kt
│ │ │ │ │ │ │ └── UpdateManga.kt
│ │ │ │ │ │ └── model/
│ │ │ │ │ │ └── Manga.kt
│ │ │ │ │ ├── source/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── GetEnabledSources.kt
│ │ │ │ │ │ │ ├── GetIncognitoState.kt
│ │ │ │ │ │ │ ├── GetLanguagesWithSources.kt
│ │ │ │ │ │ │ ├── GetSourcesWithFavoriteCount.kt
│ │ │ │ │ │ │ ├── SetMigrateSorting.kt
│ │ │ │ │ │ │ ├── ToggleIncognito.kt
│ │ │ │ │ │ │ ├── ToggleLanguage.kt
│ │ │ │ │ │ │ ├── ToggleSource.kt
│ │ │ │ │ │ │ └── ToggleSourcePin.kt
│ │ │ │ │ │ ├── model/
│ │ │ │ │ │ │ └── Source.kt
│ │ │ │ │ │ └── service/
│ │ │ │ │ │ └── SourcePreferences.kt
│ │ │ │ │ ├── track/
│ │ │ │ │ │ ├── interactor/
│ │ │ │ │ │ │ ├── AddTracks.kt
│ │ │ │ │ │ │ ├── RefreshTracks.kt
│ │ │ │ │ │ │ ├── SyncChapterProgressWithTrack.kt
│ │ │ │ │ │ │ └── TrackChapter.kt
│ │ │ │ │ │ ├── model/
│ │ │ │ │ │ │ ├── AutoTrackState.kt
│ │ │ │ │ │ │ └── Track.kt
│ │ │ │ │ │ ├── service/
│ │ │ │ │ │ │ ├── DelayedTrackingUpdateJob.kt
│ │ │ │ │ │ │ └── TrackPreferences.kt
│ │ │ │ │ │ └── store/
│ │ │ │ │ │ └── DelayedTrackingStore.kt
│ │ │ │ │ └── ui/
│ │ │ │ │ ├── UiPreferences.kt
│ │ │ │ │ └── model/
│ │ │ │ │ ├── AppTheme.kt
│ │ │ │ │ ├── TabletUiMode.kt
│ │ │ │ │ └── ThemeMode.kt
│ │ │ │ ├── presentation/
│ │ │ │ │ ├── browse/
│ │ │ │ │ │ ├── BrowseSourceScreen.kt
│ │ │ │ │ │ ├── ExtensionDetailsScreen.kt
│ │ │ │ │ │ ├── ExtensionFilterScreen.kt
│ │ │ │ │ │ ├── ExtensionsScreen.kt
│ │ │ │ │ │ ├── GlobalSearchScreen.kt
│ │ │ │ │ │ ├── MigrateSearchScreen.kt
│ │ │ │ │ │ ├── MigrateSourceScreen.kt
│ │ │ │ │ │ ├── SourcesFilterScreen.kt
│ │ │ │ │ │ ├── SourcesScreen.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── BaseBrowseItem.kt
│ │ │ │ │ │ ├── BaseSourceItem.kt
│ │ │ │ │ │ ├── BrowseBadges.kt
│ │ │ │ │ │ ├── BrowseIcons.kt
│ │ │ │ │ │ ├── BrowseSourceComfortableGrid.kt
│ │ │ │ │ │ ├── BrowseSourceCompactGrid.kt
│ │ │ │ │ │ ├── BrowseSourceDialogs.kt
│ │ │ │ │ │ ├── BrowseSourceList.kt
│ │ │ │ │ │ ├── BrowseSourceLoadingItem.kt
│ │ │ │ │ │ ├── BrowseSourceToolbar.kt
│ │ │ │ │ │ ├── GlobalSearchCardRow.kt
│ │ │ │ │ │ ├── GlobalSearchResultItems.kt
│ │ │ │ │ │ └── GlobalSearchToolbar.kt
│ │ │ │ │ ├── category/
│ │ │ │ │ │ ├── CategoryExtensions.kt
│ │ │ │ │ │ ├── CategoryScreen.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── CategoryDialogs.kt
│ │ │ │ │ │ ├── CategoryFloatingActionButton.kt
│ │ │ │ │ │ └── CategoryListItem.kt
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── AdaptiveSheet.kt
│ │ │ │ │ │ ├── AppBar.kt
│ │ │ │ │ │ ├── Banners.kt
│ │ │ │ │ │ ├── DateText.kt
│ │ │ │ │ │ ├── DownloadDropdownMenu.kt
│ │ │ │ │ │ ├── DropdownMenu.kt
│ │ │ │ │ │ ├── EmptyScreen.kt
│ │ │ │ │ │ ├── TabbedDialog.kt
│ │ │ │ │ │ └── TabbedScreen.kt
│ │ │ │ │ ├── crash/
│ │ │ │ │ │ └── CrashScreen.kt
│ │ │ │ │ ├── history/
│ │ │ │ │ │ ├── HistoryScreen.kt
│ │ │ │ │ │ ├── HistoryScreenModelStateProvider.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── HistoryDialogs.kt
│ │ │ │ │ │ ├── HistoryItem.kt
│ │ │ │ │ │ └── HistoryWithRelationsProvider.kt
│ │ │ │ │ ├── library/
│ │ │ │ │ │ ├── DeleteLibraryMangaDialog.kt
│ │ │ │ │ │ ├── LibrarySettingsDialog.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── CommonMangaItem.kt
│ │ │ │ │ │ ├── GlobalSearchItem.kt
│ │ │ │ │ │ ├── LazyLibraryGrid.kt
│ │ │ │ │ │ ├── LibraryBadges.kt
│ │ │ │ │ │ ├── LibraryComfortableGrid.kt
│ │ │ │ │ │ ├── LibraryCompactGrid.kt
│ │ │ │ │ │ ├── LibraryContent.kt
│ │ │ │ │ │ ├── LibraryList.kt
│ │ │ │ │ │ ├── LibraryPager.kt
│ │ │ │ │ │ ├── LibraryTabs.kt
│ │ │ │ │ │ └── LibraryToolbar.kt
│ │ │ │ │ ├── manga/
│ │ │ │ │ │ ├── ChapterSettingsDialog.kt
│ │ │ │ │ │ ├── DuplicateMangaDialog.kt
│ │ │ │ │ │ ├── MangaNotesScreen.kt
│ │ │ │ │ │ ├── MangaScreen.kt
│ │ │ │ │ │ ├── MangaScreenConstants.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── BaseMangaListItem.kt
│ │ │ │ │ │ ├── ChapterDownloadIndicator.kt
│ │ │ │ │ │ ├── ChapterHeader.kt
│ │ │ │ │ │ ├── DotSeparatorText.kt
│ │ │ │ │ │ ├── MangaBottomActionMenu.kt
│ │ │ │ │ │ ├── MangaChapterListItem.kt
│ │ │ │ │ │ ├── MangaCover.kt
│ │ │ │ │ │ ├── MangaCoverDialog.kt
│ │ │ │ │ │ ├── MangaDialogs.kt
│ │ │ │ │ │ ├── MangaInfoHeader.kt
│ │ │ │ │ │ ├── MangaNotesDisplay.kt
│ │ │ │ │ │ ├── MangaNotesSection.kt
│ │ │ │ │ │ ├── MangaNotesTextArea.kt
│ │ │ │ │ │ ├── MangaToolbar.kt
│ │ │ │ │ │ ├── MarkdownRender.kt
│ │ │ │ │ │ ├── MissingChapterCountListItem.kt
│ │ │ │ │ │ └── ScanlatorFilterDialog.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/
│ │ │ │ │ │ │ │ │ └── ClearDatabaseScreen.kt
│ │ │ │ │ │ │ │ ├── appearance/
│ │ │ │ │ │ │ │ │ └── AppLanguageScreen.kt
│ │ │ │ │ │ │ │ ├── browse/
│ │ │ │ │ │ │ │ │ ├── ExtensionReposScreen.kt
│ │ │ │ │ │ │ │ │ ├── ExtensionReposScreenModel.kt
│ │ │ │ │ │ │ │ │ └── components/
│ │ │ │ │ │ │ │ │ ├── ExtensionReposContent.kt
│ │ │ │ │ │ │ │ │ ├── ExtensionReposDialogs.kt
│ │ │ │ │ │ │ │ │ └── ExtensionReposScreen.kt
│ │ │ │ │ │ │ │ ├── data/
│ │ │ │ │ │ │ │ │ ├── CreateBackupScreen.kt
│ │ │ │ │ │ │ │ │ ├── RestoreBackupScreen.kt
│ │ │ │ │ │ │ │ │ └── StorageInfo.kt
│ │ │ │ │ │ │ │ └── debug/
│ │ │ │ │ │ │ │ ├── BackupSchemaScreen.kt
│ │ │ │ │ │ │ │ ├── DebugInfoScreen.kt
│ │ │ │ │ │ │ │ └── WorkerInfoScreen.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/
│ │ │ │ │ │ ├── StatsScreenContent.kt
│ │ │ │ │ │ ├── StatsScreenState.kt
│ │ │ │ │ │ ├── components/
│ │ │ │ │ │ │ └── StatsItem.kt
│ │ │ │ │ │ └── data/
│ │ │ │ │ │ └── StatsData.kt
│ │ │ │ │ ├── reader/
│ │ │ │ │ │ ├── ChapterTransition.kt
│ │ │ │ │ │ ├── DisplayRefreshHost.kt
│ │ │ │ │ │ ├── OrientationSelectDialog.kt
│ │ │ │ │ │ ├── ReaderContentOverlay.kt
│ │ │ │ │ │ ├── ReaderPageActionsDialog.kt
│ │ │ │ │ │ ├── ReaderPageIndicator.kt
│ │ │ │ │ │ ├── ReadingModeSelectDialog.kt
│ │ │ │ │ │ ├── appbars/
│ │ │ │ │ │ │ ├── ReaderAppBars.kt
│ │ │ │ │ │ │ ├── ReaderBottomBar.kt
│ │ │ │ │ │ │ └── ReaderTopBar.kt
│ │ │ │ │ │ ├── components/
│ │ │ │ │ │ │ ├── ChapterNavigator.kt
│ │ │ │ │ │ │ └── ModeSelectionDialog.kt
│ │ │ │ │ │ └── settings/
│ │ │ │ │ │ ├── ColorFilterPage.kt
│ │ │ │ │ │ ├── GeneralSettingsPage.kt
│ │ │ │ │ │ ├── ReaderSettingsDialog.kt
│ │ │ │ │ │ └── ReadingModePage.kt
│ │ │ │ │ ├── theme/
│ │ │ │ │ │ ├── TachiyomiTheme.kt
│ │ │ │ │ │ └── colorscheme/
│ │ │ │ │ │ ├── BaseColorScheme.kt
│ │ │ │ │ │ ├── CatppuccinColorScheme.kt
│ │ │ │ │ │ ├── GreenAppleColorScheme.kt
│ │ │ │ │ │ ├── LavenderColorScheme.kt
│ │ │ │ │ │ ├── MidnightDuskColorScheme.kt
│ │ │ │ │ │ ├── MonetColorScheme.kt
│ │ │ │ │ │ ├── MonochromeColorScheme.kt
│ │ │ │ │ │ ├── NordColorScheme.kt
│ │ │ │ │ │ ├── StrawberryColorScheme.kt
│ │ │ │ │ │ ├── TachiyomiColorScheme.kt
│ │ │ │ │ │ ├── TakoColorScheme.kt
│ │ │ │ │ │ ├── TealTurqoiseColorScheme.kt
│ │ │ │ │ │ ├── TidalWaveColorScheme.kt
│ │ │ │ │ │ ├── YinYangColorScheme.kt
│ │ │ │ │ │ └── YotsubaColorScheme.kt
│ │ │ │ │ ├── track/
│ │ │ │ │ │ ├── TrackInfoDialogHome.kt
│ │ │ │ │ │ ├── TrackInfoDialogHomePreviewProvider.kt
│ │ │ │ │ │ ├── TrackInfoDialogSelector.kt
│ │ │ │ │ │ ├── TrackerSearch.kt
│ │ │ │ │ │ ├── TrackerSearchPreviewProvider.kt
│ │ │ │ │ │ └── components/
│ │ │ │ │ │ ├── TrackLogoIcon.kt
│ │ │ │ │ │ └── TrackLogoIconPreviewProvider.kt
│ │ │ │ │ ├── updates/
│ │ │ │ │ │ ├── UpdatesDeleteConfirmationDialog.kt
│ │ │ │ │ │ ├── UpdatesFilterDialog.kt
│ │ │ │ │ │ ├── UpdatesScreen.kt
│ │ │ │ │ │ └── UpdatesUiItem.kt
│ │ │ │ │ ├── util/
│ │ │ │ │ │ ├── ChapterNumberFormatter.kt
│ │ │ │ │ │ ├── ExceptionFormatter.kt
│ │ │ │ │ │ ├── FastScrollAnimateItem.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
│ │ │ │ │ │ │ ├── BackupFileValidator.kt
│ │ │ │ │ │ │ ├── BackupNotifier.kt
│ │ │ │ │ │ │ ├── create/
│ │ │ │ │ │ │ │ ├── BackupCreateJob.kt
│ │ │ │ │ │ │ │ ├── BackupCreator.kt
│ │ │ │ │ │ │ │ ├── BackupOptions.kt
│ │ │ │ │ │ │ │ └── creators/
│ │ │ │ │ │ │ │ ├── CategoriesBackupCreator.kt
│ │ │ │ │ │ │ │ ├── ExtensionRepoBackupCreator.kt
│ │ │ │ │ │ │ │ ├── MangaBackupCreator.kt
│ │ │ │ │ │ │ │ ├── PreferenceBackupCreator.kt
│ │ │ │ │ │ │ │ └── SourcesBackupCreator.kt
│ │ │ │ │ │ │ ├── models/
│ │ │ │ │ │ │ │ ├── Backup.kt
│ │ │ │ │ │ │ │ ├── BackupCategory.kt
│ │ │ │ │ │ │ │ ├── BackupChapter.kt
│ │ │ │ │ │ │ │ ├── BackupExtensionRepos.kt
│ │ │ │ │ │ │ │ ├── BackupHistory.kt
│ │ │ │ │ │ │ │ ├── BackupManga.kt
│ │ │ │ │ │ │ │ ├── BackupPreference.kt
│ │ │ │ │ │ │ │ ├── BackupSource.kt
│ │ │ │ │ │ │ │ └── BackupTracking.kt
│ │ │ │ │ │ │ └── restore/
│ │ │ │ │ │ │ ├── BackupRestoreJob.kt
│ │ │ │ │ │ │ ├── BackupRestorer.kt
│ │ │ │ │ │ │ ├── RestoreOptions.kt
│ │ │ │ │ │ │ └── restorers/
│ │ │ │ │ │ │ ├── CategoriesRestorer.kt
│ │ │ │ │ │ │ ├── ExtensionRepoRestorer.kt
│ │ │ │ │ │ │ ├── MangaRestorer.kt
│ │ │ │ │ │ │ └── PreferenceRestorer.kt
│ │ │ │ │ │ ├── cache/
│ │ │ │ │ │ │ ├── ChapterCache.kt
│ │ │ │ │ │ │ └── CoverCache.kt
│ │ │ │ │ │ ├── coil/
│ │ │ │ │ │ │ ├── BufferedSourceFetcher.kt
│ │ │ │ │ │ │ ├── MangaCoverFetcher.kt
│ │ │ │ │ │ │ ├── MangaCoverKeyer.kt
│ │ │ │ │ │ │ ├── TachiyomiImageDecoder.kt
│ │ │ │ │ │ │ └── Utils.kt
│ │ │ │ │ │ ├── database/
│ │ │ │ │ │ │ └── models/
│ │ │ │ │ │ │ ├── Chapter.kt
│ │ │ │ │ │ │ ├── ChapterImpl.kt
│ │ │ │ │ │ │ ├── Track.kt
│ │ │ │ │ │ │ └── TrackImpl.kt
│ │ │ │ │ │ ├── download/
│ │ │ │ │ │ │ ├── DownloadCache.kt
│ │ │ │ │ │ │ ├── DownloadJob.kt
│ │ │ │ │ │ │ ├── DownloadManager.kt
│ │ │ │ │ │ │ ├── DownloadNotifier.kt
│ │ │ │ │ │ │ ├── DownloadPendingDeleter.kt
│ │ │ │ │ │ │ ├── DownloadProvider.kt
│ │ │ │ │ │ │ ├── DownloadStore.kt
│ │ │ │ │ │ │ ├── Downloader.kt
│ │ │ │ │ │ │ └── model/
│ │ │ │ │ │ │ └── Download.kt
│ │ │ │ │ │ ├── export/
│ │ │ │ │ │ │ └── LibraryExporter.kt
│ │ │ │ │ │ ├── library/
│ │ │ │ │ │ │ ├── LibraryUpdateJob.kt
│ │ │ │ │ │ │ ├── LibraryUpdateNotifier.kt
│ │ │ │ │ │ │ └── MetadataUpdateJob.kt
│ │ │ │ │ │ ├── notification/
│ │ │ │ │ │ │ ├── NotificationHandler.kt
│ │ │ │ │ │ │ ├── NotificationReceiver.kt
│ │ │ │ │ │ │ └── Notifications.kt
│ │ │ │ │ │ ├── preference/
│ │ │ │ │ │ │ └── SharedPreferencesDataStore.kt
│ │ │ │ │ │ ├── saver/
│ │ │ │ │ │ │ └── ImageSaver.kt
│ │ │ │ │ │ ├── track/
│ │ │ │ │ │ │ ├── BaseTracker.kt
│ │ │ │ │ │ │ ├── DeletableTracker.kt
│ │ │ │ │ │ │ ├── EnhancedTracker.kt
│ │ │ │ │ │ │ ├── Tracker.kt
│ │ │ │ │ │ │ ├── TrackerManager.kt
│ │ │ │ │ │ │ ├── anilist/
│ │ │ │ │ │ │ │ ├── Anilist.kt
│ │ │ │ │ │ │ │ ├── AnilistApi.kt
│ │ │ │ │ │ │ │ ├── AnilistInterceptor.kt
│ │ │ │ │ │ │ │ ├── AnilistUtils.kt
│ │ │ │ │ │ │ │ └── dto/
│ │ │ │ │ │ │ │ ├── ALAddManga.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
│ │ │ │ │ │ │ ├── kavita/
│ │ │ │ │ │ │ │ ├── Kavita.kt
│ │ │ │ │ │ │ │ ├── KavitaApi.kt
│ │ │ │ │ │ │ │ ├── KavitaInterceptor.kt
│ │ │ │ │ │ │ │ └── KavitaModels.kt
│ │ │ │ │ │ │ ├── kitsu/
│ │ │ │ │ │ │ │ ├── Kitsu.kt
│ │ │ │ │ │ │ │ ├── KitsuApi.kt
│ │ │ │ │ │ │ │ ├── KitsuDateHelper.kt
│ │ │ │ │ │ │ │ ├── KitsuInterceptor.kt
│ │ │ │ │ │ │ │ ├── KitsuUtils.kt
│ │ │ │ │ │ │ │ └── dto/
│ │ │ │ │ │ │ │ ├── KitsuAddManga.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/
│ │ │ │ │ │ │ │ └── TrackSearch.kt
│ │ │ │ │ │ │ ├── myanimelist/
│ │ │ │ │ │ │ │ ├── MyAnimeList.kt
│ │ │ │ │ │ │ │ ├── MyAnimeListApi.kt
│ │ │ │ │ │ │ │ ├── MyAnimeListInterceptor.kt
│ │ │ │ │ │ │ │ ├── MyAnimeListUtils.kt
│ │ │ │ │ │ │ │ └── dto/
│ │ │ │ │ │ │ │ ├── MALList.kt
│ │ │ │ │ │ │ │ ├── MALManga.kt
│ │ │ │ │ │ │ │ ├── MALOAuth.kt
│ │ │ │ │ │ │ │ ├── MALSearch.kt
│ │ │ │ │ │ │ │ └── MALUser.kt
│ │ │ │ │ │ │ ├── shikimori/
│ │ │ │ │ │ │ │ ├── Shikimori.kt
│ │ │ │ │ │ │ │ ├── ShikimoriApi.kt
│ │ │ │ │ │ │ │ ├── ShikimoriInterceptor.kt
│ │ │ │ │ │ │ │ ├── ShikimoriUtils.kt
│ │ │ │ │ │ │ │ └── dto/
│ │ │ │ │ │ │ │ ├── SMAddMangaResponse.kt
│ │ │ │ │ │ │ │ ├── SMManga.kt
│ │ │ │ │ │ │ │ ├── SMOAuth.kt
│ │ │ │ │ │ │ │ ├── SMUser.kt
│ │ │ │ │ │ │ │ └── SMUserListEntry.kt
│ │ │ │ │ │ │ └── suwayomi/
│ │ │ │ │ │ │ ├── Suwayomi.kt
│ │ │ │ │ │ │ ├── SuwayomiApi.kt
│ │ │ │ │ │ │ └── SuwayomiModels.kt
│ │ │ │ │ │ └── updater/
│ │ │ │ │ │ ├── AppUpdateChecker.kt
│ │ │ │ │ │ ├── AppUpdateDownloadJob.kt
│ │ │ │ │ │ └── AppUpdateNotifier.kt
│ │ │ │ │ ├── di/
│ │ │ │ │ │ ├── AppModule.kt
│ │ │ │ │ │ └── PreferenceModule.kt
│ │ │ │ │ ├── extension/
│ │ │ │ │ │ ├── ExtensionManager.kt
│ │ │ │ │ │ ├── api/
│ │ │ │ │ │ │ ├── ExtensionApi.kt
│ │ │ │ │ │ │ └── ExtensionUpdateNotifier.kt
│ │ │ │ │ │ ├── installer/
│ │ │ │ │ │ │ ├── Installer.kt
│ │ │ │ │ │ │ ├── PackageInstallerInstaller.kt
│ │ │ │ │ │ │ └── ShizukuInstaller.kt
│ │ │ │ │ │ ├── model/
│ │ │ │ │ │ │ ├── Extension.kt
│ │ │ │ │ │ │ ├── InstallStep.kt
│ │ │ │ │ │ │ └── LoadResult.kt
│ │ │ │ │ │ └── util/
│ │ │ │ │ │ ├── ExtensionInstallActivity.kt
│ │ │ │ │ │ ├── ExtensionInstallReceiver.kt
│ │ │ │ │ │ ├── ExtensionInstallService.kt
│ │ │ │ │ │ ├── ExtensionInstaller.kt
│ │ │ │ │ │ └── ExtensionLoader.kt
│ │ │ │ │ ├── source/
│ │ │ │ │ │ ├── AndroidSourceManager.kt
│ │ │ │ │ │ └── SourceExtensions.kt
│ │ │ │ │ ├── ui/
│ │ │ │ │ │ ├── base/
│ │ │ │ │ │ │ ├── activity/
│ │ │ │ │ │ │ │ └── BaseActivity.kt
│ │ │ │ │ │ │ └── delegate/
│ │ │ │ │ │ │ ├── SecureActivityDelegate.kt
│ │ │ │ │ │ │ └── ThemingDelegate.kt
│ │ │ │ │ │ ├── browse/
│ │ │ │ │ │ │ ├── BrowseTab.kt
│ │ │ │ │ │ │ ├── extension/
│ │ │ │ │ │ │ │ ├── ExtensionFilterScreen.kt
│ │ │ │ │ │ │ │ ├── ExtensionFilterScreenModel.kt
│ │ │ │ │ │ │ │ ├── ExtensionsScreenModel.kt
│ │ │ │ │ │ │ │ ├── ExtensionsTab.kt
│ │ │ │ │ │ │ │ └── details/
│ │ │ │ │ │ │ │ ├── ExtensionDetailsScreen.kt
│ │ │ │ │ │ │ │ ├── ExtensionDetailsScreenModel.kt
│ │ │ │ │ │ │ │ └── SourcePreferencesScreen.kt
│ │ │ │ │ │ │ ├── migration/
│ │ │ │ │ │ │ │ ├── manga/
│ │ │ │ │ │ │ │ │ ├── MigrateMangaScreen.kt
│ │ │ │ │ │ │ │ │ └── MigrateMangaScreenModel.kt
│ │ │ │ │ │ │ │ ├── search/
│ │ │ │ │ │ │ │ │ ├── MigrateSearchScreen.kt
│ │ │ │ │ │ │ │ │ ├── MigrateSearchScreenModel.kt
│ │ │ │ │ │ │ │ │ └── MigrateSourceSearchScreen.kt
│ │ │ │ │ │ │ │ └── sources/
│ │ │ │ │ │ │ │ ├── MigrateSourceScreenModel.kt
│ │ │ │ │ │ │ │ └── MigrateSourceTab.kt
│ │ │ │ │ │ │ └── source/
│ │ │ │ │ │ │ ├── SourcesFilterScreen.kt
│ │ │ │ │ │ │ ├── SourcesFilterScreenModel.kt
│ │ │ │ │ │ │ ├── SourcesScreenModel.kt
│ │ │ │ │ │ │ ├── SourcesTab.kt
│ │ │ │ │ │ │ ├── browse/
│ │ │ │ │ │ │ │ ├── BrowseSourceScreen.kt
│ │ │ │ │ │ │ │ ├── BrowseSourceScreenModel.kt
│ │ │ │ │ │ │ │ └── SourceFilterDialog.kt
│ │ │ │ │ │ │ └── globalsearch/
│ │ │ │ │ │ │ ├── GlobalSearchScreen.kt
│ │ │ │ │ │ │ ├── GlobalSearchScreenModel.kt
│ │ │ │ │ │ │ └── SearchScreenModel.kt
│ │ │ │ │ │ ├── category/
│ │ │ │ │ │ │ ├── CategoryScreen.kt
│ │ │ │ │ │ │ └── CategoryScreenModel.kt
│ │ │ │ │ │ ├── deeplink/
│ │ │ │ │ │ │ ├── DeepLinkActivity.kt
│ │ │ │ │ │ │ ├── DeepLinkScreen.kt
│ │ │ │ │ │ │ └── DeepLinkScreenModel.kt
│ │ │ │ │ │ ├── download/
│ │ │ │ │ │ │ ├── DownloadAdapter.kt
│ │ │ │ │ │ │ ├── DownloadHeaderHolder.kt
│ │ │ │ │ │ │ ├── DownloadHeaderItem.kt
│ │ │ │ │ │ │ ├── DownloadHolder.kt
│ │ │ │ │ │ │ ├── DownloadItem.kt
│ │ │ │ │ │ │ ├── DownloadQueueScreen.kt
│ │ │ │ │ │ │ └── DownloadQueueScreenModel.kt
│ │ │ │ │ │ ├── history/
│ │ │ │ │ │ │ ├── HistoryScreenModel.kt
│ │ │ │ │ │ │ └── HistoryTab.kt
│ │ │ │ │ │ ├── home/
│ │ │ │ │ │ │ └── HomeScreen.kt
│ │ │ │ │ │ ├── library/
│ │ │ │ │ │ │ ├── LibraryItem.kt
│ │ │ │ │ │ │ ├── LibraryScreenModel.kt
│ │ │ │ │ │ │ ├── LibrarySettingsScreenModel.kt
│ │ │ │ │ │ │ └── LibraryTab.kt
│ │ │ │ │ │ ├── main/
│ │ │ │ │ │ │ └── MainActivity.kt
│ │ │ │ │ │ ├── manga/
│ │ │ │ │ │ │ ├── MangaCoverScreenModel.kt
│ │ │ │ │ │ │ ├── MangaScreen.kt
│ │ │ │ │ │ │ ├── MangaScreenModel.kt
│ │ │ │ │ │ │ ├── notes/
│ │ │ │ │ │ │ │ └── MangaNotesScreen.kt
│ │ │ │ │ │ │ └── track/
│ │ │ │ │ │ │ ├── TrackInfoDialog.kt
│ │ │ │ │ │ │ └── TrackItem.kt
│ │ │ │ │ │ ├── more/
│ │ │ │ │ │ │ ├── MoreTab.kt
│ │ │ │ │ │ │ ├── NewUpdateScreen.kt
│ │ │ │ │ │ │ └── OnboardingScreen.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/
│ │ │ │ │ │ │ ├── SettingsScreen.kt
│ │ │ │ │ │ │ └── track/
│ │ │ │ │ │ │ ├── BaseOAuthLoginActivity.kt
│ │ │ │ │ │ │ └── TrackLoginActivity.kt
│ │ │ │ │ │ ├── stats/
│ │ │ │ │ │ │ ├── StatsScreen.kt
│ │ │ │ │ │ │ └── StatsScreenModel.kt
│ │ │ │ │ │ ├── updates/
│ │ │ │ │ │ │ ├── UpdatesScreenModel.kt
│ │ │ │ │ │ │ ├── UpdatesSettingsScreenModel.kt
│ │ │ │ │ │ │ └── UpdatesTab.kt
│ │ │ │ │ │ └── webview/
│ │ │ │ │ │ ├── WebViewActivity.kt
│ │ │ │ │ │ ├── WebViewScreen.kt
│ │ │ │ │ │ └── WebViewScreenModel.kt
│ │ │ │ │ ├── util/
│ │ │ │ │ │ ├── CrashLogUtil.kt
│ │ │ │ │ │ ├── MangaExtensions.kt
│ │ │ │ │ │ ├── PkceUtil.kt
│ │ │ │ │ │ ├── chapter/
│ │ │ │ │ │ │ ├── ChapterFilterDownloaded.kt
│ │ │ │ │ │ │ ├── ChapterGetNextUnread.kt
│ │ │ │ │ │ │ └── ChapterRemoveDuplicates.kt
│ │ │ │ │ │ ├── lang/
│ │ │ │ │ │ │ ├── CloseableExtensions.kt
│ │ │ │ │ │ │ ├── DateExtensions.kt
│ │ │ │ │ │ │ └── RectFExtensions.kt
│ │ │ │ │ │ ├── storage/
│ │ │ │ │ │ │ ├── FileExtensions.kt
│ │ │ │ │ │ │ └── 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
│ │ │ │ │ │ │ └── WorkManagerExtensions.kt
│ │ │ │ │ │ └── view/
│ │ │ │ │ │ ├── EditTextPreferenceExtensions.kt
│ │ │ │ │ │ ├── ViewExtensions.kt
│ │ │ │ │ │ └── WindowExtensions.kt
│ │ │ │ │ └── widget/
│ │ │ │ │ ├── TachiyomiTextInputEditText.kt
│ │ │ │ │ └── ViewPagerAdapter.kt
│ │ │ │ └── test/
│ │ │ │ └── DummyTracker.kt
│ │ │ └── mihon/
│ │ │ ├── app/
│ │ │ │ └── shizuku/
│ │ │ │ └── ShellInterface.kt
│ │ │ ├── core/
│ │ │ │ ├── designsystem/
│ │ │ │ │ └── utils/
│ │ │ │ │ └── WindowSize.kt
│ │ │ │ └── migration/
│ │ │ │ ├── Migration.kt
│ │ │ │ ├── MigrationCompletedListener.kt
│ │ │ │ ├── MigrationContext.kt
│ │ │ │ ├── MigrationJobFactory.kt
│ │ │ │ ├── MigrationStrategy.kt
│ │ │ │ ├── MigrationStrategyFactory.kt
│ │ │ │ ├── Migrator.kt
│ │ │ │ └── migrations/
│ │ │ │ ├── CategoryPreferencesCleanupMigration.kt
│ │ │ │ ├── InstallationIdMigration.kt
│ │ │ │ ├── Migrations.kt
│ │ │ │ ├── SetupBackupCreateMigration.kt
│ │ │ │ ├── SetupLibraryUpdateMigration.kt
│ │ │ │ └── TrustExtensionRepositoryMigration.kt
│ │ │ ├── domain/
│ │ │ │ └── migration/
│ │ │ │ ├── models/
│ │ │ │ │ └── MigrationFlag.kt
│ │ │ │ └── usecases/
│ │ │ │ └── MigrateMangaUseCase.kt
│ │ │ └── feature/
│ │ │ ├── common/
│ │ │ │ └── utils/
│ │ │ │ └── MigrationFlag.kt
│ │ │ ├── migration/
│ │ │ │ ├── config/
│ │ │ │ │ ├── MigrationConfigScreen.kt
│ │ │ │ │ └── MigrationConfigScreenSheet.kt
│ │ │ │ ├── dialog/
│ │ │ │ │ └── MigrateMangaDialog.kt
│ │ │ │ └── list/
│ │ │ │ ├── MigrationListScreen.kt
│ │ │ │ ├── MigrationListScreenContent.kt
│ │ │ │ ├── MigrationListScreenModel.kt
│ │ │ │ ├── components/
│ │ │ │ │ ├── MigrationExitDialog.kt
│ │ │ │ │ ├── MigrationMangaDialog.kt
│ │ │ │ │ └── MigrationProgressDialog.kt
│ │ │ │ ├── models/
│ │ │ │ │ └── MigratingManga.kt
│ │ │ │ └── search/
│ │ │ │ ├── BaseSmartSearchEngine.kt
│ │ │ │ └── SmartSourceSearchEngine.kt
│ │ │ └── upcoming/
│ │ │ ├── UpcomingScreen.kt
│ │ │ ├── UpcomingScreenContent.kt
│ │ │ ├── UpcomingScreenModel.kt
│ │ │ ├── UpcomingUIModel.kt
│ │ │ └── components/
│ │ │ ├── UpcomingItem.kt
│ │ │ └── calendar/
│ │ │ ├── Calendar.kt
│ │ │ ├── CalendarDay.kt
│ │ │ ├── CalendarHeader.kt
│ │ │ └── CalendarIndicator.kt
│ │ └── res/
│ │ ├── anim/
│ │ │ ├── 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_browse_enter.xml
│ │ │ ├── anim_caret_down.xml
│ │ │ ├── anim_history_enter.xml
│ │ │ ├── anim_library_enter.xml
│ │ │ ├── anim_more_enter.xml
│ │ │ ├── anim_updates_enter.xml
│ │ │ ├── brand_anilist.xml
│ │ │ ├── brand_bangumi.xml
│ │ │ ├── brand_kavita.xml
│ │ │ ├── brand_kitsu.xml
│ │ │ ├── brand_komga.xml
│ │ │ ├── brand_mangaupdates.xml
│ │ │ ├── brand_myanimelist.xml
│ │ │ ├── brand_shikimori.xml
│ │ │ ├── brand_suwayomi.xml
│ │ │ ├── cover_error.xml
│ │ │ ├── ic_book_24dp.xml
│ │ │ ├── ic_close_24dp.xml
│ │ │ ├── ic_crop_24dp.xml
│ │ │ ├── ic_crop_off_24dp.xml
│ │ │ ├── ic_done_24dp.xml
│ │ │ ├── ic_done_prev_24dp.xml
│ │ │ ├── ic_download_chapter_24dp.xml
│ │ │ ├── ic_drag_handle_24dp.xml
│ │ │ ├── ic_extension_24dp.xml
│ │ │ ├── ic_folder_24dp.xml
│ │ │ ├── ic_glasses_24dp.xml
│ │ │ ├── ic_info_24dp.xml
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ ├── ic_launcher_monochrome.xml
│ │ │ ├── ic_mihon.xml
│ │ │ ├── ic_mihon_splash.xml
│ │ │ ├── ic_overflow_24dp.xml
│ │ │ ├── ic_pause_24dp.xml
│ │ │ ├── ic_photo_24dp.xml
│ │ │ ├── ic_play_arrow_24dp.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_system_update_alt_white_24dp.xml
│ │ │ ├── ic_tab_close_24px.xml
│ │ │ ├── ic_warning_white_24dp.xml
│ │ │ ├── line_divider.xml
│ │ │ ├── material_popup_background.xml
│ │ │ ├── sc_collections_bookmark_48dp.xml
│ │ │ ├── sc_explore_48dp.xml
│ │ │ ├── sc_history_48dp.xml
│ │ │ └── sc_new_releases_48dp.xml
│ │ ├── layout/
│ │ │ ├── download_header.xml
│ │ │ ├── download_item.xml
│ │ │ ├── download_list.xml
│ │ │ ├── pref_widget_switch_material.xml
│ │ │ ├── reader_activity.xml
│ │ │ └── reader_error.xml
│ │ ├── menu/
│ │ │ └── download_single.xml
│ │ ├── mipmap/
│ │ │ └── ic_launcher.xml
│ │ ├── values/
│ │ │ ├── bools.xml
│ │ │ ├── dimens.xml
│ │ │ ├── ids.xml
│ │ │ ├── styles.xml
│ │ │ └── themes.xml
│ │ ├── values-night/
│ │ │ ├── bools.xml
│ │ │ └── themes.xml
│ │ ├── values-night-v31/
│ │ │ └── themes.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
│ └── kotlin/
│ ├── eu/
│ │ └── kanade/
│ │ └── tachiyomi/
│ │ ├── core/
│ │ │ └── security/
│ │ │ ├── PrivacyPreferences.kt
│ │ │ └── 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
│ │ └── system/
│ │ ├── DensityExtensions.kt
│ │ ├── DeviceUtil.kt
│ │ ├── GLUtil.kt
│ │ ├── ToastExtensions.kt
│ │ └── WebViewUtil.kt
│ ├── mihon/
│ │ └── core/
│ │ └── common/
│ │ ├── FeatureFlags.kt
│ │ └── utils/
│ │ └── Set.kt
│ └── tachiyomi/
│ └── core/
│ └── common/
│ ├── Constants.kt
│ ├── 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
│ └── 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/
│ └── MangaDetails.kt
├── data/
│ ├── build.gradle.kts
│ ├── consumer-rules.pro
│ ├── proguard-rules.pro
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ ├── java/
│ │ ├── mihon/
│ │ │ └── data/
│ │ │ └── repository/
│ │ │ └── ExtensionRepoRepositoryImpl.kt
│ │ └── tachiyomi/
│ │ └── data/
│ │ ├── AndroidDatabaseHandler.kt
│ │ ├── DatabaseAdapter.kt
│ │ ├── DatabaseHandler.kt
│ │ ├── QueryPagingSource.kt
│ │ ├── TransactionContext.kt
│ │ ├── category/
│ │ │ └── CategoryRepositoryImpl.kt
│ │ ├── chapter/
│ │ │ ├── ChapterRepositoryImpl.kt
│ │ │ └── ChapterSanitizer.kt
│ │ ├── history/
│ │ │ ├── HistoryMapper.kt
│ │ │ └── HistoryRepositoryImpl.kt
│ │ ├── manga/
│ │ │ ├── MangaMapper.kt
│ │ │ └── MangaRepositoryImpl.kt
│ │ ├── release/
│ │ │ ├── GithubRelease.kt
│ │ │ └── ReleaseServiceImpl.kt
│ │ ├── source/
│ │ │ ├── SourcePagingSource.kt
│ │ │ ├── SourceRepositoryImpl.kt
│ │ │ └── StubSourceRepositoryImpl.kt
│ │ ├── track/
│ │ │ ├── TrackMapper.kt
│ │ │ └── TrackRepositoryImpl.kt
│ │ └── updates/
│ │ └── UpdatesRepositoryImpl.kt
│ └── sqldelight/
│ └── tachiyomi/
│ ├── 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
│ │ ├── 2.sqm
│ │ ├── 3.sqm
│ │ ├── 4.sqm
│ │ ├── 5.sqm
│ │ ├── 6.sqm
│ │ ├── 7.sqm
│ │ ├── 8.sqm
│ │ └── 9.sqm
│ └── view/
│ ├── historyView.sq
│ ├── libraryView.sq
│ └── updatesView.sq
├── domain/
│ ├── build.gradle.kts
│ ├── consumer-rules.pro
│ ├── proguard-rules.pro
│ └── src/
│ ├── main/
│ │ ├── AndroidManifest.xml
│ │ └── java/
│ │ ├── mihon/
│ │ │ └── domain/
│ │ │ ├── chapter/
│ │ │ │ └── interactor/
│ │ │ │ └── FilterChaptersForDownload.kt
│ │ │ ├── extensionrepo/
│ │ │ │ ├── exception/
│ │ │ │ │ └── SaveExtensionRepoException.kt
│ │ │ │ ├── interactor/
│ │ │ │ │ ├── CreateExtensionRepo.kt
│ │ │ │ │ ├── DeleteExtensionRepo.kt
│ │ │ │ │ ├── GetExtensionRepo.kt
│ │ │ │ │ ├── GetExtensionRepoCount.kt
│ │ │ │ │ ├── ReplaceExtensionRepo.kt
│ │ │ │ │ └── UpdateExtensionRepo.kt
│ │ │ │ ├── model/
│ │ │ │ │ └── ExtensionRepo.kt
│ │ │ │ ├── repository/
│ │ │ │ │ └── ExtensionRepoRepository.kt
│ │ │ │ └── service/
│ │ │ │ ├── ExtensionRepoDto.kt
│ │ │ │ └── ExtensionRepoService.kt
│ │ │ ├── manga/
│ │ │ │ └── model/
│ │ │ │ └── SManga.kt
│ │ │ └── upcoming/
│ │ │ └── interactor/
│ │ │ └── GetUpcomingManga.kt
│ │ └── tachiyomi/
│ │ └── domain/
│ │ ├── backup/
│ │ │ └── service/
│ │ │ └── BackupPreferences.kt
│ │ ├── category/
│ │ │ ├── interactor/
│ │ │ │ ├── CreateCategoryWithName.kt
│ │ │ │ ├── DeleteCategory.kt
│ │ │ │ ├── GetCategories.kt
│ │ │ │ ├── RenameCategory.kt
│ │ │ │ ├── ReorderCategory.kt
│ │ │ │ ├── ResetCategoryFlags.kt
│ │ │ │ ├── SetDisplayMode.kt
│ │ │ │ ├── SetMangaCategories.kt
│ │ │ │ ├── SetSortModeForCategory.kt
│ │ │ │ └── UpdateCategory.kt
│ │ │ ├── model/
│ │ │ │ ├── Category.kt
│ │ │ │ └── CategoryUpdate.kt
│ │ │ └── repository/
│ │ │ └── CategoryRepository.kt
│ │ ├── chapter/
│ │ │ ├── interactor/
│ │ │ │ ├── GetBookmarkedChaptersByMangaId.kt
│ │ │ │ ├── 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
│ │ │ ├── ChapterSort.kt
│ │ │ └── MissingChapters.kt
│ │ ├── download/
│ │ │ └── service/
│ │ │ └── DownloadPreferences.kt
│ │ ├── history/
│ │ │ ├── interactor/
│ │ │ │ ├── GetHistory.kt
│ │ │ │ ├── GetNextChapters.kt
│ │ │ │ ├── GetTotalReadDuration.kt
│ │ │ │ ├── RemoveHistory.kt
│ │ │ │ └── UpsertHistory.kt
│ │ │ ├── model/
│ │ │ │ ├── History.kt
│ │ │ │ ├── HistoryUpdate.kt
│ │ │ │ └── HistoryWithRelations.kt
│ │ │ └── repository/
│ │ │ └── HistoryRepository.kt
│ │ ├── library/
│ │ │ ├── model/
│ │ │ │ ├── Flag.kt
│ │ │ │ ├── LibraryDisplayMode.kt
│ │ │ │ ├── LibraryManga.kt
│ │ │ │ └── LibrarySortMode.kt
│ │ │ └── service/
│ │ │ └── LibraryPreferences.kt
│ │ ├── manga/
│ │ │ ├── interactor/
│ │ │ │ ├── FetchInterval.kt
│ │ │ │ ├── GetDuplicateLibraryManga.kt
│ │ │ │ ├── GetFavorites.kt
│ │ │ │ ├── GetLibraryManga.kt
│ │ │ │ ├── GetManga.kt
│ │ │ │ ├── GetMangaByUrlAndSourceId.kt
│ │ │ │ ├── GetMangaWithChapters.kt
│ │ │ │ ├── NetworkToLocalManga.kt
│ │ │ │ ├── ResetViewerFlags.kt
│ │ │ │ ├── SetMangaChapterFlags.kt
│ │ │ │ └── UpdateMangaNotes.kt
│ │ │ ├── model/
│ │ │ │ ├── Manga.kt
│ │ │ │ ├── MangaCover.kt
│ │ │ │ ├── MangaUpdate.kt
│ │ │ │ ├── MangaWithChapterCount.kt
│ │ │ │ └── TriState.kt
│ │ │ └── repository/
│ │ │ └── MangaRepository.kt
│ │ ├── release/
│ │ │ ├── interactor/
│ │ │ │ └── GetApplicationRelease.kt
│ │ │ ├── model/
│ │ │ │ └── Release.kt
│ │ │ └── service/
│ │ │ └── ReleaseService.kt
│ │ ├── source/
│ │ │ ├── interactor/
│ │ │ │ ├── GetRemoteManga.kt
│ │ │ │ └── GetSourcesWithNonLibraryManga.kt
│ │ │ ├── model/
│ │ │ │ ├── Pin.kt
│ │ │ │ ├── Source.kt
│ │ │ │ ├── SourceWithCount.kt
│ │ │ │ └── StubSource.kt
│ │ │ ├── repository/
│ │ │ │ ├── SourceRepository.kt
│ │ │ │ └── StubSourceRepository.kt
│ │ │ └── service/
│ │ │ └── SourceManager.kt
│ │ ├── storage/
│ │ │ └── service/
│ │ │ ├── StorageManager.kt
│ │ │ └── StoragePreferences.kt
│ │ ├── track/
│ │ │ ├── interactor/
│ │ │ │ ├── DeleteTrack.kt
│ │ │ │ ├── GetTracks.kt
│ │ │ │ ├── GetTracksPerManga.kt
│ │ │ │ └── InsertTrack.kt
│ │ │ ├── model/
│ │ │ │ └── Track.kt
│ │ │ └── repository/
│ │ │ └── TrackRepository.kt
│ │ └── updates/
│ │ ├── interactor/
│ │ │ └── GetUpdates.kt
│ │ ├── model/
│ │ │ └── UpdatesWithRelations.kt
│ │ ├── repository/
│ │ │ └── UpdatesRepository.kt
│ │ └── service/
│ │ └── UpdatesPreferences.kt
│ └── test/
│ └── java/
│ └── tachiyomi/
│ └── domain/
│ ├── chapter/
│ │ └── service/
│ │ ├── ChapterRecognitionTest.kt
│ │ └── MissingChaptersTest.kt
│ ├── library/
│ │ └── model/
│ │ └── LibraryFlagsTest.kt
│ ├── manga/
│ │ └── interactor/
│ │ └── FetchIntervalTest.kt
│ └── release/
│ └── interactor/
│ └── GetApplicationReleaseTest.kt
├── gradle/
│ ├── androidx.versions.toml
│ ├── compose.versions.toml
│ ├── 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/
│ ├── androidMain/
│ │ └── AndroidManifest.xml
│ └── 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
│ ├── tt/
│ │ └── 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
├── 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
│ │ │ ├── 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
│ │ │ ├── Facebook.kt
│ │ │ ├── Github.kt
│ │ │ ├── Reddit.kt
│ │ │ └── X.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
│ └── res/
│ ├── values/
│ │ ├── colors.xml
│ │ ├── colors_catppuccin.xml
│ │ ├── colors_greenapple.xml
│ │ ├── colors_lavender.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/
│ ├── colors.xml
│ ├── colors_catppuccin.xml
│ ├── colors_greenapple.xml
│ ├── colors_lavender.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/
│ │ ├── BaseUpdatesGridGlanceWidget.kt
│ │ ├── UpdatesGridCoverScreenGlanceReceiver.kt
│ │ ├── UpdatesGridCoverScreenGlanceWidget.kt
│ │ ├── UpdatesGridGlanceReceiver.kt
│ │ ├── UpdatesGridGlanceWidget.kt
│ │ ├── WidgetManager.kt
│ │ ├── components/
│ │ │ ├── LockedWidget.kt
│ │ │ ├── UpdatesMangaCover.kt
│ │ │ └── UpdatesWidget.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/
│ │ ├── source/
│ │ │ └── PreferenceScreen.kt
│ │ └── util/
│ │ └── RxExtension.kt
│ └── commonMain/
│ └── kotlin/
│ └── eu/
│ └── kanade/
│ └── tachiyomi/
│ ├── source/
│ │ ├── CatalogueSource.kt
│ │ ├── ConfigurableSource.kt
│ │ ├── PreferenceScreen.kt
│ │ ├── Source.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/
│ ├── JsoupExtensions.kt
│ └── RxExtension.kt
├── source-local/
│ ├── build.gradle.kts
│ ├── consumer-rules.pro
│ ├── proguard-rules.pro
│ └── src/
│ ├── androidMain/
│ │ ├── AndroidManifest.xml
│ │ └── kotlin/
│ │ └── tachiyomi/
│ │ └── source/
│ │ └── local/
│ │ ├── LocalSource.kt
│ │ ├── filter/
│ │ │ └── OrderBy.kt
│ │ ├── image/
│ │ │ └── LocalCoverManager.kt
│ │ ├── io/
│ │ │ └── LocalSourceFileSystem.kt
│ │ └── metadata/
│ │ └── EpubReaderExtensions.kt
│ └── commonMain/
│ └── kotlin/
│ └── tachiyomi/
│ └── source/
│ └── local/
│ ├── LocalSource.kt
│ ├── image/
│ │ └── LocalCoverManager.kt
│ └── io/
│ ├── Archive.kt
│ ├── Format.kt
│ └── LocalSourceFileSystem.kt
└── telemetry/
├── build.gradle.kts
└── src/
├── firebase/
│ └── kotlin/
│ └── mihon/
│ └── telemetry/
│ ├── PackageInfo.kt
│ └── TelemetryConfig.kt
├── main/
│ └── AndroidManifest.xml
└── noop/
├── AndroidManifest.xml
└── kotlin/
└── mihon/
└── telemetry/
└── TelemetryConfig.kt
Copy disabled (too large)
Download .json
Condensed preview — 1232 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (11,629K chars).
[
{
"path": ".editorconfig",
"chars": 971,
"preview": "root = true\n\n[*]\ncharset = utf-8\nindent_size = 2\nindent_style = space\ninsert_final_newline = true\ntrim_trailing_whitespa"
},
{
"path": ".gitattributes",
"chars": 304,
"preview": "* text=auto\n* text eol=lf\n\n# Windows forced line-endings\n/.idea/* text eol=crlf\n\n# Gradle wrapper\n*.jar binary\n\n# Images"
},
{
"path": ".github/.java-version",
"chars": 3,
"preview": "21\n"
},
{
"path": ".github/FUNDING.yml",
"chars": 15,
"preview": "patreon: mihon\n"
},
{
"path": ".github/ISSUE_TEMPLATE/1_request_feature.yml",
"chars": 1239,
"preview": "name: ⭐ Feature request\ndescription: Suggest a feature to improve Mihon\nlabels: [feature request]\nbody:\n - type: textar"
},
{
"path": ".github/ISSUE_TEMPLATE/2_report_issue.yml",
"chars": 3251,
"preview": "name: 🐞 Issue report\ndescription: Report an issue in Mihon\nlabels: [bug]\nbody:\n - type: textarea\n id: reproduce-step"
},
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"chars": 303,
"preview": "blank_issues_enabled: false\ncontact_links:\n - name: ❌ Help with Extensions\n url: https://mihon.app/docs/faq/browse/e"
},
{
"path": ".github/pull_request_template.md",
"chars": 504,
"preview": "<!--\n Please include a summary of the change and which issue is fixed.\n Also make sure you've tested your code and als"
},
{
"path": ".github/renovate.json5",
"chars": 314,
"preview": "{\n \"$schema\": \"https://docs.renovatebot.com/renovate-schema.json\",\n \"extends\": [\"config:recommended\"],\n \"labels\": [\"D"
},
{
"path": ".github/workflows/build.yml",
"chars": 2247,
"preview": "name: Build & Test\non:\n pull_request:\n paths:\n - '**'\n - '!**.md'\n - '!i18n/src/commonMain/moko-resou"
},
{
"path": ".github/workflows/release.yml",
"chars": 6029,
"preview": "name: Release\non:\n push:\n tags:\n - v*\n\nconcurrency:\n group: ${{ github.workflow }}-${{ github.ref }}\n cancel-"
},
{
"path": ".github/workflows/update_website.yml",
"chars": 550,
"preview": "name: Update website\n\non:\n release:\n types: \n - published\n - deleted\n - edited\n\njobs:\n update_websit"
},
{
"path": ".gitignore",
"chars": 163,
"preview": "# Build files\n.gradle\n.kotlin\nbuild\n\n# IDE files\n*.iml\n.idea/*\n!.idea/icon.svg\n/captures\n\n# Configuration files\nlocal.pr"
},
{
"path": "CHANGELOG.md",
"chars": 64746,
"preview": "# Changelog\n\nAll notable changes to this project will be documented in this file.\n\nThe format is a modified version of ["
},
{
"path": "CODE_OF_CONDUCT.md",
"chars": 5296,
"preview": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nWe as members, contributors, and leaders pledge to make participa"
},
{
"path": "CONTRIBUTING.md",
"chars": 2008,
"preview": "Looking to report an issue/bug or make a feature request? Please refer to the [README file](https://github.com/mihonapp/"
},
{
"path": "LICENSE",
"chars": 10173,
"preview": " Apache License\n Version 2.0, January 2004\n "
},
{
"path": "README.md",
"chars": 4232,
"preview": "<div align=\"center\">\n\n<a href=\"https://mihon.app\">\n <img src=\"./.github/assets/logo.png\" alt=\"Mihon logo\" title=\"Miho"
},
{
"path": "app/build.gradle.kts",
"chars": 9379,
"preview": "import mihon.buildlogic.Config\nimport mihon.buildlogic.getBuildTime\nimport mihon.buildlogic.getCommitCount\nimport mihon."
},
{
"path": "app/google-services.json",
"chars": 1108,
"preview": "{\n \"project_info\": {\n \"project_number\": \"82031285239\",\n \"project_id\": \"mihonapp\",\n \"storage_bucket\": \"mihonapp"
},
{
"path": "app/proguard-android-optimize.txt",
"chars": 700,
"preview": "-dontusemixedcaseclassnames\n-ignorewarnings\n-verbose\n\n-keepattributes *Annotation*\n\n-keepclasseswithmembernames,included"
},
{
"path": "app/proguard-rules.pro",
"chars": 3571,
"preview": "-dontobfuscate\n\n-keep,allowoptimization class eu.kanade.**\n-keep,allowoptimization class tachiyomi.**\n-keep,allowoptimiz"
},
{
"path": "app/shortcuts.xml",
"chars": 2124,
"preview": "<shortcuts xmlns:android=\"http://schemas.android.com/apk/res/android\">\n <shortcut\n android:enabled=\"true\"\n "
},
{
"path": "app/src/debug/res/drawable/ic_launcher_background.xml",
"chars": 1140,
"preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:width=\"108dp\"\n android:height=\"108dp\"\n"
},
{
"path": "app/src/debug/res/drawable/ic_launcher_foreground.xml",
"chars": 1619,
"preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n android:width=\"108dp\"\n android:height=\"108dp\"\n"
},
{
"path": "app/src/main/AndroidManifest.xml",
"chars": 9598,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n xmlns:to"
},
{
"path": "app/src/main/aidl/mihon/app/shizuku/IShellInterface.aidl",
"chars": 140,
"preview": "package mihon.app.shizuku;\n\ninterface IShellInterface {\n void install(in AssetFileDescriptor apk) = 1;\n\n void dest"
},
{
"path": "app/src/main/baseline-prof.txt",
"chars": 3932899,
"preview": "Landroidx/activity/Cancellable;\nLandroidx/activity/ComponentActivity;\nPLandroidx/activity/ComponentActivity;->$r8$lambda"
},
{
"path": "app/src/main/java/eu/kanade/core/preference/CheckboxState.kt",
"chars": 400,
"preview": "package eu.kanade.core.preference\n\nimport androidx.compose.ui.state.ToggleableState\nimport tachiyomi.core.common.prefere"
},
{
"path": "app/src/main/java/eu/kanade/core/preference/PreferenceMutableState.kt",
"chars": 964,
"preview": "package eu.kanade.core.preference\n\nimport androidx.compose.runtime.MutableState\nimport androidx.compose.runtime.mutableS"
},
{
"path": "app/src/main/java/eu/kanade/core/util/CollectionUtils.kt",
"chars": 3393,
"preview": "package eu.kanade.core.util\n\nimport androidx.compose.ui.util.fastFilter\nimport androidx.compose.ui.util.fastForEach\nimpo"
},
{
"path": "app/src/main/java/eu/kanade/core/util/SourceUtil.kt",
"chars": 417,
"preview": "package eu.kanade.core.util\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.collectAsState\ni"
},
{
"path": "app/src/main/java/eu/kanade/domain/DomainModule.kt",
"chars": 11059,
"preview": "package eu.kanade.domain\n\nimport eu.kanade.domain.chapter.interactor.GetAvailableScanlators\nimport eu.kanade.domain.chap"
},
{
"path": "app/src/main/java/eu/kanade/domain/base/BasePreferences.kt",
"chars": 1830,
"preview": "package eu.kanade.domain.base\n\nimport android.content.Context\nimport dev.icerock.moko.resources.StringResource\nimport eu"
},
{
"path": "app/src/main/java/eu/kanade/domain/base/ExtensionInstallerPreference.kt",
"chars": 2095,
"preview": "package eu.kanade.domain.base\n\nimport android.content.Context\nimport eu.kanade.domain.base.BasePreferences.ExtensionInst"
},
{
"path": "app/src/main/java/eu/kanade/domain/chapter/interactor/GetAvailableScanlators.kt",
"chars": 736,
"preview": "package eu.kanade.domain.chapter.interactor\n\nimport kotlinx.coroutines.flow.Flow\nimport kotlinx.coroutines.flow.map\nimpo"
},
{
"path": "app/src/main/java/eu/kanade/domain/chapter/interactor/SetReadStatus.kt",
"chars": 2672,
"preview": "package eu.kanade.domain.chapter.interactor\n\nimport eu.kanade.domain.download.interactor.DeleteDownload\nimport logcat.Lo"
},
{
"path": "app/src/main/java/eu/kanade/domain/chapter/interactor/SyncChaptersWithSource.kt",
"chars": 9611,
"preview": "package eu.kanade.domain.chapter.interactor\n\nimport eu.kanade.domain.chapter.model.copyFromSChapter\nimport eu.kanade.dom"
},
{
"path": "app/src/main/java/eu/kanade/domain/chapter/model/Chapter.kt",
"chars": 1284,
"preview": "package eu.kanade.domain.chapter.model\n\nimport eu.kanade.tachiyomi.data.database.models.ChapterImpl\nimport eu.kanade.tac"
},
{
"path": "app/src/main/java/eu/kanade/domain/chapter/model/ChapterFilter.kt",
"chars": 2265,
"preview": "package eu.kanade.domain.chapter.model\n\nimport eu.kanade.domain.manga.model.downloadedFilter\nimport eu.kanade.tachiyomi."
},
{
"path": "app/src/main/java/eu/kanade/domain/download/interactor/DeleteDownload.kt",
"chars": 680,
"preview": "package eu.kanade.domain.download.interactor\n\nimport eu.kanade.tachiyomi.data.download.DownloadManager\nimport tachiyomi."
},
{
"path": "app/src/main/java/eu/kanade/domain/extension/interactor/GetExtensionLanguages.kt",
"chars": 1109,
"preview": "package eu.kanade.domain.extension.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\nimport eu.kanade"
},
{
"path": "app/src/main/java/eu/kanade/domain/extension/interactor/GetExtensionSources.kt",
"chars": 1216,
"preview": "package eu.kanade.domain.extension.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\nimport eu.kanade"
},
{
"path": "app/src/main/java/eu/kanade/domain/extension/interactor/GetExtensionsByType.kt",
"chars": 2469,
"preview": "package eu.kanade.domain.extension.interactor\n\nimport eu.kanade.domain.extension.model.Extensions\nimport eu.kanade.domai"
},
{
"path": "app/src/main/java/eu/kanade/domain/extension/interactor/TrustExtension.kt",
"chars": 1328,
"preview": "package eu.kanade.domain.extension.interactor\n\nimport android.content.pm.PackageInfo\nimport androidx.core.content.pm.Pac"
},
{
"path": "app/src/main/java/eu/kanade/domain/extension/model/Extensions.kt",
"chars": 303,
"preview": "package eu.kanade.domain.extension.model\n\nimport eu.kanade.tachiyomi.extension.model.Extension\n\ndata class Extensions(\n "
},
{
"path": "app/src/main/java/eu/kanade/domain/manga/interactor/GetExcludedScanlators.kt",
"chars": 657,
"preview": "package eu.kanade.domain.manga.interactor\n\nimport kotlinx.coroutines.flow.Flow\nimport kotlinx.coroutines.flow.map\nimport"
},
{
"path": "app/src/main/java/eu/kanade/domain/manga/interactor/SetExcludedScanlators.kt",
"chars": 776,
"preview": "package eu.kanade.domain.manga.interactor\n\nimport tachiyomi.data.DatabaseHandler\n\nclass SetExcludedScanlators(\n priva"
},
{
"path": "app/src/main/java/eu/kanade/domain/manga/interactor/SetMangaViewerFlags.kt",
"chars": 1114,
"preview": "package eu.kanade.domain.manga.interactor\n\nimport eu.kanade.tachiyomi.ui.reader.setting.ReaderOrientation\nimport eu.kana"
},
{
"path": "app/src/main/java/eu/kanade/domain/manga/interactor/UpdateManga.kt",
"chars": 4434,
"preview": "package eu.kanade.domain.manga.interactor\n\nimport eu.kanade.domain.manga.model.hasCustomCover\nimport eu.kanade.tachiyomi"
},
{
"path": "app/src/main/java/eu/kanade/domain/manga/model/Manga.kt",
"chars": 3802,
"preview": "package eu.kanade.domain.manga.model\n\nimport eu.kanade.domain.base.BasePreferences\nimport eu.kanade.tachiyomi.data.cache"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/interactor/GetEnabledSources.kt",
"chars": 1729,
"preview": "package eu.kanade.domain.source.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\nimport kotlinx.coro"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/interactor/GetIncognitoState.kt",
"chars": 1359,
"preview": "package eu.kanade.domain.source.interactor\n\nimport eu.kanade.domain.base.BasePreferences\nimport eu.kanade.domain.source."
},
{
"path": "app/src/main/java/eu/kanade/domain/source/interactor/GetLanguagesWithSources.kt",
"chars": 1225,
"preview": "package eu.kanade.domain.source.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\nimport eu.kanade.ta"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/interactor/GetSourcesWithFavoriteCount.kt",
"chars": 2134,
"preview": "package eu.kanade.domain.source.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\nimport kotlinx.coro"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/interactor/SetMigrateSorting.kt",
"chars": 489,
"preview": "package eu.kanade.domain.source.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\n\nclass SetMigrateSo"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/interactor/ToggleIncognito.kt",
"chars": 420,
"preview": "package eu.kanade.domain.source.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\nimport tachiyomi.co"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/interactor/ToggleLanguage.kt",
"chars": 481,
"preview": "package eu.kanade.domain.source.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\nimport tachiyomi.co"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/interactor/ToggleSource.kt",
"chars": 1048,
"preview": "package eu.kanade.domain.source.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\nimport tachiyomi.co"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/interactor/ToggleSourcePin.kt",
"chars": 545,
"preview": "package eu.kanade.domain.source.interactor\n\nimport eu.kanade.domain.source.service.SourcePreferences\nimport tachiyomi.co"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/model/Source.kt",
"chars": 524,
"preview": "package eu.kanade.domain.source.model\n\nimport androidx.compose.ui.graphics.ImageBitmap\nimport androidx.compose.ui.graphi"
},
{
"path": "app/src/main/java/eu/kanade/domain/source/service/SourcePreferences.kt",
"chars": 3562,
"preview": "package eu.kanade.domain.source.service\n\nimport eu.kanade.domain.source.interactor.SetMigrateSorting\nimport eu.kanade.ta"
},
{
"path": "app/src/main/java/eu/kanade/domain/track/interactor/AddTracks.kt",
"chars": 4465,
"preview": "package eu.kanade.domain.track.interactor\n\nimport eu.kanade.domain.track.model.toDbTrack\nimport eu.kanade.domain.track.m"
},
{
"path": "app/src/main/java/eu/kanade/domain/track/interactor/RefreshTracks.kt",
"chars": 1742,
"preview": "package eu.kanade.domain.track.interactor\n\nimport eu.kanade.domain.track.model.toDbTrack\nimport eu.kanade.domain.track.m"
},
{
"path": "app/src/main/java/eu/kanade/domain/track/interactor/SyncChapterProgressWithTrack.kt",
"chars": 1852,
"preview": "package eu.kanade.domain.track.interactor\n\nimport eu.kanade.domain.track.model.toDbTrack\nimport eu.kanade.tachiyomi.data"
},
{
"path": "app/src/main/java/eu/kanade/domain/track/interactor/TrackChapter.kt",
"chars": 2478,
"preview": "package eu.kanade.domain.track.interactor\n\nimport android.content.Context\nimport eu.kanade.domain.track.model.toDbTrack\n"
},
{
"path": "app/src/main/java/eu/kanade/domain/track/model/AutoTrackState.kt",
"chars": 289,
"preview": "package eu.kanade.domain.track.model\n\nimport dev.icerock.moko.resources.StringResource\nimport tachiyomi.i18n.MR\n\nenum cl"
},
{
"path": "app/src/main/java/eu/kanade/domain/track/model/Track.kt",
"chars": 1496,
"preview": "package eu.kanade.domain.track.model\n\nimport tachiyomi.domain.track.model.Track\nimport eu.kanade.tachiyomi.data.database"
},
{
"path": "app/src/main/java/eu/kanade/domain/track/service/DelayedTrackingUpdateJob.kt",
"chars": 2693,
"preview": "package eu.kanade.domain.track.service\n\nimport android.content.Context\nimport androidx.work.BackoffPolicy\nimport android"
},
{
"path": "app/src/main/java/eu/kanade/domain/track/service/TrackPreferences.kt",
"chars": 1663,
"preview": "package eu.kanade.domain.track.service\n\nimport eu.kanade.domain.track.model.AutoTrackState\nimport eu.kanade.tachiyomi.da"
},
{
"path": "app/src/main/java/eu/kanade/domain/track/store/DelayedTrackingStore.kt",
"chars": 1331,
"preview": "package eu.kanade.domain.track.store\n\nimport android.content.Context\nimport androidx.core.content.edit\nimport logcat.Log"
},
{
"path": "app/src/main/java/eu/kanade/domain/ui/UiPreferences.kt",
"chars": 1738,
"preview": "package eu.kanade.domain.ui\n\nimport eu.kanade.domain.ui.model.AppTheme\nimport eu.kanade.domain.ui.model.TabletUiMode\nimp"
},
{
"path": "app/src/main/java/eu/kanade/domain/ui/model/AppTheme.kt",
"chars": 843,
"preview": "package eu.kanade.domain.ui.model\n\nimport dev.icerock.moko.resources.StringResource\nimport tachiyomi.i18n.MR\n\nenum class"
},
{
"path": "app/src/main/java/eu/kanade/domain/ui/model/TabletUiMode.kt",
"chars": 323,
"preview": "package eu.kanade.domain.ui.model\n\nimport dev.icerock.moko.resources.StringResource\nimport tachiyomi.i18n.MR\n\nenum class"
},
{
"path": "app/src/main/java/eu/kanade/domain/ui/model/ThemeMode.kt",
"chars": 491,
"preview": "package eu.kanade.domain.ui.model\n\nimport androidx.appcompat.app.AppCompatDelegate\n\nenum class ThemeMode {\n LIGHT,\n "
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/BrowseSourceScreen.kt",
"chars": 6405,
"preview": "package eu.kanade.presentation.browse\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/ExtensionDetailsScreen.kt",
"chars": 17449,
"preview": "package eu.kanade.presentation.browse\n\nimport android.content.Intent\nimport android.net.Uri\nimport android.provider.Sett"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/ExtensionFilterScreen.kt",
"chars": 2259,
"preview": "package eu.kanade.presentation.browse\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/ExtensionsScreen.kt",
"chars": 21949,
"preview": "package eu.kanade.presentation.browse\n\nimport androidx.compose.animation.core.animateDpAsState\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/GlobalSearchScreen.kt",
"chars": 4208,
"preview": "package eu.kanade.presentation.browse\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/MigrateSearchScreen.kt",
"chars": 1999,
"preview": "package eu.kanade.presentation.browse\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.State\n"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/MigrateSourceScreen.kt",
"chars": 8319,
"preview": "package eu.kanade.presentation.browse\n\nimport androidx.compose.foundation.background\nimport androidx.compose.foundation."
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/SourcesFilterScreen.kt",
"chars": 4142,
"preview": "package eu.kanade.presentation.browse\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/SourcesScreen.kt",
"chars": 7253,
"preview": "package eu.kanade.presentation.browse\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.foundation.l"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BaseBrowseItem.kt",
"chars": 1166,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.foundation.combinedClickable\nimport androidx.c"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BaseSourceItem.kt",
"chars": 2401,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.compo"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BrowseBadges.kt",
"chars": 433,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.material.icons.Icons\nimport androidx.compose.m"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BrowseIcons.kt",
"chars": 5329,
"preview": "package eu.kanade.presentation.browse.components\n\nimport android.util.DisplayMetrics\nimport androidx.compose.foundation."
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BrowseSourceComfortableGrid.kt",
"chars": 2944,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx."
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BrowseSourceCompactGrid.kt",
"chars": 2924,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx."
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BrowseSourceDialogs.kt",
"chars": 1203,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.material3.AlertDialog\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BrowseSourceList.kt",
"chars": 2383,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport android"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BrowseSourceLoadingItem.kt",
"chars": 692,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx."
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/BrowseSourceToolbar.kt",
"chars": 5343,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.material.icons.Icons\nimport androidx.compose.m"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/GlobalSearchCardRow.kt",
"chars": 2805,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx."
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/GlobalSearchResultItems.kt",
"chars": 3372,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/browse/components/GlobalSearchToolbar.kt",
"chars": 5164,
"preview": "package eu.kanade.presentation.browse.components\n\nimport androidx.compose.foundation.background\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/category/CategoryExtensions.kt",
"chars": 624,
"preview": "package eu.kanade.presentation.category\n\nimport android.content.Context\nimport androidx.compose.runtime.Composable\nimpor"
},
{
"path": "app/src/main/java/eu/kanade/presentation/category/CategoryScreen.kt",
"chars": 4482,
"preview": "package eu.kanade.presentation.category\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/category/components/CategoryDialogs.kt",
"chars": 11095,
"preview": "package eu.kanade.presentation.category.components\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose"
},
{
"path": "app/src/main/java/eu/kanade/presentation/category/components/CategoryFloatingActionButton.kt",
"chars": 1023,
"preview": "package eu.kanade.presentation.category.components\n\nimport androidx.compose.foundation.lazy.LazyListState\nimport android"
},
{
"path": "app/src/main/java/eu/kanade/presentation/category/components/CategoryListItem.kt",
"chars": 2573,
"preview": "package eu.kanade.presentation.category.components\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose"
},
{
"path": "app/src/main/java/eu/kanade/presentation/components/AdaptiveSheet.kt",
"chars": 2936,
"preview": "package eu.kanade.presentation.components\n\nimport androidx.compose.animation.core.tween\nimport androidx.compose.animatio"
},
{
"path": "app/src/main/java/eu/kanade/presentation/components/AppBar.kt",
"chars": 15563,
"preview": "package eu.kanade.presentation.components\n\nimport androidx.compose.foundation.basicMarquee\nimport androidx.compose.found"
},
{
"path": "app/src/main/java/eu/kanade/presentation/components/Banners.kt",
"chars": 6903,
"preview": "package eu.kanade.presentation.components\n\nimport androidx.compose.animation.AnimatedVisibility\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/components/DateText.kt",
"chars": 1318,
"preview": "package eu.kanade.presentation.components\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose.runtime.re"
},
{
"path": "app/src/main/java/eu/kanade/presentation/components/DownloadDropdownMenu.kt",
"chars": 2532,
"preview": "package eu.kanade.presentation.components\n\nimport androidx.compose.material3.DropdownMenuItem\nimport androidx.compose.ma"
},
{
"path": "app/src/main/java/eu/kanade/presentation/components/DropdownMenu.kt",
"chars": 3578,
"preview": "package eu.kanade.presentation.components\n\nimport androidx.compose.foundation.ScrollState\nimport androidx.compose.founda"
},
{
"path": "app/src/main/java/eu/kanade/presentation/components/EmptyScreen.kt",
"chars": 1576,
"preview": "package eu.kanade.presentation.components\n\nimport androidx.compose.material.icons.Icons\nimport androidx.compose.material"
},
{
"path": "app/src/main/java/eu/kanade/presentation/components/TabbedDialog.kt",
"chars": 3902,
"preview": "package eu.kanade.presentation.components\n\nimport androidx.compose.animation.animateContentSize\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/components/TabbedScreen.kt",
"chars": 4049,
"preview": "package eu.kanade.presentation.components\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose.foun"
},
{
"path": "app/src/main/java/eu/kanade/presentation/crash/CrashScreen.kt",
"chars": 2488,
"preview": "package eu.kanade.presentation.crash\n\nimport androidx.compose.foundation.background\nimport androidx.compose.foundation.l"
},
{
"path": "app/src/main/java/eu/kanade/presentation/history/HistoryScreen.kt",
"chars": 6336,
"preview": "package eu.kanade.presentation.history\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/history/HistoryScreenModelStateProvider.kt",
"chars": 3729,
"preview": "package eu.kanade.presentation.history\n\nimport androidx.compose.ui.tooling.preview.PreviewParameterProvider\nimport eu.ka"
},
{
"path": "app/src/main/java/eu/kanade/presentation/history/components/HistoryDialogs.kt",
"chars": 3146,
"preview": "package eu.kanade.presentation.history.components\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx"
},
{
"path": "app/src/main/java/eu/kanade/presentation/history/components/HistoryItem.kt",
"chars": 4460,
"preview": "package eu.kanade.presentation.history.components\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/history/components/HistoryWithRelationsProvider.kt",
"chars": 1931,
"preview": "package eu.kanade.presentation.history.components\n\nimport androidx.compose.ui.tooling.preview.PreviewParameterProvider\ni"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/DeleteLibraryMangaDialog.kt",
"chars": 2749,
"preview": "package eu.kanade.presentation.library\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose.materia"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/LibrarySettingsDialog.kt",
"chars": 12011,
"preview": "package eu.kanade.presentation.library\n\nimport android.content.res.Configuration\nimport androidx.compose.foundation.layo"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/CommonMangaItem.kt",
"chars": 12957,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.foundation.background\nimport androidx.compose"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/GlobalSearchItem.kt",
"chars": 705,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.material3.Text\nimport androidx.compose.materi"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/LazyLibraryGrid.kt",
"chars": 1633,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/LibraryBadges.kt",
"chars": 1710,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.comp"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/LibraryComfortableGrid.kt",
"chars": 2466,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport androi"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/LibraryCompactGrid.kt",
"chars": 2499,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport androi"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/LibraryContent.kt",
"chars": 4918,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.comp"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/LibraryList.kt",
"chars": 2793,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport androi"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/LibraryPager.kt",
"chars": 6106,
"preview": "package eu.kanade.presentation.library.components\n\nimport android.content.res.Configuration\nimport androidx.compose.foun"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/LibraryTabs.kt",
"chars": 1851,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.comp"
},
{
"path": "app/src/main/java/eu/kanade/presentation/library/components/LibraryToolbar.kt",
"chars": 5810,
"preview": "package eu.kanade.presentation.library.components\n\nimport androidx.compose.foundation.isSystemInDarkTheme\nimport android"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/ChapterSettingsDialog.kt",
"chars": 9584,
"preview": "package eu.kanade.presentation.manga\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.foundation.la"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/DuplicateMangaDialog.kt",
"chars": 15331,
"preview": "package eu.kanade.presentation.manga\n\nimport androidx.compose.foundation.background\nimport androidx.compose.foundation.c"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/MangaNotesScreen.kt",
"chars": 1512,
"preview": "package eu.kanade.presentation.manga\n\nimport androidx.compose.foundation.layout.consumeWindowInsets\nimport androidx.comp"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/MangaScreen.kt",
"chars": 36256,
"preview": "package eu.kanade.presentation.manga\n\nimport androidx.activity.compose.BackHandler\nimport androidx.compose.animation.cor"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/MangaScreenConstants.kt",
"chars": 374,
"preview": "package eu.kanade.presentation.manga\n\nenum class DownloadAction {\n NEXT_1_CHAPTER,\n NEXT_5_CHAPTERS,\n NEXT_10_C"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/BaseMangaListItem.kt",
"chars": 2160,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.fo"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/ChapterDownloadIndicator.kt",
"chars": 9931,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.animation.core.animateFloatAsState\nimport andro"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/ChapterHeader.kt",
"chars": 2179,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.fo"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/DotSeparatorText.kt",
"chars": 458,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.material3.Text\nimport androidx.compose.runtime."
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaBottomActionMenu.kt",
"chars": 15379,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.animation.AnimatedVisibility\nimport androidx.co"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaChapterListItem.kt",
"chars": 9870,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.combinedClickable\nimport androidx.co"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaCover.kt",
"chars": 1795,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.fo"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaCoverDialog.kt",
"chars": 9228,
"preview": "package eu.kanade.presentation.manga.components\n\nimport android.graphics.Bitmap\nimport android.graphics.drawable.BitmapD"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaDialogs.kt",
"chars": 5621,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.layout.BoxWithConstraints\nimport and"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaInfoHeader.kt",
"chars": 28402,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.animation.animateContentSize\nimport androidx.co"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesDisplay.kt",
"chars": 2022,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.animation.animateContentSize\nimport androidx.co"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesSection.kt",
"chars": 3154,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx.c"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesTextArea.kt",
"chars": 8961,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.background\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MangaToolbar.kt",
"chars": 6397,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.material.icons.Icons\nimport androidx.compose.ma"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MarkdownRender.kt",
"chars": 11763,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.compos"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/MissingChapterCountListItem.kt",
"chars": 1763,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx.c"
},
{
"path": "app/src/main/java/eu/kanade/presentation/manga/components/ScanlatorFilterDialog.kt",
"chars": 6410,
"preview": "package eu.kanade.presentation.manga.components\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.fo"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/LogoHeader.kt",
"chars": 1081,
"preview": "package eu.kanade.presentation.more\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose.foundation"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/MoreScreen.kt",
"chars": 6579,
"preview": "package eu.kanade.presentation.more\n\nimport androidx.compose.foundation.layout.padding\nimport androidx.compose.material."
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/NewUpdateScreen.kt",
"chars": 2962,
"preview": "package eu.kanade.presentation.more\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose.foundation"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/onboarding/GuidesStep.kt",
"chars": 2388,
"preview": "package eu.kanade.presentation.more.onboarding\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx.co"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/onboarding/OnboardingScreen.kt",
"chars": 3055,
"preview": "package eu.kanade.presentation.more.onboarding\n\nimport androidx.activity.compose.BackHandler\nimport androidx.compose.ani"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/onboarding/OnboardingStep.kt",
"chars": 194,
"preview": "package eu.kanade.presentation.more.onboarding\n\nimport androidx.compose.runtime.Composable\n\ninternal interface Onboardin"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/onboarding/PermissionStep.kt",
"chars": 8585,
"preview": "package eu.kanade.presentation.more.onboarding\n\nimport android.Manifest\nimport android.annotation.SuppressLint\nimport an"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/onboarding/StorageStep.kt",
"chars": 3410,
"preview": "package eu.kanade.presentation.more.onboarding\n\nimport android.content.ActivityNotFoundException\nimport androidx.compose"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/onboarding/ThemeStep.kt",
"chars": 1529,
"preview": "package eu.kanade.presentation.more.onboarding\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/Preference.kt",
"chars": 7620,
"preview": "package eu.kanade.presentation.more.settings\n\nimport androidx.annotation.IntRange\nimport androidx.compose.runtime.Compos"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/PreferenceItem.kt",
"chars": 7701,
"preview": "package eu.kanade.presentation.more.settings\n\nimport androidx.compose.animation.AnimatedVisibility\nimport androidx.compo"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/PreferenceScaffold.kt",
"chars": 1009,
"preview": "package eu.kanade.presentation.more.settings\n\nimport androidx.compose.foundation.layout.RowScope\nimport androidx.compose"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/PreferenceScreen.kt",
"chars": 3532,
"preview": "package eu.kanade.presentation.more.settings\n\nimport androidx.compose.foundation.layout.Column\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/Commons.kt",
"chars": 1843,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SearchableSettings.kt",
"chars": 1349,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport androidx.compose.foundation.layout.RowScope\nimport androidx."
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsAdvancedScreen.kt",
"chars": 21564,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport android.annotation.SuppressLint\nimport android.content.Activ"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsAppearanceScreen.kt",
"chars": 6539,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport android.app.Activity\nimport androidx.compose.foundation.layo"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsBrowseScreen.kt",
"chars": 3468,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsDataScreen.kt",
"chars": 20280,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport android.content.ActivityNotFoundException\nimport android.con"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsDownloadScreen.kt",
"chars": 10218,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsLibraryScreen.kt",
"chars": 13966,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsMainScreen.kt",
"chars": 9956,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport androidx.compose.foundation.background\nimport androidx.compo"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsReaderScreen.kt",
"chars": 21834,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsSearchScreen.kt",
"chars": 12675,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport androidx.compose.animation.Crossfade\nimport androidx.compose"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsSecurityScreen.kt",
"chars": 5740,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose."
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/SettingsTrackingScreen.kt",
"chars": 16278,
"preview": "package eu.kanade.presentation.more.settings.screen\n\nimport android.content.Context\nimport androidx.compose.foundation.l"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/about/AboutScreen.kt",
"chars": 11670,
"preview": "package eu.kanade.presentation.more.settings.screen.about\n\nimport android.content.Context\nimport androidx.compose.animat"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/about/OpenSourceLibraryLicenseScreen.kt",
"chars": 2893,
"preview": "package eu.kanade.presentation.more.settings.screen.about\n\nimport androidx.compose.foundation.layout.Column\nimport andro"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/about/OpenSourceLicensesScreen.kt",
"chars": 1953,
"preview": "package eu.kanade.presentation.more.settings.screen.about\n\nimport androidx.compose.foundation.layout.fillMaxSize\nimport "
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/advanced/ClearDatabaseScreen.kt",
"chars": 13113,
"preview": "package eu.kanade.presentation.more.settings.screen.advanced\n\nimport androidx.compose.foundation.clickable\nimport androi"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/appearance/AppLanguageScreen.kt",
"chars": 4979,
"preview": "package eu.kanade.presentation.more.settings.screen.appearance\n\nimport android.content.Context\nimport androidx.appcompat"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/browse/ExtensionReposScreen.kt",
"chars": 3852,
"preview": "package eu.kanade.presentation.more.settings.screen.browse\n\nimport androidx.compose.runtime.Composable\nimport androidx.c"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/browse/ExtensionReposScreenModel.kt",
"chars": 5166,
"preview": "package eu.kanade.presentation.more.settings.screen.browse\n\nimport androidx.compose.runtime.Immutable\nimport cafe.adriel"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/browse/components/ExtensionReposContent.kt",
"chars": 4243,
"preview": "package eu.kanade.presentation.more.settings.screen.browse.components\n\nimport androidx.compose.foundation.layout.Arrange"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/browse/components/ExtensionReposDialogs.kt",
"chars": 6086,
"preview": "package eu.kanade.presentation.more.settings.screen.browse.components\n\nimport androidx.compose.foundation.layout.Column\n"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/browse/components/ExtensionReposScreen.kt",
"chars": 2937,
"preview": "@file:JvmName(\"ExtensionReposScreenKt\")\n\npackage eu.kanade.presentation.more.settings.screen.browse.components\n\nimport a"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/data/CreateBackupScreen.kt",
"chars": 5240,
"preview": "package eu.kanade.presentation.more.settings.screen.data\n\nimport android.content.ActivityNotFoundException\nimport androi"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/data/RestoreBackupScreen.kt",
"chars": 8881,
"preview": "package eu.kanade.presentation.more.settings.screen.data\n\nimport android.content.Context\nimport android.net.Uri\nimport a"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/data/StorageInfo.kt",
"chars": 2529,
"preview": "package eu.kanade.presentation.more.settings.screen.data\n\nimport android.text.format.Formatter\nimport androidx.compose.f"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/debug/BackupSchemaScreen.kt",
"chars": 2776,
"preview": "package eu.kanade.presentation.more.settings.screen.debug\n\nimport androidx.compose.foundation.layout.padding\nimport andr"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/debug/DebugInfoScreen.kt",
"chars": 7959,
"preview": "package eu.kanade.presentation.more.settings.screen.debug\n\nimport android.os.Build\nimport androidx.compose.material.icon"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/screen/debug/WorkerInfoScreen.kt",
"chars": 6605,
"preview": "package eu.kanade.presentation.more.settings.screen.debug\n\nimport android.content.Context\nimport androidx.compose.founda"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/widget/AppThemeModePreferenceWidget.kt",
"chars": 1654,
"preview": "package eu.kanade.presentation.more.settings.widget\n\nimport androidx.compose.foundation.layout.fillMaxWidth\nimport andro"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/widget/AppThemePreferenceWidget.kt",
"chars": 9481,
"preview": "package eu.kanade.presentation.more.settings.widget\n\nimport android.app.Activity\nimport androidx.compose.foundation.back"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/widget/BasePreferenceWidget.kt",
"chars": 4526,
"preview": "package eu.kanade.presentation.more.settings.widget\n\nimport androidx.compose.animation.animateColorAsState\nimport androi"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/widget/EditTextPreferenceWidget.kt",
"chars": 3662,
"preview": "package eu.kanade.presentation.more.settings.widget\n\nimport androidx.compose.foundation.layout.fillMaxWidth\nimport andro"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/widget/InfoWidget.kt",
"chars": 1665,
"preview": "package eu.kanade.presentation.more.settings.widget\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androi"
},
{
"path": "app/src/main/java/eu/kanade/presentation/more/settings/widget/ListPreferenceWidget.kt",
"chars": 3868,
"preview": "package eu.kanade.presentation.more.settings.widget\n\nimport androidx.compose.foundation.layout.Box\nimport androidx.compo"
}
]
// ... and 1032 more files (download for full content)
About this extraction
This page contains the full source code of the mihonapp/mihon GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1232 files (10.7 MB), approximately 2.9M tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.