Full Code of ReVanced/revanced-manager for AI

main 4c21b2f16846 cached
390 files
3.5 MB
940.4k tokens
2 symbols
1 requests
Download .txt
Showing preview only (3,760K chars total). Download the full file or copy to clipboard to get everything.
Repository: ReVanced/revanced-manager
Branch: main
Commit: 4c21b2f16846
Files: 390
Total size: 3.5 MB

Directory structure:
gitextract_izqmhs7i/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.yml
│   │   ├── config.yml
│   │   └── feature_request.yml
│   ├── config.yaml
│   └── workflows/
│       ├── build_pull_request.yml
│       ├── open_pull_request.yml
│       ├── pull_strings.yml
│       ├── push_strings.yml
│       ├── release.yml
│       └── update_documentation.yml
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── adsfund.json
├── api/
│   ├── .releaserc
│   ├── CHANGELOG.md
│   ├── api/
│   │   └── api.api
│   ├── build.gradle.kts
│   ├── consumer-rules.pro
│   ├── gradle.properties
│   ├── package.json
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── aidl/
│           │   └── app/
│           │       └── revanced/
│           │           └── manager/
│           │               └── downloader/
│           │                   └── webview/
│           │                       ├── IWebView.aidl
│           │                       └── IWebViewEvents.aidl
│           ├── kotlin/
│           │   └── app/
│           │       └── revanced/
│           │           └── manager/
│           │               └── downloader/
│           │                   ├── Constants.kt
│           │                   ├── Downloader.kt
│           │                   ├── Extensions.kt
│           │                   ├── Parcelables.kt
│           │                   └── webview/
│           │                       ├── API.kt
│           │                       └── WebViewFragment.kt
│           └── res/
│               └── layout/
│                   └── webview_fragment.xml
├── app/
│   ├── .gitignore
│   ├── .releaserc
│   ├── CHANGELOG.md
│   ├── build.gradle.kts
│   ├── gradle.properties
│   ├── package.json
│   ├── schemas/
│   │   └── app.revanced.manager.data.room.AppDatabase/
│   │       ├── 1.json
│   │       ├── 2.json
│   │       └── 3.json
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── aidl/
│           │   └── app/
│           │       └── revanced/
│           │           └── manager/
│           │               ├── IRootSystemService.aidl
│           │               └── patcher/
│           │                   ├── ProgressEventParcel.aidl
│           │                   └── runtime/
│           │                       └── process/
│           │                           ├── IPatcherEvents.aidl
│           │                           ├── IPatcherProcess.aidl
│           │                           └── Parameters.aidl
│           ├── assets/
│           │   └── root/
│           │       ├── module.prop
│           │       └── service.sh
│           ├── cpp/
│           │   ├── CMakeLists.txt
│           │   └── prop_override.cpp
│           ├── java/
│           │   └── app/
│           │       └── revanced/
│           │           └── manager/
│           │               ├── DownloaderActivity.kt
│           │               ├── MainActivity.kt
│           │               ├── ManagerApplication.kt
│           │               ├── ManagerFileProvider.kt
│           │               ├── data/
│           │               │   ├── platform/
│           │               │   │   ├── Filesystem.kt
│           │               │   │   └── NetworkInfo.kt
│           │               │   ├── redux/
│           │               │   │   └── Redux.kt
│           │               │   └── room/
│           │               │       ├── AppDatabase.kt
│           │               │       ├── Converters.kt
│           │               │       ├── apps/
│           │               │       │   ├── downloaded/
│           │               │       │   │   ├── DownloadedApp.kt
│           │               │       │   │   └── DownloadedAppDao.kt
│           │               │       │   └── installed/
│           │               │       │       ├── AppliedPatch.kt
│           │               │       │       ├── InstalledApp.kt
│           │               │       │       ├── InstalledAppDao.kt
│           │               │       │       └── InstalledPatchBundle.kt
│           │               │       ├── bundles/
│           │               │       │   ├── PatchBundleDao.kt
│           │               │       │   └── PatchBundleEntity.kt
│           │               │       ├── downloader/
│           │               │       │   ├── DownloaderDao.kt
│           │               │       │   └── DownloaderEntity.kt
│           │               │       ├── options/
│           │               │       │   ├── Option.kt
│           │               │       │   ├── OptionDao.kt
│           │               │       │   └── OptionGroup.kt
│           │               │       ├── selection/
│           │               │       │   ├── PatchSelection.kt
│           │               │       │   ├── SelectedPatch.kt
│           │               │       │   └── SelectionDao.kt
│           │               │       └── sources/
│           │               │           └── Source.kt
│           │               ├── di/
│           │               │   ├── AckpineModule.kt
│           │               │   ├── DatabaseModule.kt
│           │               │   ├── HttpModule.kt
│           │               │   ├── ManagerModule.kt
│           │               │   ├── PreferencesModule.kt
│           │               │   ├── RepositoryModule.kt
│           │               │   ├── RootModule.kt
│           │               │   ├── ServiceModule.kt
│           │               │   ├── ViewModelModule.kt
│           │               │   └── WorkerModule.kt
│           │               ├── domain/
│           │               │   ├── installer/
│           │               │   │   └── RootInstaller.kt
│           │               │   ├── manager/
│           │               │   │   ├── KeystoreManager.kt
│           │               │   │   ├── PreferencesManager.kt
│           │               │   │   ├── SourceManager.kt
│           │               │   │   └── base/
│           │               │   │       └── BasePreferencesManager.kt
│           │               │   ├── repository/
│           │               │   │   ├── AnnouncementRepository.kt
│           │               │   │   ├── DownloadedAppRepository.kt
│           │               │   │   ├── DownloaderRepository.kt
│           │               │   │   ├── InstalledAppRepository.kt
│           │               │   │   ├── ManagerUpdateRepository.kt
│           │               │   │   ├── PatchBundleRepository.kt
│           │               │   │   ├── PatchOptionsRepository.kt
│           │               │   │   └── PatchSelectionRepository.kt
│           │               │   ├── sources/
│           │               │   │   ├── LocalSource.kt
│           │               │   │   ├── RemoteSource.kt
│           │               │   │   └── Source.kt
│           │               │   └── worker/
│           │               │       ├── Worker.kt
│           │               │       └── WorkerRepository.kt
│           │               ├── network/
│           │               │   ├── api/
│           │               │   │   └── ReVancedAPI.kt
│           │               │   ├── downloader/
│           │               │   │   ├── DownloaderPackage.kt
│           │               │   │   ├── LoadedDownloader.kt
│           │               │   │   └── ParceledDownloaderData.kt
│           │               │   ├── dto/
│           │               │   │   ├── ReVancedAnnouncement.kt
│           │               │   │   ├── ReVancedAsset.kt
│           │               │   │   ├── ReVancedContributors.kt
│           │               │   │   └── ReVancedInfo.kt
│           │               │   ├── service/
│           │               │   │   └── HttpService.kt
│           │               │   └── utils/
│           │               │       └── APIResponse.kt
│           │               ├── patcher/
│           │               │   ├── LibraryResolver.kt
│           │               │   ├── PatcherProgress.kt
│           │               │   ├── Session.kt
│           │               │   ├── aapt/
│           │               │   │   └── Aapt.kt
│           │               │   ├── logger/
│           │               │   │   └── Logger.kt
│           │               │   ├── patch/
│           │               │   │   ├── PatchBundle.kt
│           │               │   │   ├── PatchBundleInfo.kt
│           │               │   │   └── PatchInfo.kt
│           │               │   ├── runtime/
│           │               │   │   ├── CoroutineRuntime.kt
│           │               │   │   ├── ProcessRuntime.kt
│           │               │   │   ├── Runtime.kt
│           │               │   │   └── process/
│           │               │   │       ├── Parameters.kt
│           │               │   │       └── PatcherProcess.kt
│           │               │   └── worker/
│           │               │       └── PatcherWorker.kt
│           │               ├── service/
│           │               │   ├── RootService.kt
│           │               │   └── UninstallService.kt
│           │               ├── ui/
│           │               │   ├── component/
│           │               │   │   ├── AlertDialogExtended.kt
│           │               │   │   ├── AppIcon.kt
│           │               │   │   ├── AppInfo.kt
│           │               │   │   ├── AppLabel.kt
│           │               │   │   ├── AppScaffold.kt
│           │               │   │   ├── ArrowButton.kt
│           │               │   │   ├── AvailableUpdateDialog.kt
│           │               │   │   ├── BottomContentBar.kt
│           │               │   │   ├── CheckedFilterChip.kt
│           │               │   │   ├── ColumnWithScrollbar.kt
│           │               │   │   ├── ColumnWithScrollbarEdgeShadow.kt
│           │               │   │   ├── ConfirmDialog.kt
│           │               │   │   ├── ContentSelector.kt
│           │               │   │   ├── EmptyState.kt
│           │               │   │   ├── ExceptionViewerDialog.kt
│           │               │   │   ├── FullscreenDialog.kt
│           │               │   │   ├── GroupHeader.kt
│           │               │   │   ├── InstallerStatusDialog.kt
│           │               │   │   ├── LazyColumnWithScrollbar.kt
│           │               │   │   ├── LazyColumnWithScrollbarEdgeShadow.kt
│           │               │   │   ├── ListSection.kt
│           │               │   │   ├── LoadingIndicator.kt
│           │               │   │   ├── Markdown.kt
│           │               │   │   ├── NotificationCard.kt
│           │               │   │   ├── NumberInputDialog.kt
│           │               │   │   ├── PasswordField.kt
│           │               │   │   ├── PillTabBar.kt
│           │               │   │   ├── SafeguardDialog.kt
│           │               │   │   ├── Scrollbar.kt
│           │               │   │   ├── SearchBar.kt
│           │               │   │   ├── SearchView.kt
│           │               │   │   ├── SegmentedButton.kt
│           │               │   │   ├── ShareSheet.kt
│           │               │   │   ├── TextInputDialog.kt
│           │               │   │   ├── Tooltip.kt
│           │               │   │   ├── bundle/
│           │               │   │   │   ├── BundleItem.kt
│           │               │   │   │   ├── BundlePatchesDialog.kt
│           │               │   │   │   ├── BundleSelector.kt
│           │               │   │   │   └── BundleTopBar.kt
│           │               │   │   ├── haptics/
│           │               │   │   │   ├── HapticCheckbox.kt
│           │               │   │   │   ├── HapticExtendedFloatingActionButton.kt
│           │               │   │   │   ├── HapticFloatingActionButton.kt
│           │               │   │   │   ├── HapticRadioButton.kt
│           │               │   │   │   ├── HapticSwitch.kt
│           │               │   │   │   ├── HapticTab.kt
│           │               │   │   │   └── HapticTriStateCheckbox.kt
│           │               │   │   ├── onboarding/
│           │               │   │   │   ├── OnboardingAppCard.kt
│           │               │   │   │   └── OnboardingAppList.kt
│           │               │   │   ├── patcher/
│           │               │   │   │   ├── InstallPickerDialog.kt
│           │               │   │   │   └── Steps.kt
│           │               │   │   ├── patches/
│           │               │   │   │   ├── ActionItem.kt
│           │               │   │   │   ├── IncompatiblePatchDialog.kt
│           │               │   │   │   ├── IncompatiblePatchesDialog.kt
│           │               │   │   │   ├── OptionFields.kt
│           │               │   │   │   ├── OptionsDialog.kt
│           │               │   │   │   ├── PatchItem.kt
│           │               │   │   │   ├── PatchesFilterBottomSheet.kt
│           │               │   │   │   ├── PatchesListHeader.kt
│           │               │   │   │   ├── PathSelectorDialog.kt
│           │               │   │   │   ├── ScopeDialog.kt
│           │               │   │   │   ├── SelectionWarningDialog.kt
│           │               │   │   │   ├── SourceSectionHeader.kt
│           │               │   │   │   ├── UniversalPatchWarningDialog.kt
│           │               │   │   │   ├── buildBundleSections.kt
│           │               │   │   │   └── buildSectionLayouts.kt
│           │               │   │   ├── scaffold/
│           │               │   │   │   └── BannerScaffold.kt
│           │               │   │   ├── settings/
│           │               │   │   │   ├── BooleanItem.kt
│           │               │   │   │   ├── Changelog.kt
│           │               │   │   │   ├── ExpressiveListIcon.kt
│           │               │   │   │   ├── IntegerItem.kt
│           │               │   │   │   ├── SafeguardBooleanItem.kt
│           │               │   │   │   ├── SettingsListItem.kt
│           │               │   │   │   └── ThemeSelector.kt
│           │               │   │   └── sources/
│           │               │   │       └── ImportSourceDialog.kt
│           │               │   ├── model/
│           │               │   │   ├── InstallerModel.kt
│           │               │   │   ├── PatcherStep.kt
│           │               │   │   ├── SelectedApp.kt
│           │               │   │   └── navigation/
│           │               │   │       └── Nav.kt
│           │               │   ├── screen/
│           │               │   │   ├── AnnouncementScreen.kt
│           │               │   │   ├── AnnouncementsScreen.kt
│           │               │   │   ├── AppSelectorScreen.kt
│           │               │   │   ├── AppliedPatchesDialog.kt
│           │               │   │   ├── BundleInformationScreen.kt
│           │               │   │   ├── BundleListScreen.kt
│           │               │   │   ├── DashboardScreen.kt
│           │               │   │   ├── InstalledAppInfoScreen.kt
│           │               │   │   ├── InstalledAppsScreen.kt
│           │               │   │   ├── OnboardingScreen.kt
│           │               │   │   ├── PatcherScreen.kt
│           │               │   │   ├── PatchesSelectorScreen.kt
│           │               │   │   ├── RequiredOptionsScreen.kt
│           │               │   │   ├── SelectedAppInfoScreen.kt
│           │               │   │   ├── SettingsScreen.kt
│           │               │   │   ├── UpdateScreen.kt
│           │               │   │   ├── onboarding/
│           │               │   │   │   ├── AppsStepContent.kt
│           │               │   │   │   ├── PermissionsStepContent.kt
│           │               │   │   │   └── UpdatesStepContent.kt
│           │               │   │   └── settings/
│           │               │   │       ├── AboutSettingsScreen.kt
│           │               │   │       ├── AdvancedSettingsScreen.kt
│           │               │   │       ├── ContributorSettingsScreen.kt
│           │               │   │       ├── DeveloperSettingsScreen.kt
│           │               │   │       ├── DownloadersInfoScreen.kt
│           │               │   │       ├── DownloadsSettingsScreen.kt
│           │               │   │       ├── GeneralSettingsScreen.kt
│           │               │   │       ├── ImportExportSettingsScreen.kt
│           │               │   │       ├── LicensesSettingsScreen.kt
│           │               │   │       └── update/
│           │               │   │           ├── ChangelogsSettingsScreen.kt
│           │               │   │           └── UpdatesSettingsScreen.kt
│           │               │   ├── theme/
│           │               │   │   ├── Color.kt
│           │               │   │   ├── Theme.kt
│           │               │   │   └── Type.kt
│           │               │   └── viewmodel/
│           │               │       ├── AboutViewModel.kt
│           │               │       ├── AdvancedSettingsViewModel.kt
│           │               │       ├── AnnouncementsViewModel.kt
│           │               │       ├── AppSelectorViewModel.kt
│           │               │       ├── AppliedPatchesViewModel.kt
│           │               │       ├── BundleInformationViewModel.kt
│           │               │       ├── BundleListViewModel.kt
│           │               │       ├── ChangelogsViewModel.kt
│           │               │       ├── ContributorViewModel.kt
│           │               │       ├── DashboardViewModel.kt
│           │               │       ├── DeveloperOptionsViewModel.kt
│           │               │       ├── DownloadsViewModel.kt
│           │               │       ├── GeneralSettingsViewModel.kt
│           │               │       ├── ImportExportViewModel.kt
│           │               │       ├── InstalledAppInfoViewModel.kt
│           │               │       ├── InstalledAppsViewModel.kt
│           │               │       ├── MainViewModel.kt
│           │               │       ├── OnboardingViewModel.kt
│           │               │       ├── PatcherViewModel.kt
│           │               │       ├── PatchesSelectorViewModel.kt
│           │               │       ├── SelectedAppInfoViewModel.kt
│           │               │       ├── UpdateViewModel.kt
│           │               │       └── UpdatesSettingsViewModel.kt
│           │               └── util/
│           │                   ├── Ackpine.kt
│           │                   ├── Constants.kt
│           │                   ├── PM.kt
│           │                   ├── RequestInstallAppsContract.kt
│           │                   ├── RequestManageStorageContract.kt
│           │                   ├── SnapshotStateSet.kt
│           │                   ├── SupportedLocales.kt
│           │                   ├── Util.kt
│           │                   └── saver/
│           │                       ├── NullableSaver.kt
│           │                       ├── PathSaver.kt
│           │                       ├── PersistentCollectionSavers.kt
│           │                       └── SnapshotStateCollectionSavers.kt
│           └── res/
│               ├── drawable/
│               │   ├── ic_launcher_foreground.xml
│               │   ├── ic_launcher_monochrome.xml
│               │   ├── ic_launcher_splash_screen.xml
│               │   ├── ic_logo_ring.xml
│               │   └── ic_notification.xml
│               ├── mipmap-anydpi/
│               │   └── ic_launcher.xml
│               ├── resources.properties
│               ├── values/
│               │   ├── colors.xml
│               │   ├── id.xml
│               │   ├── strings.xml
│               │   └── themes.xml
│               ├── values-af-rZA/
│               │   └── strings.xml
│               ├── values-am-rET/
│               │   └── strings.xml
│               ├── values-ar-rSA/
│               │   └── strings.xml
│               ├── values-as-rIN/
│               │   └── strings.xml
│               ├── values-az-rAZ/
│               │   └── strings.xml
│               ├── values-be-rBY/
│               │   └── strings.xml
│               ├── values-bg-rBG/
│               │   └── strings.xml
│               ├── values-bn-rBD/
│               │   └── strings.xml
│               ├── values-bs-rBA/
│               │   └── strings.xml
│               ├── values-ca-rES/
│               │   └── strings.xml
│               ├── values-cs-rCZ/
│               │   └── strings.xml
│               ├── values-da-rDK/
│               │   └── strings.xml
│               ├── values-de-rDE/
│               │   └── strings.xml
│               ├── values-el-rGR/
│               │   └── strings.xml
│               ├── values-es-rES/
│               │   └── strings.xml
│               ├── values-et-rEE/
│               │   └── strings.xml
│               ├── values-eu-rES/
│               │   └── strings.xml
│               ├── values-fa-rIR/
│               │   └── strings.xml
│               ├── values-fi-rFI/
│               │   └── strings.xml
│               ├── values-fil-rPH/
│               │   └── strings.xml
│               ├── values-fr-rFR/
│               │   └── strings.xml
│               ├── values-ga-rIE/
│               │   └── strings.xml
│               ├── values-gl-rES/
│               │   └── strings.xml
│               ├── values-gu-rIN/
│               │   └── strings.xml
│               ├── values-hi-rIN/
│               │   └── strings.xml
│               ├── values-hr-rHR/
│               │   └── strings.xml
│               ├── values-hu-rHU/
│               │   └── strings.xml
│               ├── values-hy-rAM/
│               │   └── strings.xml
│               ├── values-in-rID/
│               │   └── strings.xml
│               ├── values-is-rIS/
│               │   └── strings.xml
│               ├── values-it-rIT/
│               │   └── strings.xml
│               ├── values-iw-rIL/
│               │   └── strings.xml
│               ├── values-ja-rJP/
│               │   └── strings.xml
│               ├── values-ka-rGE/
│               │   └── strings.xml
│               ├── values-kk-rKZ/
│               │   └── strings.xml
│               ├── values-km-rKH/
│               │   └── strings.xml
│               ├── values-kn-rIN/
│               │   └── strings.xml
│               ├── values-ko-rKR/
│               │   └── strings.xml
│               ├── values-ky-rKG/
│               │   └── strings.xml
│               ├── values-lo-rLA/
│               │   └── strings.xml
│               ├── values-lt-rLT/
│               │   └── strings.xml
│               ├── values-lv-rLV/
│               │   └── strings.xml
│               ├── values-mk-rMK/
│               │   └── strings.xml
│               ├── values-ml-rIN/
│               │   └── strings.xml
│               ├── values-mn-rMN/
│               │   └── strings.xml
│               ├── values-mr-rIN/
│               │   └── strings.xml
│               ├── values-ms-rMY/
│               │   └── strings.xml
│               ├── values-my-rMM/
│               │   └── strings.xml
│               ├── values-nb-rNO/
│               │   └── strings.xml
│               ├── values-ne-rIN/
│               │   └── strings.xml
│               ├── values-nl-rNL/
│               │   └── strings.xml
│               ├── values-or-rIN/
│               │   └── strings.xml
│               ├── values-pa-rIN/
│               │   └── strings.xml
│               ├── values-pl-rPL/
│               │   └── strings.xml
│               ├── values-pt-rBR/
│               │   └── strings.xml
│               ├── values-pt-rPT/
│               │   └── strings.xml
│               ├── values-ro-rRO/
│               │   └── strings.xml
│               ├── values-ru-rRU/
│               │   └── strings.xml
│               ├── values-si-rLK/
│               │   └── strings.xml
│               ├── values-sk-rSK/
│               │   └── strings.xml
│               ├── values-sl-rSI/
│               │   └── strings.xml
│               ├── values-sq-rAL/
│               │   └── strings.xml
│               ├── values-sr-rCS/
│               │   └── strings.xml
│               ├── values-sr-rSP/
│               │   └── strings.xml
│               ├── values-sv-rSE/
│               │   └── strings.xml
│               ├── values-sw-rKE/
│               │   └── strings.xml
│               ├── values-ta-rIN/
│               │   └── strings.xml
│               ├── values-te-rIN/
│               │   └── strings.xml
│               ├── values-th-rTH/
│               │   └── strings.xml
│               ├── values-tr-rTR/
│               │   └── strings.xml
│               ├── values-uk-rUA/
│               │   └── strings.xml
│               ├── values-ur-rIN/
│               │   └── strings.xml
│               ├── values-uz-rUZ/
│               │   └── strings.xml
│               ├── values-vi-rVN/
│               │   └── strings.xml
│               ├── values-zh-rCN/
│               │   └── strings.xml
│               ├── values-zh-rTW/
│               │   └── strings.xml
│               ├── values-zu-rZA/
│               │   └── strings.xml
│               └── xml/
│                   ├── backup_rules.xml
│                   ├── data_extraction_rules.xml
│                   └── file_provider_paths.xml
├── build.gradle.kts
├── crowdin.yml
├── docs/
│   ├── 0_prerequisites.md
│   ├── 1_installation.md
│   ├── 2_1_patching.md
│   ├── 2_2_managing_apps.md
│   ├── 2_3_managing_patches.md
│   ├── 2_4_managing_downloaders.md
│   ├── 2_5_updating.md
│   ├── 2_6_settings.md
│   ├── 2_usage.md
│   ├── 3_troubleshooting.md
│   ├── 4_building.md
│   └── README.md
├── gradle/
│   ├── libs.versions.toml
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── package.json
└── settings.gradle.kts

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.yml
================================================
name: 🐞 Bug report
description: Report a bug or an issue.
title: 'bug: '
labels: ['Bug report']
body:
  - type: markdown
    attributes:
      value: |
        <p align="center">
          <picture>
            <source
              width="256px"
              media="(prefers-color-scheme: dark)"
              srcset="https://raw.githubusercontent.com/revanced/revanced-manager/main/assets/revanced-headline/revanced-headline-vertical-dark.svg"
            >
            <img 
              width="256px"
              src="https://raw.githubusercontent.com/revanced/revanced-manager/main/assets/revanced-headline/revanced-headline-vertical-light.svg"
            >
          </picture>
          <br>
          <a href="https://revanced.app/">
             <picture>
                 <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/revanced/revanced-manager/main/assets/revanced-logo/revanced-logo.svg" />
                 <img height="24px" src="https://raw.githubusercontent.com/revanced/revanced-manager/main/assets/revanced-logo/revanced-logo.svg" />
             </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://github.com/ReVanced">
               <picture>
                   <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://i.ibb.co/dMMmCrW/Git-Hub-Mark.png" />
                   <img height="24px" src="https://i.ibb.co/9wV3HGF/Git-Hub-Mark-Light.png" />
               </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="http://revanced.app/discord">
               <picture>
                   <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032563-d4e084b7-244e-4358-af50-26bde6dd4996.png" />
                   <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032563-d4e084b7-244e-4358-af50-26bde6dd4996.png" />
               </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://reddit.com/r/revancedapp">
               <picture>
                   <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032351-9d9d5619-8ef7-470a-9eec-2744ece54553.png" />
                   <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032351-9d9d5619-8ef7-470a-9eec-2744ece54553.png" />
               </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://t.me/app_revanced">
              <picture>
                 <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032213-faf25ab8-0bc3-4a94-a730-b524c96df124.png" />
                 <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032213-faf25ab8-0bc3-4a94-a730-b524c96df124.png" />
              </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://x.com/revancedapp">
              <picture>
                 <source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/93124920/270180600-7c1b38bf-889b-4d68-bd5e-b9d86f91421a.png">
                 <img height="24px" src="https://user-images.githubusercontent.com/93124920/270108715-d80743fa-b330-4809-b1e6-79fbdc60d09c.png" />
              </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://www.youtube.com/@ReVanced">
              <picture>
                 <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032714-c51c7492-0666-44ac-99c2-f003a695ab50.png" />
                 <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032714-c51c7492-0666-44ac-99c2-f003a695ab50.png" />
             </picture>
           </a>
           <br>
           <br>
           Continuing the legacy of Vanced
        </p>

        # ReVanced Manager bug report

        Before creating a new bug report, please keep the following in mind:

        - **Do not submit a duplicate bug report**: Search for existing bug reports [here](https://github.com/ReVanced/revanced-manager/issues?q=label%3A%22Bug+report%22).
        - **Review the contribution guidelines**: Make sure your bug report adheres to it. You can find the guidelines [here](https://github.com/ReVanced/revanced-manager/blob/main/CONTRIBUTING.md).
        - **Do not use the issue page for support**: If you need help or have questions, check out other platforms on [revanced.app](https://revanced.app).
  - type: textarea
    attributes:
      label: Bug description
      description: |
        - Describe your bug in detail
        - Add steps to reproduce the bug if possible (Step 1. ... Step 2. ...)
        - Add images and videos if possible
        - List used patches, downloader and settings if applicable
    validations:
      required: true
  - type: textarea
    attributes:
      label: Patch logs
      description: Patch logs can be exported by clicking on the "Logs" button in the "Patcher" screen, when patching finishes.
      render: shell
  - type: textarea
    attributes:
      label: Debug logs
      description: Debug logs can be exported by clicking on  "Export debug logs" in "Settings" > "Advanced".
    validations:
      required: true
  - type: checkboxes
    attributes:
      label: Acknowledgements
      description: Your bug report will be closed if you don't follow the checklist below.
      options:
        - label: I have checked all open and closed bug reports and this is not a duplicate.
          required: true
        - label: I have chosen an appropriate title.
          required: true
        - label: All requested information has been provided properly.
          required: true
        - label: The bug is only related to ReVanced Manager.
          required: true


================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
  - name: 🗨 Discussions
    url: https://github.com/revanced/revanced-suggestions/discussions
    about: Have something unspecific to ReVanced Manager in mind? Search for or start a new discussion!

================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.yml
================================================
name: ⭐ Feature request
description: Create a detailed request for a new feature.
title: 'feat: '
labels: ['Feature request']
body:
  - type: markdown
    attributes:
      value: |
        <p align="center">
          <picture>
            <source
              width="256px"
              media="(prefers-color-scheme: dark)"
              srcset="https://raw.githubusercontent.com/revanced/revanced-manager/main/assets/revanced-headline/revanced-headline-vertical-dark.svg"
            >
            <img 
              width="256px"
              src="https://raw.githubusercontent.com/revanced/revanced-manager/main/assets/revanced-headline/revanced-headline-vertical-light.svg"
            >
          </picture>
          <br>
          <a href="https://revanced.app/">
             <picture>
                 <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/revanced/revanced-manager/main/assets/revanced-logo/revanced-logo.svg" />
                 <img height="24px" src="https://raw.githubusercontent.com/revanced/revanced-manager/main/assets/revanced-logo/revanced-logo.svg" />
             </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://github.com/ReVanced">
               <picture>
                   <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://i.ibb.co/dMMmCrW/Git-Hub-Mark.png" />
                   <img height="24px" src="https://i.ibb.co/9wV3HGF/Git-Hub-Mark-Light.png" />
               </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="http://revanced.app/discord">
               <picture>
                   <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032563-d4e084b7-244e-4358-af50-26bde6dd4996.png" />
                   <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032563-d4e084b7-244e-4358-af50-26bde6dd4996.png" />
               </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://reddit.com/r/revancedapp">
               <picture>
                   <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032351-9d9d5619-8ef7-470a-9eec-2744ece54553.png" />
                   <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032351-9d9d5619-8ef7-470a-9eec-2744ece54553.png" />
               </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://t.me/app_revanced">
              <picture>
                 <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032213-faf25ab8-0bc3-4a94-a730-b524c96df124.png" />
                 <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032213-faf25ab8-0bc3-4a94-a730-b524c96df124.png" />
              </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://x.com/revancedapp">
              <picture>
                 <source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/93124920/270180600-7c1b38bf-889b-4d68-bd5e-b9d86f91421a.png">
                 <img height="24px" src="https://user-images.githubusercontent.com/93124920/270108715-d80743fa-b330-4809-b1e6-79fbdc60d09c.png" />
              </picture>
           </a>&nbsp;&nbsp;&nbsp;
           <a href="https://www.youtube.com/@ReVanced">
              <picture>
                 <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032714-c51c7492-0666-44ac-99c2-f003a695ab50.png" />
                 <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032714-c51c7492-0666-44ac-99c2-f003a695ab50.png" />
             </picture>
           </a>
           <br>
           <br>
           Continuing the legacy of Vanced
        </p>

        # ReVanced Manager feature request

        Before creating a new feature request, please keep the following in mind:

        - **Do not submit a duplicate feature request**: Search for existing feature requests [here](https://github.com/ReVanced/revanced-manager/issues?q=label%3A%22Feature+request%22).
        - **Review the contribution guidelines**: Make sure your feature request adheres to it. You can find the guidelines [here](https://github.com/ReVanced/revanced-manager/blob/main/CONTRIBUTING.md).
        - **Do not use the issue page for support**: If you need help or have questions, check out other platforms on [revanced.app](https://revanced.app).
  - type: textarea
    attributes:
      label: Feature description
      description: |
        - Describe your feature in detail
        - Add images, videos, links, examples, references, etc. if possible
  - type: textarea
    attributes:
      label: Motivation
      description: |
        A strong motivation is necessary for a feature request to be considered.
        
        - Why should this feature be implemented? 
        - What is the explicit use case?
        - What are the benefits?
        - What makes this feature important?
    validations:
      required: true
  - type: checkboxes
    id: acknowledgements
    attributes:
      label: Acknowledgements
      description: Your feature request will be closed if you don't follow the checklist below.
      options:
        - label: I have checked all open and closed feature requests and this is not a duplicate
          required: true
        - label: I have chosen an appropriate title.
          required: true
        - label: All requested information has been provided properly.
          required: true
        - label: The feature request is only related to ReVanced Manager.
          required: true


================================================
FILE: .github/config.yaml
================================================
firstPRMergeComment: >
  Thank you for contributing to ReVanced. Join us on [Discord](https://revanced.app/discord) to receive a role for your contribution.


================================================
FILE: .github/workflows/build_pull_request.yml
================================================
name: Build pull request

on:
  workflow_dispatch:
  pull_request:
    branches:
      - dev

jobs:
  release:
    name: Build
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v6

      - name: Cache Gradle
        uses: burrunan/gradle-cache-action@v3

      - name: Build
        env:
          ORG_GRADLE_PROJECT_githubPackagesUsername: ${{ env.GITHUB_ACTOR }}
          ORG_GRADLE_PROJECT_githubPackagesPassword: ${{ secrets.GITHUB_TOKEN }}
        run: ./gradlew assembleRelease --no-daemon

      - name: Upload artifacts
        uses: actions/upload-artifact@v7
        with:
          name: revanced-manager
          path: |
            app/build/outputs/apk/release/revanced-manager*.apk
            app/build/outputs/apk/release/revanced-manager*.apk.asc
          archive: false


================================================
FILE: .github/workflows/open_pull_request.yml
================================================
name: Open a PR to main

on:
  push:
    branches:
      - dev
  workflow_dispatch:

env:
  MESSAGE: Merge branch `${{ github.head_ref || github.ref_name }}` to `main`

jobs:
  pull-request:
    name: Open pull request
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v6

      - name: Open pull request
        uses: repo-sync/pull-request@v2
        with:
          destination_branch: 'main'
          pr_title: 'chore: ${{ env.MESSAGE }}'
          pr_body: 'This pull request will ${{ env.MESSAGE }}.'
          pr_draft: true


================================================
FILE: .github/workflows/pull_strings.yml
================================================
name: Pull strings

on:
  schedule:
    - cron: "0 0 * * 0"
  workflow_dispatch:

jobs:
  pull:
    name: Pull strings
    permissions:
      contents: write
      pull-requests: write
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v6
        with:
          ref: dev
          clean: true

      - name: Pull strings
        uses: crowdin/github-action@v2
        with:
          config: crowdin.yml
          upload_sources: false
          download_translations: true
          skip_ref_checkout: true
          localization_branch_name: feat/translations
          create_pull_request: false
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
          CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}

      - name: Open pull request
        if: github.event_name == 'workflow_dispatch'
        uses: repo-sync/pull-request@v2
        with:
          source_branch: feat/translations
          destination_branch: dev
          pr_title: "chore: Sync translations"
          pr_body: "Sync translations from [crowdin.com/project/revanced](https://crowdin.com/project/revanced)"


================================================
FILE: .github/workflows/push_strings.yml
================================================
name: Push strings

on:
  workflow_dispatch:
  push:
    branches:
      - dev
    paths:
      - app/src/main/res/values/strings.xml

jobs:
  push:
    name: Push strings
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v6

      - name: Push strings
        uses: crowdin/github-action@v2
        with:
          config: crowdin.yml
          upload_sources: true
        env:
          CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
          CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}


================================================
FILE: .github/workflows/release.yml
================================================
name: Release

on:
    workflow_dispatch:
    push:
        branches:
            - main
            - dev

jobs:
    release:
        name: Release
        permissions:
            contents: write
            packages: write
            id-token: write
            attestations: write
            artifact-metadata: write
        runs-on: ubuntu-latest
        steps:
            - name: Checkout
              uses: actions/checkout@v6

            - name: Setup Java
              uses: actions/setup-java@v5
              with:
                  distribution: "temurin"
                  java-version: "17"

            - name: Cache Gradle
              uses: burrunan/gradle-cache-action@v3

            - name: Build
              env:
                  ORG_GRADLE_PROJECT_githubPackagesUsername: ${{ github.actor }}
                  ORG_GRADLE_PROJECT_githubPackagesPassword: ${{ secrets.GITHUB_TOKEN }}
              run: ./gradlew assembleRelease

            - name: Setup Node.js
              uses: actions/setup-node@v6
              with:
                  node-version: "lts/*"
                  cache: "npm"

            - name: Install dependencies
              run: npm ci

            - name: Import GPG key
              uses: crazy-max/ghaction-import-gpg@v7
              with:
                  gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
                  passphrase: ${{ secrets.GPG_PASSPHRASE }}
                  fingerprint: ${{ vars.GPG_FINGERPRINT }}

            - name: Setup keystore
              run: |
                  echo "${{ secrets.KEYSTORE }}" | base64 --decode > "app/keystore.jks"

            - name: Release API
              run: npx multi-semantic-release --tag-format 'api@${version}' --ignore-packages app
              env:
                  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
                  ORG_GRADLE_PROJECT_githubPackagesUsername: ${{ github.actor }}
                  ORG_GRADLE_PROJECT_githubPackagesPassword: ${{ secrets.GITHUB_TOKEN }}

            - name: Release
              id: release
              run: |
                  npx multi-semantic-release --tag-format 'v${version}' --ignore-packages api
              env:
                  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
                  ORG_GRADLE_PROJECT_githubPackagesUsername: ${{ github.actor }}
                  ORG_GRADLE_PROJECT_githubPackagesPassword: ${{ secrets.GITHUB_TOKEN }}
                  KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
                  KEYSTORE_ENTRY_ALIAS: ${{ secrets.KEYSTORE_ENTRY_ALIAS }}
                  KEYSTORE_ENTRY_PASSWORD: ${{ secrets.KEYSTORE_ENTRY_PASSWORD }}

            - name: Attest
              if: steps.release.outputs.NEW_TAG != ''
              uses: actions/attest@v4
              with:
                  subject-name: "ReVanced Manager ${{ steps.release.outputs.NEW_TAG }}"
                  subject-path: app/build/outputs/apk/release/revanced-manager*.apk


================================================
FILE: .github/workflows/update_documentation.yml
================================================
name: Update documentation

on:
  push:
    paths:
      - docs/**

jobs:
  trigger:
    runs-on: ubuntu-latest
    name: Dispatch event to documentation repository
    if: github.ref == 'refs/heads/main'
    steps:
      - uses: peter-evans/repository-dispatch@v4
        with:
          token: ${{ secrets.DOCUMENTATION_REPO_ACCESS_TOKEN  }}
          repository: revanced/revanced-documentation
          event-type: update-documentation
          client-payload: '{"repo": "${{ github.event.repository.name }}", "ref": "${{ github.ref }}"}'

================================================
FILE: .gitignore
================================================
### Java template
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn.  Uncomment if using
# auto-import.
.idea/artifacts
.idea/compiler.xml
.idea/jarRepositories.xml
.idea/modules.xml
.idea/*.iml
.idea/modules
*.iml
*.ipr

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

### Gradle template
.gradle
**/build/
!src/**/build/

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

# Cache of project
.gradletasknamecache

# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties

# Potentially copyrighted test APK
*.apk

# Ignore vscode config
.vscode/

# Dependency directories
node_modules/

# Ignore IDEA files
.idea/

.kotlin/

local.properties

.cxx

================================================
FILE: CONTRIBUTING.md
================================================
<p align="center">
  <picture>
    <source
      width="256px"
      media="(prefers-color-scheme: dark)"
      srcset="assets/revanced-headline/revanced-headline-vertical-dark.svg"
    >
    <img 
      width="256px"
      src="assets/revanced-headline/revanced-headline-vertical-light.svg"
    >
  </picture>
  <br>
  <a href="https://revanced.app/">
       <picture>
           <source height="24px" media="(prefers-color-scheme: dark)" srcset="assets/revanced-logo/revanced-logo.svg" />
           <img height="24px" src="assets/revanced-logo/revanced-logo.svg" />
       </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://github.com/ReVanced">
       <picture>
           <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://i.ibb.co/dMMmCrW/Git-Hub-Mark.png" />
           <img height="24px" src="https://i.ibb.co/9wV3HGF/Git-Hub-Mark-Light.png" />
       </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="http://revanced.app/discord">
       <picture>
           <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032563-d4e084b7-244e-4358-af50-26bde6dd4996.png" />
           <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032563-d4e084b7-244e-4358-af50-26bde6dd4996.png" />
       </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://reddit.com/r/revancedapp">
       <picture>
           <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032351-9d9d5619-8ef7-470a-9eec-2744ece54553.png" />
           <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032351-9d9d5619-8ef7-470a-9eec-2744ece54553.png" />
       </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://t.me/app_revanced">
      <picture>
         <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032213-faf25ab8-0bc3-4a94-a730-b524c96df124.png" />
         <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032213-faf25ab8-0bc3-4a94-a730-b524c96df124.png" />
      </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://x.com/revancedapp">
      <picture>
         <source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/93124920/270180600-7c1b38bf-889b-4d68-bd5e-b9d86f91421a.png">
         <img height="24px" src="https://user-images.githubusercontent.com/93124920/270108715-d80743fa-b330-4809-b1e6-79fbdc60d09c.png" />
      </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://www.youtube.com/@ReVanced">
      <picture>
         <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032714-c51c7492-0666-44ac-99c2-f003a695ab50.png" />
         <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032714-c51c7492-0666-44ac-99c2-f003a695ab50.png" />
     </picture>
   </a>
   <br>
   <br>
   Continuing the legacy of Vanced
</p>

# 👋 Contribution guidelines

This document describes how to contribute to ReVanced Manager.

## 📖 Resources to help you get started

* The [documentation](/docs/README.md) provides steps to build ReVanced Manager from source
* Our [backlog](https://github.com/orgs/ReVanced/projects/12) is where we keep track of what we're working on
* [Issues](https://github.com/ReVanced/revanced-manager/issues) are where we keep track of bugs and feature requests

## 🙏 Submitting a feature request

Features can be requested by opening an issue using the
[Feature request issue template](https://github.com/ReVanced/revanced-manager/issues/new?assignees=&labels=Feature+request&projects=&template=feature_request.yml&title=feat%3A+).

> **Note**
> Requests can be accepted or rejected at the discretion of maintainers of ReVanced Manager.
> Good motivation has to be provided for a request to be accepted.

## 🐞 Submitting a bug report

If you encounter a bug while using ReVanced Manager, open an issue using the
[Bug report issue template](https://github.com/ReVanced/revanced-manager/issues/new?assignees=&labels=Bug+report&projects=&template=bug_report.yml&title=bug%3A+).

## 📝 How to contribute

1. Before contributing, it is recommended to open an issue to discuss your change
   with the maintainers of ReVanced Manager. This will help you determine whether your change is acceptable
   and whether it is worth your time to implement it
2. Development happens on the `dev` branch. Fork the repository and create your branch from `dev`
3. Commit your changes
4. Submit a pull request to the `dev` branch of the repository and reference issues
   that your pull request closes in the description of your pull request
5. Our team will review your pull request and provide feedback. Once your pull request is approved,
   it will be merged into the `dev` branch and will be included in the next release of ReVanced Manager

## 🤚 I want to contribute but don't know how to code

Even if you don't know how to code, you can still contribute by
translating ReVanced Manager on [Crowdin](https://translate.revanced.app/).

❤️ Thank you for considering contributing to ReVanced Manager,  
ReVanced


================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
<p align="center">
  <picture>
    <source
      width="256px"
      media="(prefers-color-scheme: dark)"
      srcset="assets/revanced-headline/revanced-headline-vertical-dark.svg"
    >
    <img 
      width="256px"
      src="assets/revanced-headline/revanced-headline-vertical-light.svg"
    >
  </picture>
  <br>
  <a href="https://revanced.app/">
       <picture>
           <source height="24px" media="(prefers-color-scheme: dark)" srcset="assets/revanced-logo/revanced-logo.svg" />
           <img height="24px" src="assets/revanced-logo/revanced-logo.svg" />
       </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://github.com/ReVanced">
       <picture>
           <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://i.ibb.co/dMMmCrW/Git-Hub-Mark.png" />
           <img height="24px" src="https://i.ibb.co/9wV3HGF/Git-Hub-Mark-Light.png" />
       </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="http://revanced.app/discord">
       <picture>
           <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032563-d4e084b7-244e-4358-af50-26bde6dd4996.png" />
           <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032563-d4e084b7-244e-4358-af50-26bde6dd4996.png" />
       </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://reddit.com/r/revancedapp">
       <picture>
           <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032351-9d9d5619-8ef7-470a-9eec-2744ece54553.png" />
           <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032351-9d9d5619-8ef7-470a-9eec-2744ece54553.png" />
       </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://t.me/app_revanced">
      <picture>
         <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032213-faf25ab8-0bc3-4a94-a730-b524c96df124.png" />
         <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032213-faf25ab8-0bc3-4a94-a730-b524c96df124.png" />
      </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://x.com/revancedapp">
      <picture>
         <source media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/93124920/270180600-7c1b38bf-889b-4d68-bd5e-b9d86f91421a.png">
         <img height="24px" src="https://user-images.githubusercontent.com/93124920/270108715-d80743fa-b330-4809-b1e6-79fbdc60d09c.png" />
      </picture>
   </a>&nbsp;&nbsp;&nbsp;
   <a href="https://www.youtube.com/@ReVanced">
      <picture>
         <source height="24px" media="(prefers-color-scheme: dark)" srcset="https://user-images.githubusercontent.com/13122796/178032714-c51c7492-0666-44ac-99c2-f003a695ab50.png" />
         <img height="24px" src="https://user-images.githubusercontent.com/13122796/178032714-c51c7492-0666-44ac-99c2-f003a695ab50.png" />
     </picture>
   </a>
   <br>
   <br>
   Continuing the legacy of Vanced
</p>

# 💊 ReVanced Manager

![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/ReVanced/revanced-manager/release.yml)
![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)

Application to use ReVanced on Android

## ❓ About

ReVanced Manager is an application that uses [ReVanced Patcher](https://github.com/revanced/revanced-patcher) to patch Android apps.

## 💪 Features

Some of the features ReVanced Manager provides are:

- ⬇️ **Download**: Automatically download apps using the ReVanced Manager downloader system
- 💉 **Patch**: Select and apply patches to any Android app
- 🛠️ **Customize**: Manage patches, apps, signing, themes, updates, and many more settings

## 🔽 Download

You can download the most recent version of ReVanced Manager at [revanced.app/download](https://revanced.app/download) or from [GitHub releases](https://github.com/ReVanced/revanced-manager/releases/latest).  
Learn how to use ReVanced Manager by following the [documentation](/docs).

## 📚 Everything else

### 📙 Contributing

Thank you for considering contributing to ReVanced Manager.
You can find the contribution guidelines [here](CONTRIBUTING.md).

### 🛠️ Building

To build a ReVanced Manager, you can follow the [documentation](/docs).

### 📄 Documentation

You can find the documentation for ReVanced Manager [here](/docs).

## ⚖️ License

ReVanced Manager is licensed under the GPLv3 license. Please see the [license file](LICENSE) for more information.
[tl;dr](https://www.tldrlegal.com/license/gnu-general-public-license-v3-gpl-3) you may copy, distribute and modify ReVanced Manager as long as you track changes/dates in source files.
Any modifications to ReVanced Manager must also be made available under the GPL, along with build & install instructions.


================================================
FILE: adsfund.json
================================================
{
  "info": "This is verification file for ads.fund project",
  "project": {
    "name": "ReVanced Manager",
    "walletAddress": "0x7ab4091e00363654bf84B34151225742cd92FCE5",
    "tokenAddress": "0xadf954bc6f509b3a32fb5e97ed4ba6c000e37155"
  }
}


================================================
FILE: api/.releaserc
================================================
{
  "branches": [
    "main",
    {
      "name": "dev",
      "prerelease": true
    }
  ],
  "plugins": [
    [
      "@semantic-release/commit-analyzer",
      {
        "releaseRules": [
          { "type": "build", "scope": "Needs bump", "release": "patch" }
        ]
      }
    ],
    "@semantic-release/release-notes-generator",
    "@semantic-release/changelog",
    "gradle-semantic-release-plugin",
    [
      "@semantic-release/git",
      {
        "assets": [
          "CHANGELOG.md",
          "gradle.properties"
        ],
        "message": "chore: Release API v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
      }
    ],
    [
      "@saithodev/semantic-release-backmerge",
      {
        "backmergeBranches": [{"from": "main", "to": "dev"}],
        "clearWorkspace": true
      }
    ]
  ]
}


================================================
FILE: api/CHANGELOG.md
================================================
# api 1.0.0 (2026-03-14)


### Features

* Add support for writing downloader UI with fragments ([#2998](https://github.com/ReVanced/revanced-manager/issues/2998)) ([7471710](https://github.com/ReVanced/revanced-manager/commit/7471710f287b4febb9546a7d7cd59d654b2754e9))
* Allow multiple downloaders per APK ([#2916](https://github.com/ReVanced/revanced-manager/issues/2916)) ([0f56377](https://github.com/ReVanced/revanced-manager/commit/0f56377214fae05693a21177daf7534c103df74e))
* Revamp UI and improve UX ([2d42197](https://github.com/ReVanced/revanced-manager/commit/2d4219701248ee70fd42d93755fee0a63b75e5db))
* Update to Patcher v22 ([#2939](https://github.com/ReVanced/revanced-manager/issues/2939)) ([8667051](https://github.com/ReVanced/revanced-manager/commit/8667051283f934a32ac7b7cc76178397dc45a0e6))

# api [1.0.0-dev.4](https://github.com/ReVanced/revanced-manager/compare/api@1.0.0-dev.3...api@1.0.0-dev.4) (2026-03-14)


### Features

* Revamp UI and improve UX ([2d42197](https://github.com/ReVanced/revanced-manager/commit/2d4219701248ee70fd42d93755fee0a63b75e5db))

# api [1.0.0-dev.4](https://github.com/ReVanced/revanced-manager/compare/api@1.0.0-dev.3...api@1.0.0-dev.4) (2026-03-14)


### Features

* Revamp UI and improve UX ([2d42197](https://github.com/ReVanced/revanced-manager/commit/2d4219701248ee70fd42d93755fee0a63b75e5db))

# api [1.0.0-dev.3](https://github.com/ReVanced/revanced-manager/compare/api@1.0.0-dev.2...api@1.0.0-dev.3) (2026-03-12)


### Features

* Add support for writing downloader UI with fragments ([#2998](https://github.com/ReVanced/revanced-manager/issues/2998)) ([7471710](https://github.com/ReVanced/revanced-manager/commit/7471710f287b4febb9546a7d7cd59d654b2754e9))

# api [1.0.0-dev.2](https://github.com/ReVanced/revanced-manager/compare/api@1.0.0-dev.1...api@1.0.0-dev.2) (2026-02-27)


### Features

* Update to Patcher v22 ([#2939](https://github.com/ReVanced/revanced-manager/issues/2939)) ([8667051](https://github.com/ReVanced/revanced-manager/commit/8667051283f934a32ac7b7cc76178397dc45a0e6))

# api 1.0.0-dev.1 (2026-02-19)


### Features

* Allow multiple downloaders per APK ([#2916](https://github.com/ReVanced/revanced-manager/issues/2916)) ([0f56377](https://github.com/ReVanced/revanced-manager/commit/0f56377214fae05693a21177daf7534c103df74e))


================================================
FILE: api/api/api.api
================================================
public abstract interface class app/revanced/manager/downloader/BaseDownloadScope : app/revanced/manager/downloader/Scope {
}

public final class app/revanced/manager/downloader/ConstantsKt {
	public static final field DOWNLOADER_HOST_PERMISSION Ljava/lang/String;
}

public final class app/revanced/manager/downloader/DownloadUrl : android/os/Parcelable {
	public static final field $stable I
	public static final field CREATOR Landroid/os/Parcelable$Creator;
	public fun <init> (Ljava/lang/String;Ljava/util/Map;)V
	public synthetic fun <init> (Ljava/lang/String;Ljava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
	public final fun component1 ()Ljava/lang/String;
	public final fun component2 ()Ljava/util/Map;
	public final fun copy (Ljava/lang/String;Ljava/util/Map;)Lapp/revanced/manager/downloader/DownloadUrl;
	public static synthetic fun copy$default (Lapp/revanced/manager/downloader/DownloadUrl;Ljava/lang/String;Ljava/util/Map;ILjava/lang/Object;)Lapp/revanced/manager/downloader/DownloadUrl;
	public final fun describeContents ()I
	public fun equals (Ljava/lang/Object;)Z
	public final fun getHeaders ()Ljava/util/Map;
	public final fun getUrl ()Ljava/lang/String;
	public fun hashCode ()I
	public final fun toDownloadResult ()Lkotlin/Pair;
	public fun toString ()Ljava/lang/String;
	public final fun writeToParcel (Landroid/os/Parcel;I)V
}

public final class app/revanced/manager/downloader/Downloader {
	public static final field $stable I
}

public final class app/revanced/manager/downloader/DownloaderBuilder {
	public static final field $stable I
}

public abstract interface annotation class app/revanced/manager/downloader/DownloaderHostApi : java/lang/annotation/Annotation {
}

public final class app/revanced/manager/downloader/DownloaderKt {
	public static final fun Downloader (ILkotlin/jvm/functions/Function1;)Lapp/revanced/manager/downloader/DownloaderBuilder;
}

public final class app/revanced/manager/downloader/DownloaderScope : app/revanced/manager/downloader/Scope {
	public static final field $stable I
	public final fun download (Lkotlin/jvm/functions/Function3;)V
	public final fun get (Lkotlin/jvm/functions/Function4;)V
	public fun getDownloaderPackageName ()Ljava/lang/String;
	public fun getHostPackageName ()Ljava/lang/String;
	public final fun useService (Landroid/content/Intent;Lkotlin/jvm/functions/Function2;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
}

public final class app/revanced/manager/downloader/ExtensionsKt {
	public static final fun download (Lapp/revanced/manager/downloader/DownloaderScope;Lkotlin/jvm/functions/Function4;)V
}

public abstract interface class app/revanced/manager/downloader/GetScope : app/revanced/manager/downloader/Scope {
	public abstract fun requestStartActivity (Landroid/content/Intent;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
}

public abstract interface class app/revanced/manager/downloader/InputDownloadScope : app/revanced/manager/downloader/BaseDownloadScope {
}

public abstract interface class app/revanced/manager/downloader/OutputDownloadScope : app/revanced/manager/downloader/BaseDownloadScope {
	public abstract fun reportSize (JLkotlin/coroutines/Continuation;)Ljava/lang/Object;
}

public final class app/revanced/manager/downloader/Package : android/os/Parcelable {
	public static final field $stable I
	public static final field CREATOR Landroid/os/Parcelable$Creator;
	public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
	public final fun component1 ()Ljava/lang/String;
	public final fun component2 ()Ljava/lang/String;
	public final fun copy (Ljava/lang/String;Ljava/lang/String;)Lapp/revanced/manager/downloader/Package;
	public static synthetic fun copy$default (Lapp/revanced/manager/downloader/Package;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)Lapp/revanced/manager/downloader/Package;
	public final fun describeContents ()I
	public fun equals (Ljava/lang/Object;)Z
	public final fun getName ()Ljava/lang/String;
	public final fun getVersion ()Ljava/lang/String;
	public fun hashCode ()I
	public fun toString ()Ljava/lang/String;
	public final fun writeToParcel (Landroid/os/Parcel;I)V
}

public abstract interface class app/revanced/manager/downloader/Scope {
	public abstract fun getDownloaderPackageName ()Ljava/lang/String;
	public abstract fun getHostPackageName ()Ljava/lang/String;
}

public abstract class app/revanced/manager/downloader/UserInteractionException : java/lang/Exception {
	public static final field $stable I
	public synthetic fun <init> (Ljava/lang/String;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
}

public abstract class app/revanced/manager/downloader/UserInteractionException$Activity : app/revanced/manager/downloader/UserInteractionException {
	public static final field $stable I
	public synthetic fun <init> (Ljava/lang/String;Lkotlin/jvm/internal/DefaultConstructorMarker;)V
}

public final class app/revanced/manager/downloader/UserInteractionException$Activity$Cancelled : app/revanced/manager/downloader/UserInteractionException$Activity {
	public static final field $stable I
}

public final class app/revanced/manager/downloader/UserInteractionException$Activity$NotCompleted : app/revanced/manager/downloader/UserInteractionException$Activity {
	public static final field $stable I
	public final fun getIntent ()Landroid/content/Intent;
	public final fun getResultCode ()I
}

public final class app/revanced/manager/downloader/UserInteractionException$RequestDenied : app/revanced/manager/downloader/UserInteractionException {
	public static final field $stable I
}

public final class app/revanced/manager/downloader/webview/APIKt {
	public static final fun WebViewDownloader (ILkotlin/jvm/functions/Function4;)Lapp/revanced/manager/downloader/DownloaderBuilder;
	public static final fun runWebView (Lapp/revanced/manager/downloader/GetScope;Ljava/lang/String;Lkotlin/jvm/functions/Function2;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
}

public class app/revanced/manager/downloader/webview/IWebView$Default : app/revanced/manager/downloader/webview/IWebView {
	public fun <init> ()V
	public fun asBinder ()Landroid/os/IBinder;
	public fun finish ()V
	public fun load (Ljava/lang/String;)V
}

public abstract class app/revanced/manager/downloader/webview/IWebView$Stub : android/os/Binder, app/revanced/manager/downloader/webview/IWebView {
	public fun <init> ()V
	public fun asBinder ()Landroid/os/IBinder;
	public static fun asInterface (Landroid/os/IBinder;)Lapp/revanced/manager/downloader/webview/IWebView;
	public fun onTransact (ILandroid/os/Parcel;Landroid/os/Parcel;I)Z
}

public class app/revanced/manager/downloader/webview/IWebViewEvents$Default : app/revanced/manager/downloader/webview/IWebViewEvents {
	public fun <init> ()V
	public fun asBinder ()Landroid/os/IBinder;
	public fun download (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
	public fun pageLoad (Ljava/lang/String;)V
	public fun ready (Lapp/revanced/manager/downloader/webview/IWebView;)V
}

public abstract class app/revanced/manager/downloader/webview/IWebViewEvents$Stub : android/os/Binder, app/revanced/manager/downloader/webview/IWebViewEvents {
	public fun <init> ()V
	public fun asBinder ()Landroid/os/IBinder;
	public static fun asInterface (Landroid/os/IBinder;)Lapp/revanced/manager/downloader/webview/IWebViewEvents;
	public fun onTransact (ILandroid/os/Parcel;Landroid/os/Parcel;I)Z
}

public abstract interface class app/revanced/manager/downloader/webview/WebViewCallbackScope : app/revanced/manager/downloader/Scope {
	public abstract fun finish (Ljava/lang/Object;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
	public abstract fun load (Ljava/lang/String;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
}

public final class app/revanced/manager/downloader/webview/WebViewScope : app/revanced/manager/downloader/Scope {
	public static final field $stable I
	public final fun download (Lkotlin/jvm/functions/Function5;)V
	public fun getDownloaderPackageName ()Ljava/lang/String;
	public fun getHostPackageName ()Ljava/lang/String;
	public final fun pageLoad (Lkotlin/jvm/functions/Function3;)V
}



================================================
FILE: api/build.gradle.kts
================================================
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
    alias(libs.plugins.android.library)
    alias(libs.plugins.kotlin.android)
    alias(libs.plugins.kotlin.parcelize)
    alias(libs.plugins.binary.compatibility.validator)
    `maven-publish`
    signing
}

group = "app.revanced"

dependencies {
    implementation(libs.androidx.ktx)
    implementation(libs.runtime.ktx)
    implementation(libs.fragment.ktx)
}

kotlin {
    jvmToolchain(17)
    compilerOptions {
        jvmTarget = JvmTarget.JVM_17
        freeCompilerArgs.addAll(
            "-Xexplicit-backing-fields",
            "-Xcontext-parameters",
        )
    }
}

android {
    namespace = "app.revanced.manager.downloader"
    compileSdk {
        version = release(36) {
            minorApiLevel = 1
        }
    }

    defaultConfig {
        minSdk {
            version = release(26)
        }

        consumerProguardFiles("consumer-rules.pro")
    }

    publishing {
        singleVariant("release") {}
    }

    buildTypes {
        release {
            isMinifyEnabled = false
            // Note: There are actually no optimisation since we disable it in proguard, AGP does not allow you to remove -optimize from this for some reason.
            proguardFiles(
                getDefaultProguardFile("proguard-android-optimize.txt"),
                "proguard-rules.pro"
            )
        }
    }

    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_17
        targetCompatibility = JavaVersion.VERSION_17
    }

    buildFeatures {
        aidl = true
    }
}

apiValidation {
    nonPublicMarkers += "app.revanced.manager.downloader.DownloaderHostApi"
}

publishing {
    repositories {
        maven {
            name = "githubPackages"
            url = uri("https://maven.pkg.github.com/revanced/revanced-manager")
            credentials(PasswordCredentials::class)
        }
    }

    publications {
        create<MavenPublication>("Api") {
            afterEvaluate {
                from(components["release"])
            }

            groupId = "app.revanced"
            artifactId = "revanced-manager-api"
            version = project.version.toString()

            pom {
                name = "ReVanced Manager API"
                description = "API for ReVanced Manager."
                url = "https://revanced.app"

                licenses {
                    license {
                        name = "GNU General Public License v3.0"
                        url = "https://www.gnu.org/licenses/gpl-3.0.en.html"
                    }
                }
                developers {
                    developer {
                        id = "ReVanced"
                        name = "ReVanced"
                        email = "contact@revanced.app"
                    }
                }
                scm {
                    connection = "scm:git:git://github.com/revanced/revanced-manager.git"
                    developerConnection = "scm:git:git@github.com:revanced/revanced-manager.git"
                    url = "https://github.com/revanced/revanced-manager"
                }
            }
        }
    }
}

signing {
    useGpgCmd()
    sign(publishing.publications["Api"])
}


================================================
FILE: api/consumer-rules.pro
================================================


================================================
FILE: api/gradle.properties
================================================
version = 1.0.0


================================================
FILE: api/package.json
================================================
{
  "name": "api",
  "private": false,
  "devDependencies": {
    "@anolilab/multi-semantic-release": "^1.1.10",
    "@saithodev/semantic-release-backmerge": "^4.0.1",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "gradle-semantic-release-plugin": "^1.10.1"
  }
}


================================================
FILE: api/src/main/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>

================================================
FILE: api/src/main/aidl/app/revanced/manager/downloader/webview/IWebView.aidl
================================================
// IWebView.aidl
package app.revanced.manager.downloader.webview;

@JavaPassthrough(annotation="@app.revanced.manager.downloader.DownloaderHostApi")
oneway interface IWebView {
    void load(String url);
    void finish();
}

================================================
FILE: api/src/main/aidl/app/revanced/manager/downloader/webview/IWebViewEvents.aidl
================================================
// IWebViewEvents.aidl
package app.revanced.manager.downloader.webview;

import app.revanced.manager.downloader.webview.IWebView;

@JavaPassthrough(annotation="@app.revanced.manager.downloader.DownloaderHostApi")
oneway interface IWebViewEvents {
    void ready(IWebView iface);
    void pageLoad(String url);
    void download(String url, String mimetype, String userAgent);
}

================================================
FILE: api/src/main/kotlin/app/revanced/manager/downloader/Constants.kt
================================================
package app.revanced.manager.downloader

/**
 * The permission ID of the special downloader host permission. Only ReVanced Manager will have this permission.
 * Downloader UI activities and internal services can be protected using this permission.
 */
const val DOWNLOADER_HOST_PERMISSION = "app.revanced.manager.permission.DOWNLOADER_HOST"

================================================
FILE: api/src/main/kotlin/app/revanced/manager/downloader/Downloader.kt
================================================
package app.revanced.manager.downloader

import android.content.ComponentName
import android.content.Context
import android.content.Intent
import android.content.ServiceConnection
import android.os.IBinder
import android.app.Activity
import android.os.Bundle
import android.os.Parcelable
import androidx.annotation.StringRes
import androidx.fragment.app.Fragment
import kotlinx.coroutines.withTimeout
import java.io.File
import java.io.InputStream
import java.io.OutputStream
import kotlin.coroutines.resume
import kotlin.coroutines.suspendCoroutine
import kotlin.jvm.java

@RequiresOptIn(
    level = RequiresOptIn.Level.ERROR,
    message = "This API is only intended for downloader hosts, don't use it in a downloader.",
)
@Retention(AnnotationRetention.BINARY)
annotation class DownloaderHostApi

/**
 * The base interface for all DSL scopes.
 */
interface Scope {
    /**
     * The package name of ReVanced Manager.
     */
    val hostPackageName: String

    /**
     * The package name of the downloader.
     */
    val downloaderPackageName: String

    /**
     * A data directory for this downloader package.
     */
    val dataDir: File
}

/**
 * The scope of [DownloaderScope.get].
 */
interface GetScope : Scope {
    /**
     * Ask the user to perform some required interaction in the activity specified by the provided [Intent].
     * This function returns normally with the resulting [Intent] when the activity finishes with code [Activity.RESULT_OK].
     *
     * @throws UserInteractionException.RequestDenied User decided to skip this downloader.
     * @throws UserInteractionException.Activity.Cancelled The activity was cancelled.
     * @throws UserInteractionException.Activity.NotCompleted The activity finished with an unknown result code.
     */
    suspend fun requestStartActivity(intent: Intent): Intent?

    /**
     * Starts an [Activity] using [requestStartActivity] which loads the specified [Fragment].
     * The fragment may reside in the downloader package.
     *
     * @param clazz The class of the fragment to launch.
     * @param args The fragment arguments.
     */
    suspend fun requestStartFragment(clazz: Class<out Fragment>, args: Bundle?) =
        requestStartActivity(Intent().apply {
            setClassName(hostPackageName, "app.revanced.manager.DownloaderActivity")
            // We shouldn't use the downloader's resources if it is launching a fragment that resides in manager itself.
            if (clazz.classLoader != GetScope::class.java.classLoader) putExtra(
                "DOWNLOADER_NAME",
                downloaderPackageName
            )
            putExtra("FRAGMENT_CLASS_NAME", clazz.name)
            putExtra("FRAGMENT_ARGS", args)
        })
}

interface BaseDownloadScope : Scope

/**
 * The scope for [DownloaderScope.download].
 */
interface InputDownloadScope : BaseDownloadScope

typealias Size = Long
typealias DownloadResult = Pair<InputStream, Size?>

typealias Version = String
typealias GetResult<T> = Pair<T, Version?>

class DownloaderScope<T : Parcelable> internal constructor(
    private val scopeImpl: Scope,
    internal val context: Context
) : Scope by scopeImpl {
    // Returning an InputStream is the primary way for a downloader to implement the download function, but we also want to offer an OutputStream API since using InputStream might not be convenient in all cases.
    // It is much easier to implement the main InputStream API on top of OutputStreams compared to doing it the other way around, which is why we are using OutputStream here.
    internal var download: (suspend OutputDownloadScope.(T, OutputStream) -> Unit)? = null
    internal var get: (suspend GetScope.(String, String?) -> GetResult<T>?)? = null
    private val inputDownloadScopeImpl = object : InputDownloadScope, Scope by scopeImpl {}

    /**
     * Define the download block of the downloader.
     */
    fun download(block: suspend InputDownloadScope.(data: T) -> DownloadResult) {
        download = { app, outputStream ->
            val (inputStream, size) = inputDownloadScopeImpl.block(app)

            inputStream.use {
                if (size != null) reportSize(size)
                it.copyTo(outputStream)
            }
        }
    }

    /**
     * Define the get block of the downloader.
     * The block should return null if the app cannot be found. The version in the result must match the version argument unless it is null.
     */
    fun get(block: suspend GetScope.(packageName: String, version: String?) -> GetResult<T>?) {
        get = block
    }

    /**
     * Utilize the service specified by the provided [Intent]. The service will be unbound when the scope ends.
     */
    suspend fun <R : Any?> useService(intent: Intent, block: suspend (IBinder) -> R): R {
        var onBind: ((IBinder) -> Unit)? = null
        val serviceConn = object : ServiceConnection {
            override fun onServiceConnected(name: ComponentName?, service: IBinder?) =
                onBind!!(service!!)

            override fun onServiceDisconnected(name: ComponentName?) {}
        }

        return try {
            val binder = withTimeout(10000L) {
                suspendCoroutine { continuation ->
                    onBind = continuation::resume
                    context.bindService(intent, serviceConn, Context.BIND_AUTO_CREATE)
                }
            }
            block(binder)
        } finally {
            onBind = null
            context.unbindService(serviceConn)
        }
    }
}

class DownloaderBuilder<T : Parcelable> internal constructor(
    @param:StringRes private val name: Int,
    private val block: DownloaderScope<T>.() -> Unit
) {
    @DownloaderHostApi
    fun build(scopeImpl: Scope, context: Context) =
        with(DownloaderScope<T>(scopeImpl, context)) {
            block()

            Downloader(
                download = download!!,
                get = get!!,
                name = name,
            )
        }
}

class Downloader<T : Parcelable> internal constructor(
    @property:DownloaderHostApi val get: suspend GetScope.(packageName: String, version: String?) -> GetResult<T>?,
    @property:DownloaderHostApi val download: suspend OutputDownloadScope.(data: T, outputStream: OutputStream) -> Unit,
    @property:DownloaderHostApi @param:StringRes val name: Int,
)

/**
 * Define a downloader.
 */
fun <T : Parcelable> Downloader(@StringRes name: Int, block: DownloaderScope<T>.() -> Unit) =
    DownloaderBuilder(name, block)

/**
 * @see GetScope.requestStartActivity
 */
sealed class UserInteractionException(message: String) : Exception(message) {
    class RequestDenied @DownloaderHostApi constructor() :
        UserInteractionException("Request denied by user")

    sealed class Activity(message: String) : UserInteractionException(message) {
        class Cancelled @DownloaderHostApi constructor() : Activity("Interaction cancelled")

        /**
         * @param resultCode The result code of the activity.
         * @param intent The [Intent] of the activity.
         */
        class NotCompleted @DownloaderHostApi constructor(
            val resultCode: Int,
            val intent: Intent?
        ) :
            Activity("Unexpected activity result code: $resultCode")
    }
}

================================================
FILE: api/src/main/kotlin/app/revanced/manager/downloader/Extensions.kt
================================================
package app.revanced.manager.downloader

import android.app.Activity
import android.app.Service
import android.content.Intent
import android.os.Bundle
import android.os.IBinder
import android.os.Parcelable
import androidx.fragment.app.Fragment
import java.io.OutputStream

/**
 * The scope of the [OutputStream] version of [DownloaderScope.download].
 */
interface OutputDownloadScope : BaseDownloadScope {
    suspend fun reportSize(size: Long)
}

/**
 * A replacement for [DownloaderScope.download] that uses [OutputStream].
 * The provided [OutputStream] does not need to be closed manually.
 */
fun <T : Parcelable> DownloaderScope<T>.download(block: suspend OutputDownloadScope.(T, OutputStream) -> Unit) {
    download = block
}

/**
 * Performs [GetScope.requestStartActivity] with an [Intent] created using the type information of [ACTIVITY].
 * @see [GetScope.requestStartActivity]
 */
suspend inline fun <reified ACTIVITY : Activity> GetScope.requestStartActivity() =
    requestStartActivity(
        Intent().apply { setClassName(downloaderPackageName, ACTIVITY::class.qualifiedName!!) }
    )

/**
 * Starts an [Activity] using [GetScope.requestStartActivity] which loads the specified [Fragment].
 * The fragment may reside in the downloader package.
 *
 * @param args The fragment arguments.
 */
suspend inline fun <reified T : Fragment> GetScope.requestStartFragment(args: Bundle?) =
    requestStartFragment(T::class.java, args)

/**
 * Performs [DownloaderScope.useService] with an [Intent] created using the type information of [SERVICE].
 * @see [DownloaderScope.useService]
 */
suspend inline fun <reified SERVICE : Service, R : Any?> DownloaderScope<*>.useService(
    noinline block: suspend (IBinder) -> R
) = useService(
    Intent().apply { setClassName(downloaderPackageName, SERVICE::class.qualifiedName!!) }, block
)

================================================
FILE: api/src/main/kotlin/app/revanced/manager/downloader/Parcelables.kt
================================================
package app.revanced.manager.downloader

import android.os.Parcelable
import kotlinx.parcelize.Parcelize
import java.net.HttpURLConnection
import java.net.URI

/**
 * A simple parcelable data class for storing a package name and version.
 * This can be used as the data type for downloaders that only need a name and version to implement their [DownloaderScope.download] function.
 *
 * @param name The package name.
 * @param version The version.
 */
@Parcelize
data class Package(val name: String, val version: String) : Parcelable

/**
 * A data class for storing a download URL.
 *
 * @param url The download URL.
 * @param headers The headers to use for the request.
 */
@Parcelize
data class DownloadUrl(val url: String, val headers: Map<String, String> = emptyMap()) : Parcelable {
    /**
     * Converts this into a [DownloadResult].
     */
    fun toDownloadResult(): DownloadResult = with(URI.create(url).toURL().openConnection() as HttpURLConnection) {
        useCaches = false
        allowUserInteraction = false
        headers.forEach(::setRequestProperty)

        connectTimeout = 10_000
        connect()

        inputStream to getHeaderField("Content-Length").toLong()
    }
}

================================================
FILE: api/src/main/kotlin/app/revanced/manager/downloader/webview/API.kt
================================================
package app.revanced.manager.downloader.webview

import android.content.Intent
import android.os.Bundle
import androidx.annotation.StringRes
import app.revanced.manager.downloader.DownloadUrl
import app.revanced.manager.downloader.DownloaderScope
import app.revanced.manager.downloader.GetScope
import app.revanced.manager.downloader.Scope
import app.revanced.manager.downloader.Downloader
import app.revanced.manager.downloader.DownloaderHostApi
import app.revanced.manager.downloader.requestStartFragment
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.cancelChildren
import kotlinx.coroutines.launch
import kotlinx.coroutines.supervisorScope
import kotlinx.coroutines.withContext
import kotlin.properties.Delegates

typealias InitialUrl = String
typealias PageLoadCallback<T> = suspend WebViewCallbackScope<T>.(url: String) -> Unit
typealias DownloadCallback<T> = suspend WebViewCallbackScope<T>.(url: String, mimeType: String, userAgent: String) -> Unit

interface WebViewCallbackScope<T> : Scope {
    /**
     * Finishes the activity and returns the [result].
     */
    suspend fun finish(result: T)

    /**
     * Tells the WebView to load the specified [url].
     */
    suspend fun load(url: String)
}

@OptIn(DownloaderHostApi::class)
class WebViewScope<T> internal constructor(
    coroutineScope: CoroutineScope,
    private val scopeImpl: Scope,
    setResult: (T) -> Unit
) : Scope by scopeImpl {
    private var onPageLoadCallback: PageLoadCallback<T> = {}
    private var onDownloadCallback: DownloadCallback<T> = { _, _, _ -> }

    @OptIn(ExperimentalCoroutinesApi::class)
    private val dispatcher = Dispatchers.Default.limitedParallelism(1)
    private lateinit var webView: IWebView
    internal lateinit var initialUrl: String

    internal val binder = object : IWebViewEvents.Stub() {
        override fun ready(iface: IWebView?) {
            coroutineScope.launch(dispatcher) {
                webView = iface!!.also {
                    it.load(initialUrl)
                }
            }
        }

        override fun pageLoad(url: String?) {
            coroutineScope.launch(dispatcher) { onPageLoadCallback(callbackScope, url!!) }
        }

        override fun download(url: String?, mimetype: String?, userAgent: String?) {
            coroutineScope.launch(dispatcher) {
                onDownloadCallback(
                    callbackScope,
                    url!!,
                    mimetype!!,
                    userAgent!!
                )
            }
        }
    }

    private val callbackScope = object : WebViewCallbackScope<T>, Scope by scopeImpl {
        override suspend fun finish(result: T) {
            setResult(result)
            // Tell the WebViewActivity to finish
            webView.let { withContext(Dispatchers.IO) { it.finish() } }
        }

        override suspend fun load(url: String) {
            webView.let { withContext(Dispatchers.IO) { it.load(url) } }
        }

    }

    /**
     * Called when the WebView attempts to download a file to disk.
     */
    fun download(block: DownloadCallback<T>) {
        onDownloadCallback = block
    }

    /**
     * Called when the WebView finishes loading a page.
     */
    fun pageLoad(block: PageLoadCallback<T>) {
        onPageLoadCallback = block
    }
}

@JvmInline
private value class Container<U>(val value: U)

/**
 * Run a [android.webkit.WebView] Activity controlled by the provided code block.
 * The activity will keep running until it is cancelled or an event handler calls [WebViewCallbackScope.finish].
 * The [block] defines the event handlers and returns the initial URL.
 *
 * @param title The string displayed in the action bar.
 * @param block The control block.
 */
@OptIn(DownloaderHostApi::class)
suspend fun <T> GetScope.runWebView(
    title: String,
    block: suspend WebViewScope<T>.() -> InitialUrl
) = supervisorScope {
    var result by Delegates.notNull<Container<T>>()

    val scope = WebViewScope<T>(this@supervisorScope, this@runWebView) { result = Container(it) }
    scope.initialUrl = scope.block()

    // Start the webview and wait until it finishes.
    requestStartFragment<WebViewFragment>(Bundle().apply {
        putParcelable(
            WebViewFragment.KEY,
            WebViewFragment.Parameters(title, scope.binder)
        )
    })

    // Return the result and cancel any leftover coroutines.
    coroutineContext.cancelChildren()
    result.value
}

/**
 * Implement a downloader using [runWebView] and [DownloadUrl]. This function will automatically define a handler for download events unlike [runWebView].
 * Returning null inside the [block] is equivalent to returning null inside [DownloaderScope.get].
 *
 * @see runWebView
 */
fun WebViewDownloader(@StringRes name: Int, block: suspend WebViewScope<DownloadUrl>.(packageName: String, version: String?) -> InitialUrl?) =
    Downloader(name) {
        val label = context.getString(name)

        get { packageName, version ->
            class ReturnNull : Exception()

            try {
                runWebView(label) {
                    download { url, _, userAgent ->
                        finish(
                            DownloadUrl(
                                url,
                                mapOf("User-Agent" to userAgent)
                            )
                        )
                    }

                    block(this@runWebView, packageName, version) ?: throw ReturnNull()
                } to version
            } catch (_: ReturnNull) {
                null
            }
        }

        download {
            it.toDownloadResult()
        }
    }

================================================
FILE: api/src/main/kotlin/app/revanced/manager/downloader/webview/WebViewFragment.kt
================================================
package app.revanced.manager.downloader.webview

import android.annotation.SuppressLint
import android.app.Activity
import android.content.Context
import android.os.Bundle
import android.os.IBinder
import android.os.Parcelable
import android.view.Menu
import android.view.MenuInflater
import android.view.MenuItem
import android.view.View
import android.webkit.CookieManager
import android.webkit.WebSettings
import android.webkit.WebView
import android.webkit.WebViewClient
import androidx.activity.addCallback
import androidx.activity.enableEdgeToEdge
import androidx.core.view.MenuProvider
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat
import androidx.fragment.app.Fragment
import androidx.fragment.app.viewModels
import androidx.lifecycle.Lifecycle
import androidx.lifecycle.ViewModel
import androidx.lifecycle.lifecycleScope
import androidx.lifecycle.repeatOnLifecycle
import androidx.lifecycle.viewModelScope
import app.revanced.manager.downloader.DownloaderHostApi
import app.revanced.manager.downloader.R
import kotlinx.coroutines.channels.Channel
import kotlinx.coroutines.flow.receiveAsFlow
import kotlinx.coroutines.launch
import kotlinx.parcelize.Parcelize

@OptIn(DownloaderHostApi::class)
@DownloaderHostApi
class WebViewFragment : Fragment(R.layout.webview_fragment) {
    private val vm by viewModels<WebViewModel>()
    lateinit var webView: WebView
    private val args by lazy {
        arguments?.getParcelable<Parameters>(KEY)!!
    }

    override fun onAttach(context: Context) {
        super.onAttach(context)
        requireActivity().apply {
            enableEdgeToEdge()
            onBackPressedDispatcher.addCallback {
                if (webView.canGoBack()) webView.goBack()
                else cancelActivity()
            }
            actionBar?.apply {
                title = args.title
                setHomeAsUpIndicator(android.R.drawable.ic_menu_close_clear_cancel)
                setDisplayHomeAsUpEnabled(true)
            }

            addMenuProvider(
                object : MenuProvider {
                    override fun onCreateMenu(
                        menu: Menu,
                        menuInflater: MenuInflater
                    ) {
                    }

                    override fun onMenuItemSelected(menuItem: MenuItem) =
                        if (menuItem.itemId == android.R.id.home) {
                            cancelActivity()

                            true
                        } else false
                },
                this
            )
        }
    }

    @SuppressLint("SetJavaScriptEnabled")
    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)

        ViewCompat.setOnApplyWindowInsetsListener(view.findViewById(R.id.main)) { v, insets ->
            val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
            v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
            insets
        }
        webView = view.findViewById<WebView>(R.id.webview)

        val events = IWebViewEvents.Stub.asInterface(args.events)!!
        vm.setup(events)

        webView.apply {
            settings.apply {
                cacheMode = WebSettings.LOAD_NO_CACHE
                allowContentAccess = false
                domStorageEnabled = true
                javaScriptEnabled = true
            }

            webViewClient = vm.webViewClient
            setDownloadListener { url, userAgent, _, mimetype, _ ->
                vm.onDownload(url, mimetype, userAgent)
            }
        }

        val activity = requireActivity()
        lifecycleScope.launch {
            viewLifecycleOwner.repeatOnLifecycle(Lifecycle.State.STARTED) {
                vm.commands.collect {
                    when (it) {
                        is WebViewModel.Command.Finish -> {
                            activity.setResult(Activity.RESULT_OK)
                            activity.finish()
                        }

                        is WebViewModel.Command.Load -> webView.loadUrl(it.url)
                    }
                }
            }
        }
    }

    private fun cancelActivity() {
        val activity = requireActivity()
        activity.setResult(Activity.RESULT_CANCELED)
        activity.finish()
    }

    @Parcelize
    internal class Parameters(
        val title: String, val events: IBinder
    ) : Parcelable

    internal companion object {
        const val KEY = "params"
    }
}

@OptIn(DownloaderHostApi::class)
internal class WebViewModel : ViewModel() {
    init {
        CookieManager.getInstance().apply {
            removeAllCookies(null)
            setAcceptCookie(true)
        }
    }

    private val commandChannel = Channel<Command>()
    val commands = commandChannel.receiveAsFlow()

    private var eventBinder: IWebViewEvents? = null
    private val ctrlBinder = object : IWebView.Stub() {
        override fun load(url: String?) {
            viewModelScope.launch {
                commandChannel.send(Command.Load(url!!))
            }
        }

        override fun finish() {
            viewModelScope.launch {
                commandChannel.send(Command.Finish)
            }
        }
    }

    val webViewClient = object : WebViewClient() {
        override fun onPageFinished(view: WebView?, url: String?) {
            super.onPageFinished(view, url)
            eventBinder!!.pageLoad(url)
        }
    }

    fun onDownload(url: String, mimeType: String, userAgent: String) {
        eventBinder!!.download(url, mimeType, userAgent)
    }

    fun setup(binder: IWebViewEvents) {
        if (eventBinder != null) return
        eventBinder = binder
        binder.ready(ctrlBinder)
    }

    sealed interface Command {
        data class Load(val url: String) : Command
        data object Finish : Command
    }
}

================================================
FILE: api/src/main/res/layout/webview_fragment.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/main">

    <WebView
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

================================================
FILE: app/.gitignore
================================================
/build

================================================
FILE: app/.releaserc
================================================
{
  "branches": [
    "main",
    {
      "name": "dev",
      "prerelease": true
    }
  ],
  "plugins": [
    [
      "@semantic-release/commit-analyzer",
      {
        "releaseRules": [
          { "type": "build", "scope": "Needs bump", "release": "patch" }
        ]
      }
    ],
    "@semantic-release/release-notes-generator",
    "@semantic-release/changelog",
    "gradle-semantic-release-plugin",
    [
      "@semantic-release/git",
      {
        "assets": [
          "CHANGELOG.md",
          "gradle.properties"
        ],
        "message": "chore: Release v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
      }
    ],
    [
      "@semantic-release/github",
      {
        "assets": [
          {
            "path": "build/outputs/apk/release/revanced-manager*.apk?(.asc)"
          }
        ],
        "successComment": false
      }
    ],
    [
      "@saithodev/semantic-release-backmerge",
      {
        "backmergeBranches": [{"from": "main", "to": "dev"}],
        "clearWorkspace": true
      }
    ]
  ]
}


================================================
FILE: app/CHANGELOG.md
================================================
## app [2.2.3](https://github.com/ReVanced/revanced-manager/compare/v2.2.2...v2.2.3) (2026-03-19)


### Bug Fixes

* Disable network check on updating patches and downloaders ([c4a5ea8](https://github.com/ReVanced/revanced-manager/commit/c4a5ea8790ad17b497555042fd2171794eebc216))
* **NotificationCard:** Fix card background contrast with action text ([#3103](https://github.com/ReVanced/revanced-manager/issues/3103)) ([947ac8a](https://github.com/ReVanced/revanced-manager/commit/947ac8ad4441cc1bfb8d3618eddb59f3765f4191))
* **NotificationCard:** Use the right colors for buttons ([#3101](https://github.com/ReVanced/revanced-manager/issues/3101)) ([88fbc24](https://github.com/ReVanced/revanced-manager/commit/88fbc2491cce82bab38792528ac82d40fe76d3d9))

## app [2.2.3-dev.3](https://github.com/ReVanced/revanced-manager/compare/v2.2.3-dev.2...v2.2.3-dev.3) (2026-03-19)


### Bug Fixes

* Disable network check on updating patches and downloaders ([c4a5ea8](https://github.com/ReVanced/revanced-manager/commit/c4a5ea8790ad17b497555042fd2171794eebc216))

## app [2.2.3-dev.2](https://github.com/ReVanced/revanced-manager/compare/v2.2.3-dev.1...v2.2.3-dev.2) (2026-03-18)


### Bug Fixes

* **NotificationCard:** Fix card background contrast with action text ([#3103](https://github.com/ReVanced/revanced-manager/issues/3103)) ([947ac8a](https://github.com/ReVanced/revanced-manager/commit/947ac8ad4441cc1bfb8d3618eddb59f3765f4191))

## app [2.2.3-dev.1](https://github.com/ReVanced/revanced-manager/compare/v2.2.2...v2.2.3-dev.1) (2026-03-18)


### Bug Fixes

* **NotificationCard:** Use the right colors for buttons ([#3101](https://github.com/ReVanced/revanced-manager/issues/3101)) ([88fbc24](https://github.com/ReVanced/revanced-manager/commit/88fbc2491cce82bab38792528ac82d40fe76d3d9))

## app [2.2.2](https://github.com/ReVanced/revanced-manager/compare/v2.2.1...v2.2.2) (2026-03-17)


### Bug Fixes

* Collapse patches list by default in Dashboard ([a53890f](https://github.com/ReVanced/revanced-manager/commit/a53890f574e515d01656b1f5b3c1abb8e6d3e8a6))


### Reverts

* Revert "fix: Patches being expanded instantly" ([4d48ccd](https://github.com/ReVanced/revanced-manager/commit/4d48ccdd28545a63d02a8430b4fb9a090662bdc5))

## app [2.2.2-dev.1](https://github.com/ReVanced/revanced-manager/compare/v2.2.1...v2.2.2-dev.1) (2026-03-17)


### Bug Fixes

* Collapse patches list by default in Dashboard ([a53890f](https://github.com/ReVanced/revanced-manager/commit/a53890f574e515d01656b1f5b3c1abb8e6d3e8a6))


### Reverts

* Revert "fix: Patches being expanded instantly" ([4d48ccd](https://github.com/ReVanced/revanced-manager/commit/4d48ccdd28545a63d02a8430b4fb9a090662bdc5))

## app [2.2.1-dev.1](https://github.com/ReVanced/revanced-manager/compare/v2.2.0...v2.2.1-dev.1) (2026-03-17)


### Bug Fixes

*  Handle null value when selecting APK from storage ([879eb74](https://github.com/ReVanced/revanced-manager/commit/879eb742ced4a778cac35557c47b09e6c44048ac))

# app [2.2.0](https://github.com/ReVanced/revanced-manager/compare/v2.1.0...v2.2.0) (2026-03-17)


### Bug Fixes

* About page content and log API requests ([62111e2](https://github.com/ReVanced/revanced-manager/commit/62111e2499d9fc0f4e7b364236e90d5a5f46981f))
* Add padding for initial screen ([68da359](https://github.com/ReVanced/revanced-manager/commit/68da3592521d18f2f298bb74e72097a1efe57dc7))
* Close "Add downloaders" dialog on add ([f60ce02](https://github.com/ReVanced/revanced-manager/commit/f60ce02a8193bf71b4b37329c3e8004e569e2b67))
* Consistent circle separator between text across patchesinfoscreen and announcements ([a7792db](https://github.com/ReVanced/revanced-manager/commit/a7792dbf4d947982e343ff2aa2ce71bd5692c09a))
* Correctly 180 the back arrow for expansible list ([6c62e57](https://github.com/ReVanced/revanced-manager/commit/6c62e57f09b72191de328c277787db80c4bb62af))
* Custom ROM crashed with their file picker deleted somehow ([00aedda](https://github.com/ReVanced/revanced-manager/commit/00aeddac67031534bfef60183db6a124b16f24c4))
* Don't 360 the back arrow button for no reason ([5a175e2](https://github.com/ReVanced/revanced-manager/commit/5a175e2c347f824124feb977110ff6be6cf7edcb))
* Don't show user that you can do this when you clearly can't ([716ecdd](https://github.com/ReVanced/revanced-manager/commit/716ecdd5f30dc58725026f3b6e4021001c174aef))
* Downloader string being use for incorrect app selection ([b9865df](https://github.com/ReVanced/revanced-manager/commit/b9865dfbf542ea0a82a341349b117c4a9c61fc10))
* FAB animations in dashboard being instant ([6805ba1](https://github.com/ReVanced/revanced-manager/commit/6805ba18e0470e49dd304aa989dfa6c1e3da2668))
* Hide installed section if no app are installed ([a6b7517](https://github.com/ReVanced/revanced-manager/commit/a6b7517e8f9c3055db88a5e42b718505d7ad5885))
* Inconsistent announcement list ([06c5cff](https://github.com/ReVanced/revanced-manager/commit/06c5cffe1fa68349c342734f3743bc5d1b16b7d0))
* Language picker using patch search string ([8c2be24](https://github.com/ReVanced/revanced-manager/commit/8c2be242ef95d11b96c705c9d4494f4be50e7786))
* List being stuck too close together ([5ccf2e4](https://github.com/ReVanced/revanced-manager/commit/5ccf2e48a4fd155a7d8fad0ee3c295bd06194339))
* Make safeguard dialog title more clearer ([7691a7e](https://github.com/ReVanced/revanced-manager/commit/7691a7e144f0777c0d71ea6af4b75a9fb17aeddf))
* Make the card actually clickable ([979728a](https://github.com/ReVanced/revanced-manager/commit/979728a4cf504b77c50e3a3202e18b7cebe0bed2))
* Make title notification card follow general preferred-ish visual size ([fc7a97c](https://github.com/ReVanced/revanced-manager/commit/fc7a97c98c52f3ec2e683fde6d1a24c85a2be801))
* Make weight in unread AnnouncementList look so nicer on certain device density ([c2abfa5](https://github.com/ReVanced/revanced-manager/commit/c2abfa576afda3b8d792e316b2e07ce7ce44d59c))
* Merge chervon style doppelgirl design to public dev ([ae5dc83](https://github.com/ReVanced/revanced-manager/commit/ae5dc835aa8b6c0f0e30df3ee48f8f3128c34c2f))
* Merge chervon style doppelgirl design to public dev ([603ff91](https://github.com/ReVanced/revanced-manager/commit/603ff91a4ed34cdf2d48b5def3c9aece205f7fef))
* Merge expressive switch doppelgirl design to public dev ([698b6ed](https://github.com/ReVanced/revanced-manager/commit/698b6ed1881357a3fbd692987305b93ed6ecaca2))
* Onboarding screen perpetually loading on unavailable network ([4b9841b](https://github.com/ReVanced/revanced-manager/commit/4b9841b876b63747095a510ca0b517c09c9910a2))
* Patches being expanded instantly ([83d7506](https://github.com/ReVanced/revanced-manager/commit/83d7506dbc6a15116e4e6a0dd8174da5c6e7e15d))
* Performance impact with lots of app entries ([fb08890](https://github.com/ReVanced/revanced-manager/commit/fb0889052e1cb7fc3d115bc0825e074903ede385))
* Redundant string information ([ab80c53](https://github.com/ReVanced/revanced-manager/commit/ab80c53c04a45f8587ad9ebdc06271c152a3ddcd))
* Remove currently not applicable workaround code for building release ([aa0d59f](https://github.com/ReVanced/revanced-manager/commit/aa0d59f86fac7c497bf245e2d20b40a65d3fd0d0))
* Remove useless archive icon when it's under archive list ([6d5ecd3](https://github.com/ReVanced/revanced-manager/commit/6d5ecd3d541c008b15cbb3e24c4c21a79ff353d1))
* Search bar padding being set when fully expanded ([05e6ca1](https://github.com/ReVanced/revanced-manager/commit/05e6ca18ab6f2a65fdd75ce3d0efc16dc7b8f3b5))
* Show copy logs toast on less than Android 12.1 ([940778b](https://github.com/ReVanced/revanced-manager/commit/940778b7a26b8a3d36d130e0f9bd42a948a596c0))
* Some haptic constant are not working ([7954128](https://github.com/ReVanced/revanced-manager/commit/79541280df5dadef1628044e818d37f8b60e9da8))
* Use refresh icon to indicate instant update check ([cf8b986](https://github.com/ReVanced/revanced-manager/commit/cf8b986e5ef76a03db5965d4bca80633cd41032f))
* Use refresh icon to indicate instant update check (2/?) ([3120aff](https://github.com/ReVanced/revanced-manager/commit/3120affc9cd766a1188392eb46da43d955851d27))


### Features

* Add copy to clipboard on ShareSheet ([7e1416e](https://github.com/ReVanced/revanced-manager/commit/7e1416ecef13e2ea4289a6cfb64eb3bba8d6f331))
* Add refresh banner when nothing is loaded after setup ([2f46e3b](https://github.com/ReVanced/revanced-manager/commit/2f46e3b52e3a06f8a96e50c617fdd47e356ca1d9))
* App search bar on initial screen ([05c09da](https://github.com/ReVanced/revanced-manager/commit/05c09da3a274328a5a002828b582d65d85c39a23))
* Change all arrow right icons to chevron rights ([ff25d4e](https://github.com/ReVanced/revanced-manager/commit/ff25d4eb5d2177f7ab0f3aeb6d2df32e2e783306))
* Move API settings to Developer Options ([3067478](https://github.com/ReVanced/revanced-manager/commit/3067478ebbe9db06833d8d31545c65985309c48f))
* Move optional notification to settings screen ([7638ec7](https://github.com/ReVanced/revanced-manager/commit/7638ec720292e33c938c14add000431a6347e3f5))
* Notification priority system ([74ca361](https://github.com/ReVanced/revanced-manager/commit/74ca36119a98b3f7bf963e56494b55d83e2ceec9))
* Required permission onboarding ([193315b](https://github.com/ReVanced/revanced-manager/commit/193315b69e665c5ab8940c9c9b473ac8949d29eb))
* Search patched app and patchable app ([0586e76](https://github.com/ReVanced/revanced-manager/commit/0586e7671d5d8c693fa362cf2685622eb03a2537))
* Tooltip for icon button and FAB ([197f37b](https://github.com/ReVanced/revanced-manager/commit/197f37b653a5b2426d5ddf6123db69819763cfd2))
* Update default colour specification to Expressive 2025 ([cfdd62e](https://github.com/ReVanced/revanced-manager/commit/cfdd62ecff0aecf010a53d3b46d6529f8a01d5ac))


### Reverts

* Revert "feat: Move optional notification to settings screen" ([82adf9c](https://github.com/ReVanced/revanced-manager/commit/82adf9c8e3122ca32c913b628cf2576cd9112341))
* Revert "feat: Notification priority system" ([b13157a](https://github.com/ReVanced/revanced-manager/commit/b13157a0fd216b4e3a4a8ef6b2f21beabaf10930))
* Revert "feat: Required permission onboarding" ([efda212](https://github.com/ReVanced/revanced-manager/commit/efda212e92d31066bee0bb6174d4d483aed81aa8))
* Revert "fix: Don't show user that you can do this when you clearly can't" ([ec261db](https://github.com/ReVanced/revanced-manager/commit/ec261db374f8b7d89e01a446b66c248bf28aad89))
* Revert "Reapply "feat: Required permission onboarding"" ([3a8c26c](https://github.com/ReVanced/revanced-manager/commit/3a8c26c897e7dabc04a6a19e845d09f44a562d08))
* Revert "Revert "feat: Move optional notification to settings screen"" ([8513cd1](https://github.com/ReVanced/revanced-manager/commit/8513cd15f8c5618464360d5ceca0213883f2c9f3))

# app [2.2.0-dev.3](https://github.com/ReVanced/revanced-manager/compare/v2.2.0-dev.2...v2.2.0-dev.3) (2026-03-17)


### Bug Fixes

* Add padding for initial screen ([68da359](https://github.com/ReVanced/revanced-manager/commit/68da3592521d18f2f298bb74e72097a1efe57dc7))
* Correctly 180 the back arrow for expansible list ([6c62e57](https://github.com/ReVanced/revanced-manager/commit/6c62e57f09b72191de328c277787db80c4bb62af))
* Custom ROM crashed with their file picker deleted somehow ([00aedda](https://github.com/ReVanced/revanced-manager/commit/00aeddac67031534bfef60183db6a124b16f24c4))
* Don't 360 the back arrow button for no reason ([5a175e2](https://github.com/ReVanced/revanced-manager/commit/5a175e2c347f824124feb977110ff6be6cf7edcb))
* Don't show user that you can do this when you clearly can't ([716ecdd](https://github.com/ReVanced/revanced-manager/commit/716ecdd5f30dc58725026f3b6e4021001c174aef))
* Downloader string being use for incorrect app selection ([b9865df](https://github.com/ReVanced/revanced-manager/commit/b9865dfbf542ea0a82a341349b117c4a9c61fc10))
* FAB animations in dashboard being instant ([6805ba1](https://github.com/ReVanced/revanced-manager/commit/6805ba18e0470e49dd304aa989dfa6c1e3da2668))
* Hide installed section if no app are installed ([a6b7517](https://github.com/ReVanced/revanced-manager/commit/a6b7517e8f9c3055db88a5e42b718505d7ad5885))
* Inconsistent announcement list ([06c5cff](https://github.com/ReVanced/revanced-manager/commit/06c5cffe1fa68349c342734f3743bc5d1b16b7d0))
* Language picker using patch search string ([8c2be24](https://github.com/ReVanced/revanced-manager/commit/8c2be242ef95d11b96c705c9d4494f4be50e7786))
* List being stuck too close together ([5ccf2e4](https://github.com/ReVanced/revanced-manager/commit/5ccf2e48a4fd155a7d8fad0ee3c295bd06194339))
* Make safeguard dialog title more clearer ([7691a7e](https://github.com/ReVanced/revanced-manager/commit/7691a7e144f0777c0d71ea6af4b75a9fb17aeddf))
* Make the card actually clickable ([979728a](https://github.com/ReVanced/revanced-manager/commit/979728a4cf504b77c50e3a3202e18b7cebe0bed2))
* Make title notification card follow general preferred-ish visual size ([fc7a97c](https://github.com/ReVanced/revanced-manager/commit/fc7a97c98c52f3ec2e683fde6d1a24c85a2be801))
* Make weight in unread AnnouncementList look so nicer on certain device density ([c2abfa5](https://github.com/ReVanced/revanced-manager/commit/c2abfa576afda3b8d792e316b2e07ce7ce44d59c))
* Merge chervon style doppelgirl design to public dev ([ae5dc83](https://github.com/ReVanced/revanced-manager/commit/ae5dc835aa8b6c0f0e30df3ee48f8f3128c34c2f))
* Merge chervon style doppelgirl design to public dev ([603ff91](https://github.com/ReVanced/revanced-manager/commit/603ff91a4ed34cdf2d48b5def3c9aece205f7fef))
* Merge expressive switch doppelgirl design to public dev ([698b6ed](https://github.com/ReVanced/revanced-manager/commit/698b6ed1881357a3fbd692987305b93ed6ecaca2))
* Onboarding screen perpetually loading on unavailable network ([4b9841b](https://github.com/ReVanced/revanced-manager/commit/4b9841b876b63747095a510ca0b517c09c9910a2))
* Patches being expanded instantly ([83d7506](https://github.com/ReVanced/revanced-manager/commit/83d7506dbc6a15116e4e6a0dd8174da5c6e7e15d))
* Performance impact with lots of app entries ([fb08890](https://github.com/ReVanced/revanced-manager/commit/fb0889052e1cb7fc3d115bc0825e074903ede385))
* Redundant string information ([ab80c53](https://github.com/ReVanced/revanced-manager/commit/ab80c53c04a45f8587ad9ebdc06271c152a3ddcd))
* Remove currently not applicable workaround code for building release ([aa0d59f](https://github.com/ReVanced/revanced-manager/commit/aa0d59f86fac7c497bf245e2d20b40a65d3fd0d0))
* Remove useless archive icon when it's under archive list ([6d5ecd3](https://github.com/ReVanced/revanced-manager/commit/6d5ecd3d541c008b15cbb3e24c4c21a79ff353d1))
* Search bar padding being set when fully expanded ([05e6ca1](https://github.com/ReVanced/revanced-manager/commit/05e6ca18ab6f2a65fdd75ce3d0efc16dc7b8f3b5))
* Show copy logs toast on less than Android 12.1 ([940778b](https://github.com/ReVanced/revanced-manager/commit/940778b7a26b8a3d36d130e0f9bd42a948a596c0))
* Some haptic constant are not working ([7954128](https://github.com/ReVanced/revanced-manager/commit/79541280df5dadef1628044e818d37f8b60e9da8))
* Use refresh icon to indicate instant update check ([cf8b986](https://github.com/ReVanced/revanced-manager/commit/cf8b986e5ef76a03db5965d4bca80633cd41032f))
* Use refresh icon to indicate instant update check (2/?) ([3120aff](https://github.com/ReVanced/revanced-manager/commit/3120affc9cd766a1188392eb46da43d955851d27))


### Features

* Add refresh banner when nothing is loaded after setup ([2f46e3b](https://github.com/ReVanced/revanced-manager/commit/2f46e3b52e3a06f8a96e50c617fdd47e356ca1d9))
* App search bar on initial screen ([05c09da](https://github.com/ReVanced/revanced-manager/commit/05c09da3a274328a5a002828b582d65d85c39a23))
* Move optional notification to settings screen ([7638ec7](https://github.com/ReVanced/revanced-manager/commit/7638ec720292e33c938c14add000431a6347e3f5))
* Notification priority system ([74ca361](https://github.com/ReVanced/revanced-manager/commit/74ca36119a98b3f7bf963e56494b55d83e2ceec9))
* Required permission onboarding ([193315b](https://github.com/ReVanced/revanced-manager/commit/193315b69e665c5ab8940c9c9b473ac8949d29eb))
* Search patched app and patchable app ([0586e76](https://github.com/ReVanced/revanced-manager/commit/0586e7671d5d8c693fa362cf2685622eb03a2537))
* Tooltip for icon button and FAB ([197f37b](https://github.com/ReVanced/revanced-manager/commit/197f37b653a5b2426d5ddf6123db69819763cfd2))
* Update default colour specification to Expressive 2025 ([cfdd62e](https://github.com/ReVanced/revanced-manager/commit/cfdd62ecff0aecf010a53d3b46d6529f8a01d5ac))


### Reverts

* Revert "feat: Move optional notification to settings screen" ([82adf9c](https://github.com/ReVanced/revanced-manager/commit/82adf9c8e3122ca32c913b628cf2576cd9112341))
* Revert "feat: Notification priority system" ([b13157a](https://github.com/ReVanced/revanced-manager/commit/b13157a0fd216b4e3a4a8ef6b2f21beabaf10930))
* Revert "feat: Required permission onboarding" ([efda212](https://github.com/ReVanced/revanced-manager/commit/efda212e92d31066bee0bb6174d4d483aed81aa8))
* Revert "fix: Don't show user that you can do this when you clearly can't" ([ec261db](https://github.com/ReVanced/revanced-manager/commit/ec261db374f8b7d89e01a446b66c248bf28aad89))
* Revert "Reapply "feat: Required permission onboarding"" ([3a8c26c](https://github.com/ReVanced/revanced-manager/commit/3a8c26c897e7dabc04a6a19e845d09f44a562d08))
* Revert "Revert "feat: Move optional notification to settings screen"" ([8513cd1](https://github.com/ReVanced/revanced-manager/commit/8513cd15f8c5618464360d5ceca0213883f2c9f3))

# app [2.2.0-dev.2](https://github.com/ReVanced/revanced-manager/compare/v2.2.0-dev.1...v2.2.0-dev.2) (2026-03-16)


### Features

* Add copy to clipboard on ShareSheet ([7e1416e](https://github.com/ReVanced/revanced-manager/commit/7e1416ecef13e2ea4289a6cfb64eb3bba8d6f331))

# app [2.2.0-dev.1](https://github.com/ReVanced/revanced-manager/compare/v2.1.1-dev.2...v2.2.0-dev.1) (2026-03-16)


### Bug Fixes

* Consistent circle separator between text across patchesinfoscreen and announcements ([a7792db](https://github.com/ReVanced/revanced-manager/commit/a7792dbf4d947982e343ff2aa2ce71bd5692c09a))


### Features

* Change all arrow right icons to chevron rights ([ff25d4e](https://github.com/ReVanced/revanced-manager/commit/ff25d4eb5d2177f7ab0f3aeb6d2df32e2e783306))
* Move API settings to Developer Options ([3067478](https://github.com/ReVanced/revanced-manager/commit/3067478ebbe9db06833d8d31545c65985309c48f))

## app [2.1.1-dev.2](https://github.com/ReVanced/revanced-manager/compare/v2.1.1-dev.1...v2.1.1-dev.2) (2026-03-16)


### Bug Fixes

* Close "Add downloaders" dialog on add ([f60ce02](https://github.com/ReVanced/revanced-manager/commit/f60ce02a8193bf71b4b37329c3e8004e569e2b67))

## app [2.1.1-dev.1](https://github.com/ReVanced/revanced-manager/compare/v2.1.0...v2.1.1-dev.1) (2026-03-16)


### Bug Fixes

* About page content and log API requests ([62111e2](https://github.com/ReVanced/revanced-manager/commit/62111e2499d9fc0f4e7b364236e90d5a5f46981f))

# app [2.1.0](https://github.com/ReVanced/revanced-manager/compare/v2.0.1...v2.1.0) (2026-03-15)


### Bug Fixes

* Disable ProGuard to fix various patching errors ([5f79397](https://github.com/ReVanced/revanced-manager/commit/5f79397a7cc600ad16c18f807caccf72862c68e1))
* Source list crash when using multiple downloaders ([#3043](https://github.com/ReVanced/revanced-manager/issues/3043)) ([8170837](https://github.com/ReVanced/revanced-manager/commit/8170837e2c2a57c3cc6d1d3f36fc0cf627b69f28))


### Features

* Change source filepicker type for downloaders ([#3045](https://github.com/ReVanced/revanced-manager/issues/3045)) ([dcc30cd](https://github.com/ReVanced/revanced-manager/commit/dcc30cdae9c0f46bce6d11df763cf1519b42a4af))

# app [2.1.0-dev.2](https://github.com/ReVanced/revanced-manager/compare/v2.1.0-dev.1...v2.1.0-dev.2) (2026-03-15)


### Bug Fixes

* Disable ProGuard to fix various patching errors ([5f79397](https://github.com/ReVanced/revanced-manager/commit/5f79397a7cc600ad16c18f807caccf72862c68e1))

# app [2.1.0-dev.1](https://github.com/ReVanced/revanced-manager/compare/v2.0.2-dev.1...v2.1.0-dev.1) (2026-03-15)


### Features

* Change source filepicker type for downloaders ([#3045](https://github.com/ReVanced/revanced-manager/issues/3045)) ([dcc30cd](https://github.com/ReVanced/revanced-manager/commit/dcc30cdae9c0f46bce6d11df763cf1519b42a4af))

## app [2.0.2-dev.1](https://github.com/ReVanced/revanced-manager/compare/v2.0.1...v2.0.2-dev.1) (2026-03-15)


### Bug Fixes

* Source list crash when using multiple downloaders ([#3043](https://github.com/ReVanced/revanced-manager/issues/3043)) ([8170837](https://github.com/ReVanced/revanced-manager/commit/8170837e2c2a57c3cc6d1d3f36fc0cf627b69f28))

## app [2.0.1](https://github.com/ReVanced/revanced-manager/compare/v2.0.0...v2.0.1) (2026-03-15)


### Bug Fixes

* Always download initial versions of patches and downloaders ([1ffcfca](https://github.com/ReVanced/revanced-manager/commit/1ffcfcafb883bfb500aa3611896e27215b8beb10))
* Cleanup downloaded apps ([026b6a9](https://github.com/ReVanced/revanced-manager/commit/026b6a9a1eda240c21cfe2527bf1d8c09ac955ee))
* Correct condition for displaying days ago in Util.kt ([#3027](https://github.com/ReVanced/revanced-manager/issues/3027)) ([467203a](https://github.com/ReVanced/revanced-manager/commit/467203a2fafb37e0ec790573e6acc1e221c31452))
* Restore app deletion dialog ([65ce565](https://github.com/ReVanced/revanced-manager/commit/65ce565bbc45fb12020acee3e6f75f90c552f950))

## app [2.0.1-dev.3](https://github.com/ReVanced/revanced-manager/compare/v2.0.1-dev.2...v2.0.1-dev.3) (2026-03-15)


### Bug Fixes

* Correct condition for displaying days ago in Util.kt ([#3027](https://github.com/ReVanced/revanced-manager/issues/3027)) ([467203a](https://github.com/ReVanced/revanced-manager/commit/467203a2fafb37e0ec790573e6acc1e221c31452))

## app [2.0.1-dev.2](https://github.com/ReVanced/revanced-manager/compare/v2.0.1-dev.1...v2.0.1-dev.2) (2026-03-15)


### Bug Fixes

* Always download initial versions of patches and downloaders ([1ffcfca](https://github.com/ReVanced/revanced-manager/commit/1ffcfcafb883bfb500aa3611896e27215b8beb10))
* Cleanup downloaded apps ([026b6a9](https://github.com/ReVanced/revanced-manager/commit/026b6a9a1eda240c21cfe2527bf1d8c09ac955ee))

## app [2.0.1-dev.1](https://github.com/ReVanced/revanced-manager/compare/v2.0.0...v2.0.1-dev.1) (2026-03-15)


### Bug Fixes

* Restore app deletion dialog ([65ce565](https://github.com/ReVanced/revanced-manager/commit/65ce565bbc45fb12020acee3e6f75f90c552f950))

# app [2.0.0](https://github.com/ReVanced/revanced-manager/compare/v1.25.1...v2.0.0) (2026-03-14)


* feat!: Bump major version ([4f6197c](https://github.com/ReVanced/revanced-manager/commit/4f6197cf7dbd80fb554c12329b994ccd8383dee5))


### Bug Fixes

* `ExtendedFloatingActionButton` not accessible by screen readers ([#2080](https://github.com/ReVanced/revanced-manager/issues/2080)) ([e4f19b0](https://github.com/ReVanced/revanced-manager/commit/e4f19b0c251e818cce59e11362a29dc8f657e065))
* add bounds checks in patch selector ([483be5d](https://github.com/ReVanced/revanced-manager/commit/483be5d722db2be2595f6f6dd0c537a6c8487daf))
* Add missing header for "Updates" settings ([#2642](https://github.com/ReVanced/revanced-manager/issues/2642)) ([d4d2056](https://github.com/ReVanced/revanced-manager/commit/d4d2056585ccd4a0456318448dc822c0f40c9c50))
* add newlines to debug logs ([4753873](https://github.com/ReVanced/revanced-manager/commit/4753873866b575e2dcb160020df63f63862c8f33))
* Adjust ReVanced icons ([#2890](https://github.com/ReVanced/revanced-manager/issues/2890)) ([bc2a2cb](https://github.com/ReVanced/revanced-manager/commit/bc2a2cb3976234c8a74db93a593e103d77d22a07))
* Allow different app version when downloading via plugin if setting is off ([#2579](https://github.com/ReVanced/revanced-manager/issues/2579)) ([59d233e](https://github.com/ReVanced/revanced-manager/commit/59d233e15c885104900c7d4129fb4839c4da81e0))
* allow updating patches on metered networks ([9d9a0e8](https://github.com/ReVanced/revanced-manager/commit/9d9a0e81dbc9e73e6e3181f6bea9cabb69e49ea8))
* always use default patch selection if customization is disabled ([cc77181](https://github.com/ReVanced/revanced-manager/commit/cc771817cba3dfd8f704cb7ecc9089ad7911c6ce))
* android icon not loading in app selector ([deea682](https://github.com/ReVanced/revanced-manager/commit/deea68265157da65ef98986d751e2551797522e0))
* automatically focus search views ([d23d673](https://github.com/ReVanced/revanced-manager/commit/d23d673c4703cdfa3be3a292873bbb37bea30ac7))
* available updates dialog list item color ([1a54313](https://github.com/ReVanced/revanced-manager/commit/1a54313c1dc4efbb8b274201a79e28661a7ecf64))
* Bottom sheet on patches selector glitched when going to full screen sheet ([aa153a7](https://github.com/ReVanced/revanced-manager/commit/aa153a74d596c19d2844cb2fe72b5694d6a5b510))
* Broken header padding in `AlertDialogExtended` when using an Icon ([8d939a6](https://github.com/ReVanced/revanced-manager/commit/8d939a6669909a44382fc7404276f2eeefcf728d))
* broken logo in about page on release builds ([ad775f3](https://github.com/ReVanced/revanced-manager/commit/ad775f3059345dd93ff2baf6d018c2beecc413df))
* Broken version comparison ([c327857](https://github.com/ReVanced/revanced-manager/commit/c3278578237dcddd9e7ab79ee80a02fdeef9604d))
* buildfile syntax ([#66](https://github.com/ReVanced/revanced-manager/issues/66)) ([5c17a78](https://github.com/ReVanced/revanced-manager/commit/5c17a78e46db586642d53362267472fbbd47ae8c))
* bundles not loading on Android 14 ([56896d6](https://github.com/ReVanced/revanced-manager/commit/56896d6197baa836bcd4a499ea2cee487e3d07c8))
* Change the title in the Update screen from "Updates" to "Update" ([5f23769](https://github.com/ReVanced/revanced-manager/commit/5f2376919bd036987eba8188e3a1a2ff53ef6793)), closes [#1960](https://github.com/ReVanced/revanced-manager/issues/1960)
* cleanup advanced settings screen ([02ea5c6](https://github.com/ReVanced/revanced-manager/commit/02ea5c6d4a2e6baa7c034b614deb6e4232cf6d0b))
* **Compose:** Adjusted universal patches safeguard and warnings ([#2550](https://github.com/ReVanced/revanced-manager/issues/2550)) ([663cf2d](https://github.com/ReVanced/revanced-manager/commit/663cf2d6b86c276c6bb236af8e05a4f69df9eba0))
* contributors screen fix ([#1256](https://github.com/ReVanced/revanced-manager/issues/1256)) ([dc73462](https://github.com/ReVanced/revanced-manager/commit/dc73462ac41bd5f1813358eb5e2265a3e2e7c0f9))
* contributors screen repository name ([426b289](https://github.com/ReVanced/revanced-manager/commit/426b28932fe37a6d7412685819ffc8e26b69d31c))
* Correct preference description ([#2619](https://github.com/ReVanced/revanced-manager/issues/2619)) ([0096169](https://github.com/ReVanced/revanced-manager/commit/0096169af8f9e2db6c22b8e88f0dfe1cab1260be))
* Correctly display universal patches warning ([#2570](https://github.com/ReVanced/revanced-manager/issues/2570)) ([24c4cd3](https://github.com/ReVanced/revanced-manager/commit/24c4cd3f991953dd00b5bf5e7c3ec965315a9528))
* correctly patch apk files ([c5cb18a](https://github.com/ReVanced/revanced-manager/commit/c5cb18a7eab838ea096577780335a29b9771b43d))
* crash caused by compose inlining bug ([05fe058](https://github.com/ReVanced/revanced-manager/commit/05fe0581516a373cc26dd559d3fc7f21fcf16f3f))
* crash when removing used bundles ([189c993](https://github.com/ReVanced/revanced-manager/commit/189c993ada6406db6f8c48c4051c5bd9fac98e2b))
* Create modules path in root installer ([4fc2ba3](https://github.com/ReVanced/revanced-manager/commit/4fc2ba339b6d275fb9da8b65ff86b74a6594436d))
* delete temporary files ([#1341](https://github.com/ReVanced/revanced-manager/issues/1341)) ([b03f7b1](https://github.com/ReVanced/revanced-manager/commit/b03f7b18a029465142d08fe1ed68e92c81586a5f))
* Detect downloaded APKs when patches support any version ([#2967](https://github.com/ReVanced/revanced-manager/issues/2967)) ([65e84e2](https://github.com/ReVanced/revanced-manager/commit/65e84e2944968a312f34d66d1a40c0cc9d3ef473))
* disable `WebView` history ([#1278](https://github.com/ReVanced/revanced-manager/issues/1278)) ([a811df9](https://github.com/ReVanced/revanced-manager/commit/a811df9547da33fc61397cb33ba5fd35ee470ff9))
* display version from manifest ([#2634](https://github.com/ReVanced/revanced-manager/issues/2634)) ([1fb94b7](https://github.com/ReVanced/revanced-manager/commit/1fb94b711fdbbbca7d9baaa90c53faf208fc4d0d))
* Do not poll battery optimization status ([#2491](https://github.com/ReVanced/revanced-manager/issues/2491)) ([26778f5](https://github.com/ReVanced/revanced-manager/commit/26778f57e6dd185d9aed1086aa03659a2e91d1a9))
* don't store app list in parcel ([e7802ed](https://github.com/ReVanced/revanced-manager/commit/e7802ed3d714cbe6e29409d27989c65d4d7ce6a5))
* dont crash when the bundle cannot be downloaded ([4d201f1](https://github.com/ReVanced/revanced-manager/commit/4d201f17f2ce01aad6adb456a49c3f03526c5ad3))
* Downgrade AGP to fix build issues ([c7e56c4](https://github.com/ReVanced/revanced-manager/commit/c7e56c4700a6566a010ef5aaf8ba7efd740dc9ce))
* **downloader:** versions not loading correctly ([16c4290](https://github.com/ReVanced/revanced-manager/commit/16c4290f05d94cbe53e68cb98307d7be1bfce7af))
* Exclude desktop AAPT and disable R8 optimizations ([6ce5b67](https://github.com/ReVanced/revanced-manager/commit/6ce5b672feb677eccafffb6a04bdf5513f6d62fa))
* Flutter migration ([#2946](https://github.com/ReVanced/revanced-manager/issues/2946)) ([31a0f75](https://github.com/ReVanced/revanced-manager/commit/31a0f751aaff3233f50821963f28454d239318b2))
* handle edge-to-edge properly in fullscreen dialogs ([eba92e2](https://github.com/ReVanced/revanced-manager/commit/eba92e2644663b10e7e17f2cf955afefe260d769))
* handle exceptions when checking for bundle updates ([1dd6738](https://github.com/ReVanced/revanced-manager/commit/1dd673896454710094e83789abb585c106ee6bcb))
* Handle open source licenses page crash ([#2569](https://github.com/ReVanced/revanced-manager/issues/2569)) ([f2ea007](https://github.com/ReVanced/revanced-manager/commit/f2ea00757a76ed8758bc0d4df54843c89483c986))
* hide patch button ([#1284](https://github.com/ReVanced/revanced-manager/issues/1284)) ([dadc546](https://github.com/ReVanced/revanced-manager/commit/dadc5462e352e91cf971395def91d693677701bc))
* Ignore long click when already in delete mode ([6f6296b](https://github.com/ReVanced/revanced-manager/commit/6f6296b8cde56d5fc73e00ef671ca7ab431455f4)), closes [#2503](https://github.com/ReVanced/revanced-manager/issues/2503)
* Import AndroidX WindowInsets ([af2683d](https://github.com/ReVanced/revanced-manager/commit/af2683d91df375e0c4ff3ab75ad696f18f69ccf6))
* import bundles on another thread ([0383bd7](https://github.com/ReVanced/revanced-manager/commit/0383bd74f73a3523d539c44cdf38b0e857c16bdc))
* import export screen UX ([69c119d](https://github.com/ReVanced/revanced-manager/commit/69c119d545ac811c605124173e5cbc97a9064c79))
* Improve background running notification ([#2614](https://github.com/ReVanced/revanced-manager/issues/2614)) ([05444d8](https://github.com/ReVanced/revanced-manager/commit/05444d8824a429c7e554d0597f8997e670936a63))
* improve bundle page strings ([2a63a61](https://github.com/ReVanced/revanced-manager/commit/2a63a6163a8d2e6ee649cb22099b426ed605de8f))
* Improve consistency between pre-release toggles ([e1b768c](https://github.com/ReVanced/revanced-manager/commit/e1b768c4679ecae8bff8007bdab56ff6544b12b6))
* improve keystore import error handling and show toast ([cd142a7](https://github.com/ReVanced/revanced-manager/commit/cd142a70d3f210161d3c1f20d2cb82a70432469f))
* Inconsistent padding for battery optimisation warning ([6c3a99a](https://github.com/ReVanced/revanced-manager/commit/6c3a99a4921ab4438a038ad4c4bccd0326fdd565))
* Incorrect patcher string value ([f19080a](https://github.com/ReVanced/revanced-manager/commit/f19080a9862be4600860b67cd981b9a3a56b21e7))
* install dialog getting stuck ([#2900](https://github.com/ReVanced/revanced-manager/issues/2900)) ([18a4df9](https://github.com/ReVanced/revanced-manager/commit/18a4df9af9cac120fdb8e4ff7aadd2e2a8d5c1a6))
* **installer:** make the correct column scrollable ([64496bf](https://github.com/ReVanced/revanced-manager/commit/64496bfbe77a9a44f5535fd5f12eee803ac7c26a))
* **installer:** progress tracking ([f547bb7](https://github.com/ReVanced/revanced-manager/commit/f547bb7ab1b7149d7290729527714168a2561b23))
* **installer:** properly track worker state ([#32](https://github.com/ReVanced/revanced-manager/issues/32)) ([de1ef23](https://github.com/ReVanced/revanced-manager/commit/de1ef23824227796c8583242e624f83d9dae5af3))
* **installer:** save step incorrectly being marked as completed ([0264308](https://github.com/ReVanced/revanced-manager/commit/0264308b6dad051db80da6f130e8d28d86b38f04))
* **installer:** sign and install on threads ([3d59ee5](https://github.com/ReVanced/revanced-manager/commit/3d59ee51acc5a6ebb17f68c0462d17d7ecb0f07c))
* Instantly re-fetch patch bundle on pre-release preference update ([d5671db](https://github.com/ReVanced/revanced-manager/commit/d5671db3a77541c07bbbb4c3baca02f3ba0703f2)), closes [#2784](https://github.com/ReVanced/revanced-manager/issues/2784)
* jvm signature clash error ([ee0f342](https://github.com/ReVanced/revanced-manager/commit/ee0f34245636027d55bd5bdfce4d6a5e6c3b3dcd))
* library info not being embedded ([8c9fe69](https://github.com/ReVanced/revanced-manager/commit/8c9fe6989fc6d05afd53baa877f1e6dffc067b50))
* load patch bundles earlier ([a2f9e2f](https://github.com/ReVanced/revanced-manager/commit/a2f9e2f1da961a13b2b20e2812593031c9339b88))
* **locales:** use buildconfig instead of generating kt file ([72b1db9](https://github.com/ReVanced/revanced-manager/commit/72b1db9a2f33ab5d5fffd8ba83c05901eff19bea))
* Make app source dialog string more accurate ([c8b429f](https://github.com/ReVanced/revanced-manager/commit/c8b429fa4741a28b9c29144939036d6fa8633cb4))
* Make transitions in/out duration the same ([cd24d59](https://github.com/ReVanced/revanced-manager/commit/cd24d59b19d8b662af9e662ac48b4c13071e2284))
* Match "Installation incompatible" dialog message with Flutter Manager ([#2231](https://github.com/ReVanced/revanced-manager/issues/2231)) ([fedaedf](https://github.com/ReVanced/revanced-manager/commit/fedaedfda112260144b0b9b0776509ddb3438046))
* Merge doppelgirl design decision to public ([1277315](https://github.com/ReVanced/revanced-manager/commit/12773154d6d73d90e9447ef4c0f991575f4840a9))
* Migration of keystore, by fixing mislabeling of alias as cn ([#2769](https://github.com/ReVanced/revanced-manager/issues/2769)) ([aeab639](https://github.com/ReVanced/revanced-manager/commit/aeab639b2b09e8bbd2478cfbf5a518586405c0f7))
* minify crash on building release ([#1245](https://github.com/ReVanced/revanced-manager/issues/1245)) ([6561e4c](https://github.com/ReVanced/revanced-manager/commit/6561e4c97c19134b22b72e19fad3884f99327b9a))
* more android 34 fixes ([7fb1e27](https://github.com/ReVanced/revanced-manager/commit/7fb1e27617b69803b3d4463993b2290877502545))
* move battery warning to dashboard ([3a05150](https://github.com/ReVanced/revanced-manager/commit/3a05150fa33f119ecdf436f8508862ef81c327a0))
* Move temporary files outside of the cache directory ([#2122](https://github.com/ReVanced/revanced-manager/issues/2122)) ([b93ecc0](https://github.com/ReVanced/revanced-manager/commit/b93ecc0db20339393e1296c44ce4b1dbd837b577))
* Never show again toggle doing nothing for Update dialog ([6f4219c](https://github.com/ReVanced/revanced-manager/commit/6f4219c01ba43b70e130f210c8d48978a6056f68))
* Offcenter loading indicator in AppSelector ([12d92ba](https://github.com/ReVanced/revanced-manager/commit/12d92ba8110f5d1ac78aeecfa575444b5c53f561))
* Offset badge ([c73fdfd](https://github.com/ReVanced/revanced-manager/commit/c73fdfdd2d3a1b8552d9c26df575b3019346596d))
* only perform haptics on events ([e55566d](https://github.com/ReVanced/revanced-manager/commit/e55566d3df25480260922f0418b4bbee5d7b7a07))
* option state crash ([#1456](https://github.com/ReVanced/revanced-manager/issues/1456)) ([f183b6d](https://github.com/ReVanced/revanced-manager/commit/f183b6d8a6b139fe3e84d5ea3a9658ef900453bc))
* parcel error for nullable types ([336eed3](https://github.com/ReVanced/revanced-manager/commit/336eed3a95111ebbe456321f5986e6875ded354e))
* pass worker inputs without serialization ([#44](https://github.com/ReVanced/revanced-manager/issues/44)) ([059a72b](https://github.com/ReVanced/revanced-manager/commit/059a72b9dd9103d2b3704daa7dbb13ad83971460))
* patch count remaining at zero when using process runtime ([#2542](https://github.com/ReVanced/revanced-manager/issues/2542)) ([f5e1e0b](https://github.com/ReVanced/revanced-manager/commit/f5e1e0b0659e5775dd460b8dfc15427eb0175139))
* patch options reset button being broken ([e1647fd](https://github.com/ReVanced/revanced-manager/commit/e1647fdef0c9f68e171a2d15e2b6e744da6bbaf5))
* Patch process cancelation dialog conditions ([#2554](https://github.com/ReVanced/revanced-manager/issues/2554)) ([e97b19d](https://github.com/ReVanced/revanced-manager/commit/e97b19d2b65dbfc49ed062b123c363e412b9bf8e))
* Patch selection screen padding ([#2533](https://github.com/ReVanced/revanced-manager/issues/2533)) ([cd2dbcc](https://github.com/ReVanced/revanced-manager/commit/cd2dbcc841e56dac99230ea6501af87c43e9c572))
* Patcher FAB elevation being wrong on BAB component ([30ecf62](https://github.com/ReVanced/revanced-manager/commit/30ecf62d356df41bcd6e2b167ee7262ce6655e20))
* **patcher:** add notification and wakelock to worker; chore: add app icon ([8b6d32d](https://github.com/ReVanced/revanced-manager/commit/8b6d32dd7b3ca4c694414a55a1b6202b62636530))
* patches not being reloaded ([dccf861](https://github.com/ReVanced/revanced-manager/commit/dccf86163af34341e3e451df9f24356c7294ae1e))
* **patches selector:** copy the selected patches list ([70e49aa](https://github.com/ReVanced/revanced-manager/commit/70e49aaaa3a42510cb9ced2209c90cd1da98391d))
* perform selected app operations in the correct order ([34cf848](https://github.com/ReVanced/revanced-manager/commit/34cf848baaaa2504d162c515a95240d45bd7092a))
* permission error when using installed app ([8767f0e](https://github.com/ReVanced/revanced-manager/commit/8767f0e99c6de5bbb0a690ced40f6e9a486f0828))
* Playback Switch's Haptic Feedback ([#2639](https://github.com/ReVanced/revanced-manager/issues/2639)) ([9fdca5a](https://github.com/ReVanced/revanced-manager/commit/9fdca5a0afd6be8a24e2ec09eec0000b0b9cd179))
* prevent back presses during installation ([2ff7072](https://github.com/ReVanced/revanced-manager/commit/2ff70728b490b92f212a82dcf599bc0c23f589e7))
* Prevent trailing comma when no locales are generated ([b16931c](https://github.com/ReVanced/revanced-manager/commit/b16931ca79d5ce4d17c75f6dd3bf6f976b8ff7be))
* process death resilience and account for android 11 bug ([#2355](https://github.com/ReVanced/revanced-manager/issues/2355)) ([83eeeae](https://github.com/ReVanced/revanced-manager/commit/83eeeae801827800a0787e9e753c72d2a24d7970))
* progress bar not updating ([dcaa38c](https://github.com/ReVanced/revanced-manager/commit/dcaa38c8824f54da7a833c354b247f309d1c9871))
* Release builds not working ([00b3c59](https://github.com/ReVanced/revanced-manager/commit/00b3c59572760993f69f2663456237faafff0283))
* release builds not working properly ([6f6476e](https://github.com/ReVanced/revanced-manager/commit/6f6476e85158cad4e2497e9f72b73c4dc948f0bc))
* remove battery optimization notification if user grants the permission ([9863c51](https://github.com/ReVanced/revanced-manager/commit/9863c5161a1bc16941a323e654f80f8cb0122f9f))
* Remove quotes from strings ([fc30ba5](https://github.com/ReVanced/revanced-manager/commit/fc30ba5e83f27329b05dc81f484bb8f7471b6a99))
* Remove redundant patch fab on initial tab screen ([c925078](https://github.com/ReVanced/revanced-manager/commit/c925078a84adcf371a999fdb9ed2d886fbad4507))
* remove the unique constraint for patch bundle names ([ea29d0f](https://github.com/ReVanced/revanced-manager/commit/ea29d0f00c3b3b2c137c4849e6c445a6bf9a180f))
* Remove unnecessary screen padding ([8419f75](https://github.com/ReVanced/revanced-manager/commit/8419f75d597dd198aa1029fae2109646c5874078)), closes [#2062](https://github.com/ReVanced/revanced-manager/issues/2062)
* remove unused function preventing compilation ([2297e94](https://github.com/ReVanced/revanced-manager/commit/2297e94cb81a9a22ea032d8e247769774ca85087))
* Reset cached theme on theme change to avoid broken colors ([#2527](https://github.com/ReVanced/revanced-manager/issues/2527)) ([9a82b78](https://github.com/ReVanced/revanced-manager/commit/9a82b785280954973cafc5e6dccb3c90fdb5ef49))
* run blocking IO operations in the correct context ([969ddb7](https://github.com/ReVanced/revanced-manager/commit/969ddb7bef321d7aa2a682b8128b1f755f35c28b))
* run props flow on correct dispatcher ([#2035](https://github.com/ReVanced/revanced-manager/issues/2035)) ([d3d4c27](https://github.com/ReVanced/revanced-manager/commit/d3d4c27f6d7affceef233a0138ee6c985c7f56bc))
* Save FAB freaking out in select patches screen ([4c0b6b0](https://github.com/ReVanced/revanced-manager/commit/4c0b6b02e95a8d6f655bcf5c25493b1f9a4a4dcd))
* Screen turns off while patching due to wrong WakeLock ([#2147](https://github.com/ReVanced/revanced-manager/issues/2147)) ([4de5340](https://github.com/ReVanced/revanced-manager/commit/4de534094adc0665021d3ba129a648d896718568))
* scrolling in patch selector ([154f036](https://github.com/ReVanced/revanced-manager/commit/154f036fe956096bca983fe9d6654ccca38fd8ac))
* SearchBar padding in patches screen ([54d59c3](https://github.com/ReVanced/revanced-manager/commit/54d59c36fec7958ae60e35f40b9f0e821ba941c4))
* Selected patch count ([#2559](https://github.com/ReVanced/revanced-manager/issues/2559)) ([a91ff60](https://github.com/ReVanced/revanced-manager/commit/a91ff60533b44629ea60e8cd6acceeb80b0253b7))
* serialization not working ([4d04ae0](https://github.com/ReVanced/revanced-manager/commit/4d04ae088c406d84936120cb753cd1f11fb8a8c2))
* show available and selected patches in patch selector screen ([61f1ee0](https://github.com/ReVanced/revanced-manager/commit/61f1ee0627d6cbb6b9a4d226eb6c2f9e0b8c6453))
* show install button when installation has been cancelled ([93f4a5b](https://github.com/ReVanced/revanced-manager/commit/93f4a5bb7c912ca77bb04e414432922c89d3e2c0))
* Show previously downloaded APKs in source selector dialog ([#2964](https://github.com/ReVanced/revanced-manager/issues/2964)) ([b28f0a8](https://github.com/ReVanced/revanced-manager/commit/b28f0a84f367eafd9ac01c74aefcbbe9395ee4ba))
* Show selection warning also on patch option ([#2643](https://github.com/ReVanced/revanced-manager/issues/2643)) ([3b82767](https://github.com/ReVanced/revanced-manager/commit/3b82767a897eeca1dda1d8343f1db4207050e960))
* sources screen being misaligned during transitions ([2ac3d5c](https://github.com/ReVanced/revanced-manager/commit/2ac3d5c483d5cc4776681ed3f900550a4e45f616))
* specify `multithreadingDexFileWriter` in `PatcherOptions` ([#1402](https://github.com/ReVanced/revanced-manager/issues/1402)) ([3f362b6](https://github.com/ReVanced/revanced-manager/commit/3f362b605fbce3ea72e7c95b7e0bc614443c7d44))
* Support patching on ARMv7 by updating AAPT2 ([#2084](https://github.com/ReVanced/revanced-manager/issues/2084)) ([15b47f9](https://github.com/ReVanced/revanced-manager/commit/15b47f9bb6cd6bb0360fda6ac641cd4c75542287))
* Transparent status on fullscreen dialog ([#2654](https://github.com/ReVanced/revanced-manager/issues/2654)) ([a8820a4](https://github.com/ReVanced/revanced-manager/commit/a8820a4daf71704f6945b8f794495fe8a8d7589e))
* Turn off filters by default ([#2079](https://github.com/ReVanced/revanced-manager/issues/2079)) ([44f8b1f](https://github.com/ReVanced/revanced-manager/commit/44f8b1fb6bffed5866ada356910119465320a9a8))
* typo in string name `import_keystore_description` ([#1273](https://github.com/ReVanced/revanced-manager/issues/1273)) ([933e69e](https://github.com/ReVanced/revanced-manager/commit/933e69e21e97fede2183a26dd1645a6eb96c4509))
* **ui:** make entire patches view button selectable ([#1271](https://github.com/ReVanced/revanced-manager/issues/1271)) ([83cdaae](https://github.com/ReVanced/revanced-manager/commit/83cdaaee183ff1b6d905977df38fe4e47f7d5973))
* unexclude other destabilizers ([2c3d436](https://github.com/ReVanced/revanced-manager/commit/2c3d436b258f100feea0b9864b7131ae2c5bda79))
* Update selected patch count when SelectionState changes ([#2896](https://github.com/ReVanced/revanced-manager/issues/2896)) ([0d26df0](https://github.com/ReVanced/revanced-manager/commit/0d26df03f463195dae550240c7f652680763079c))
* Updates popup shows incorrect names ([#1283](https://github.com/ReVanced/revanced-manager/issues/1283)) ([c879faf](https://github.com/ReVanced/revanced-manager/commit/c879faf2eb338476c6abd9f104922b0d49f95cd6))
* Use `compatible` rather than `support` when referring to patch compatibility ([#2422](https://github.com/ReVanced/revanced-manager/issues/2422)) ([8b3c4eb](https://github.com/ReVanced/revanced-manager/commit/8b3c4eb91c491a0971e2ccf7d46012437eca5c25))
* use correct `getViewModel` ([5b6ae80](https://github.com/ReVanced/revanced-manager/commit/5b6ae800fdfc93ef5058b21b3e48daac2a4e1358))
* use correct classes to determine option type ([e833bf4](https://github.com/ReVanced/revanced-manager/commit/e833bf4ad14811bb6880ae2d97055e4ce0de222f))
* use correct directory ([9e1ebb3](https://github.com/ReVanced/revanced-manager/commit/9e1ebb390244dcb9af03a9164a32386481ec5691))
* Use FAB instead of ListItem to patch in App Overview ([6ace71b](https://github.com/ReVanced/revanced-manager/commit/6ace71b739302466274ce9b46f5f7dd6ab9da05d)), closes [#1995](https://github.com/ReVanced/revanced-manager/issues/1995)
* use proper update icon ([b59a161](https://github.com/ReVanced/revanced-manager/commit/b59a16191a61c64275137c4a6145fd30d68aa480))
* use ReVanced ring logo in about section ([#1302](https://github.com/ReVanced/revanced-manager/issues/1302)) ([933a4a3](https://github.com/ReVanced/revanced-manager/commit/933a4a32203425e745e05615217a8d0975c2e959))
* Use the correct icon in API URL dialog ([c22e5b4](https://github.com/ReVanced/revanced-manager/commit/c22e5b4051515e0f02828a2b30f6af19b48ba55f)), closes [#1972](https://github.com/ReVanced/revanced-manager/issues/1972)
* use upsert when modifying installed apps ([90edf1d](https://github.com/ReVanced/revanced-manager/commit/90edf1ddd0de29b299855810402a31828d989d04))
* **VersionSelector:** use correct LazyColumn item key ([413fe98](https://github.com/ReVanced/revanced-manager/commit/413fe980a8c0b45e3924c98b2fbd1a3e9b579528))
* we actually don't want to exclude reflection symbols ([3222840](https://github.com/ReVanced/revanced-manager/commit/32228404c4ef38bb8931d5cfdf6a7aefde23a89c))


### Features

* **about screen:** complete about screen ([1d6b34a](https://github.com/ReVanced/revanced-manager/commit/1d6b34a39f76e8e733649f7fcfeb20eb1009a39a))
* Add `isScrollingUp` support for ScrollState ([bf049c3](https://github.com/ReVanced/revanced-manager/commit/bf049c3c1ac12a60c5c6226b5c3fec7f72caa7db))
* add ability to share debug logs ([feb0ca4](https://github.com/ReVanced/revanced-manager/commit/feb0ca4cf315e5d332f36039fbb989b3cfb9cf58))
* Add announcements ([#2948](https://github.com/ReVanced/revanced-manager/issues/2948)) ([813df46](https://github.com/ReVanced/revanced-manager/commit/813df46847620bd854dccc52ff244388b3385e17))
* add checkboxes to the downloaded apps page ([ca93524](https://github.com/ReVanced/revanced-manager/commit/ca93524be0b37f38b860d8512c81d2898b2860af))
* Add confirm dialogs when toggling dangerous settings ([#2072](https://github.com/ReVanced/revanced-manager/issues/2072)) ([6643276](https://github.com/ReVanced/revanced-manager/commit/66432764cfe8192f4cf8e599a592f27c675f25ec))
* Add confirmation dialog to "Reset" options ([#2576](https://github.com/ReVanced/revanced-manager/issues/2576)) ([f32ffbb](https://github.com/ReVanced/revanced-manager/commit/f32ffbb6f2224f886af14205721fb2372f396de2))
* Add downloader plugin system ([#2041](https://github.com/ReVanced/revanced-manager/issues/2041)) ([ca38737](https://github.com/ReVanced/revanced-manager/commit/ca3873778307612b93af3273ffe4821c6a5e398d))
* add external process runtime ([#1799](https://github.com/ReVanced/revanced-manager/issues/1799)) ([0d73e0c](https://github.com/ReVanced/revanced-manager/commit/0d73e0cd32b6af3526c226ce4695c7e905f65b15))
* Add haptic feedback ([#1457](https://github.com/ReVanced/revanced-manager/issues/1457)) ([76e0c95](https://github.com/ReVanced/revanced-manager/commit/76e0c9518746620cd2723a99c310f92f5b3fd996))
* Add installer status dialog ([#1473](https://github.com/ReVanced/revanced-manager/issues/1473)) ([43b3743](https://github.com/ReVanced/revanced-manager/commit/43b37432138d7cd8a507efad80827d6f3bdcdf08))
* Add language settings ([#2913](https://github.com/ReVanced/revanced-manager/issues/2913)) ([df31b39](https://github.com/ReVanced/revanced-manager/commit/df31b39cc8c1fbf00bc3301468e8e7e4b283caf2))
* add network checks for features that require it ([f3f8bc4](https://github.com/ReVanced/revanced-manager/commit/f3f8bc4ec2f593ade91324d78f9ce83f60ef65cc))
* add patch bundle info screen ([#55](https://github.com/ReVanced/revanced-manager/issues/55)) ([8ae4e85](https://github.com/ReVanced/revanced-manager/commit/8ae4e850dae9cf4df14afe90048ca0b0a48389ac))
* Add patch selection filters ([#2956](https://github.com/ReVanced/revanced-manager/issues/2956)) ([0be493d](https://github.com/ReVanced/revanced-manager/commit/0be493da662ed2b46d4b8616942357eb6a111d17))
* add patches selector bottom sheet ([#1360](https://github.com/ReVanced/revanced-manager/issues/1360)) ([f6fb534](https://github.com/ReVanced/revanced-manager/commit/f6fb534e04777b4f0ec2ff2b13768c724c68c028))
* Add pure black theme ([#2824](https://github.com/ReVanced/revanced-manager/issues/2824)) ([3d75ffe](https://github.com/ReVanced/revanced-manager/commit/3d75ffe6a7a39efdebe13dbd07c937c1de409ead))
* add required options screen ([#2378](https://github.com/ReVanced/revanced-manager/issues/2378)) ([3a63e42](https://github.com/ReVanced/revanced-manager/commit/3a63e42df9ce50069a573d98cf44a8abec03b639))
* Add reset button to custom API ([#2076](https://github.com/ReVanced/revanced-manager/issues/2076)) ([df52a7b](https://github.com/ReVanced/revanced-manager/commit/df52a7bdef05e1c9f034ae067c3dd183fb8fdffd)), closes [#2051](https://github.com/ReVanced/revanced-manager/issues/2051)
* Add sensitivity to `isScrollingUp` ([f6ca4e9](https://github.com/ReVanced/revanced-manager/commit/f6ca4e95551193c8d21afd09872d9bbe6c80c0e8))
* add social links ([#1294](https://github.com/ReVanced/revanced-manager/issues/1294)) ([7df3350](https://github.com/ReVanced/revanced-manager/commit/7df3350acb4aae957e2a7c0d2f30faf6cae6ab85))
* Add support for writing downloader UI with fragments ([#2998](https://github.com/ReVanced/revanced-manager/issues/2998)) ([7471710](https://github.com/ReVanced/revanced-manager/commit/7471710f287b4febb9546a7d7cd59d654b2754e9))
* add toast feedback to the bundle update button ([ea50e65](https://github.com/ReVanced/revanced-manager/commit/ea50e65ab1d626152bdd40c1893cd408b7271472))
* Add UI nudges to note about pitfalls ([9cf2bd6](https://github.com/ReVanced/revanced-manager/commit/9cf2bd6603179c0ea24df64849ed023ed69f2795))
* add user agent ([#1382](https://github.com/ReVanced/revanced-manager/issues/1382)) ([3aea6cb](https://github.com/ReVanced/revanced-manager/commit/3aea6cbaecc9db103e9a3925b3c4a531de6c5f0e))
* advanced settings page with device info ([#51](https://github.com/ReVanced/revanced-manager/issues/51)) ([86e4244](https://github.com/ReVanced/revanced-manager/commit/86e42449eb553417726b95f79f6edd7f526f6d44))
* allow bundles to use classes from other bundles ([#1951](https://github.com/ReVanced/revanced-manager/issues/1951)) ([af8e2b4](https://github.com/ReVanced/revanced-manager/commit/af8e2b44c027d978046a0e7926f1425f0348b098))
* Allow multiple downloaders per APK ([#2916](https://github.com/ReVanced/revanced-manager/issues/2916)) ([0f56377](https://github.com/ReVanced/revanced-manager/commit/0f56377214fae05693a21177daf7534c103df74e))
* allow user to save logs ([a008cf5](https://github.com/ReVanced/revanced-manager/commit/a008cf5dd143fafb1f642cd037db29393716f7d5))
* animate the arrow button ([db070b1](https://github.com/ReVanced/revanced-manager/commit/db070b125bf08ff251450259045755e6469c2d5e))
* app downloader ([#43](https://github.com/ReVanced/revanced-manager/issues/43)) ([1f1a480](https://github.com/ReVanced/revanced-manager/commit/1f1a480d51edb310934523024c52e0c19b066662))
* app selector screen ([373cc4b](https://github.com/ReVanced/revanced-manager/commit/373cc4bbb1a8194bf9475d0a13e1c154cd87480b))
* **app-selector:** show patchable installed apps first ([#1496](https://github.com/ReVanced/revanced-manager/issues/1496)) ([afb0f80](https://github.com/ReVanced/revanced-manager/commit/afb0f80de5a73c213f77bfde761ea1ea0886abef))
* armv7 warning ([2ffcaec](https://github.com/ReVanced/revanced-manager/commit/2ffcaec724d5a13b816e04813d45cde75681eb69))
* Automatic language detection ([#2032](https://github.com/ReVanced/revanced-manager/issues/2032)) ([36a1c3f](https://github.com/ReVanced/revanced-manager/commit/36a1c3f36807500fbe820bf4142fef159b138c7d))
* backend ([45a54d1](https://github.com/ReVanced/revanced-manager/commit/45a54d1608a77547e06748867d63a452224727b6))
* better installer ui ([#29](https://github.com/ReVanced/revanced-manager/issues/29)) ([14888f9](https://github.com/ReVanced/revanced-manager/commit/14888f9da71ecf1c50d770123d1e8dd09aa6c8b1))
* **bundles tab:** add BackHandler ([a9171e1](https://github.com/ReVanced/revanced-manager/commit/a9171e17bd628601f1e074a7fcdf74c15cb73709))
* Change "Update" to "Show" in Update Available notification ([5c43413](https://github.com/ReVanced/revanced-manager/commit/5c434137d332aabaaca236b6f9616d7727d0b3d2)), closes [#1959](https://github.com/ReVanced/revanced-manager/issues/1959)
* change appID and name of debug builds ([5b3e9e5](https://github.com/ReVanced/revanced-manager/commit/5b3e9e595cded277c051cc669d9f29bcb6ce5d18))
* **Changelogs:** overall improvement ([#1429](https://github.com/ReVanced/revanced-manager/issues/1429)) ([2a3590d](https://github.com/ReVanced/revanced-manager/commit/2a3590ddd2cc74b746a3f632a93970bfa23cf384))
* check for updates on startup ([#1462](https://github.com/ReVanced/revanced-manager/issues/1462)) ([bb2164e](https://github.com/ReVanced/revanced-manager/commit/bb2164e1a95a698b1b0f69e725af5e0e1e45b868))
* check if the version being used is the recommended version ([#1675](https://github.com/ReVanced/revanced-manager/issues/1675)) ([9d961f6](https://github.com/ReVanced/revanced-manager/commit/9d961f6a52d15ed6116afc78c7008460347da69a))
* Collapse ExtendedFAB on scroll ([#1630](https://github.com/ReVanced/revanced-manager/issues/1630)) ([b5c1f6d](https://github.com/ReVanced/revanced-manager/commit/b5c1f6d732b65c1c9becb7962c51a70a840dea73))
* **Compose:** Add confirmation dialog on multiple operations  ([#2529](https://github.com/ReVanced/revanced-manager/issues/2529)) ([2671e68](https://github.com/ReVanced/revanced-manager/commit/2671e68004269deebdedaee38a6692b2302ca732))
* **Compose:** hide developer settings ([#2551](https://github.com/ReVanced/revanced-manager/issues/2551)) ([0030c7a](https://github.com/ReVanced/revanced-manager/commit/0030c7a7885feee0578ee1423ee2aefc6a0e2c2c))
* **Compose:** Improve patches selector tab by adding the bundle version ([#2545](https://github.com/ReVanced/revanced-manager/issues/2545)) ([3710675](https://github.com/ReVanced/revanced-manager/commit/3710675ac0ca77cecfb172b4cf148f41a762bf06))
* **Compose:** Move developer options to top level ([#2528](https://github.com/ReVanced/revanced-manager/issues/2528)) ([cedc6ad](https://github.com/ReVanced/revanced-manager/commit/cedc6ad49f23d778a52a8846f9e384fd2106e074))
* contributors screen ([#42](https://github.com/ReVanced/revanced-manager/issues/42)) ([3f54381](https://github.com/ReVanced/revanced-manager/commit/3f54381d307fd71296be18e97a1ab870f1cdc297))
* **Contributors Screen:** implement design from Figma ([#1465](https://github.com/ReVanced/revanced-manager/issues/1465)) ([d5bdc29](https://github.com/ReVanced/revanced-manager/commit/d5bdc293f308e2a283d744afdc1aed6a165f7166))
* Dashboard Screen ([#18](https://github.com/ReVanced/revanced-manager/issues/18)) ([a127b95](https://github.com/ReVanced/revanced-manager/commit/a127b959ead5a9c83a0c4f7e7840aeeb68362c0d))
* disable filter chips when there are no patches ([fd520bb](https://github.com/ReVanced/revanced-manager/commit/fd520bba700bae9d8eae745ce23a95b07b7f7d34))
* Don't mark all announcements as read on first launch, and set the correct default tags ([398ca00](https://github.com/ReVanced/revanced-manager/commit/398ca006b637048e6280edaf9685800f7638e6ba))
* dont ask for root on launch ([9562d80](https://github.com/ReVanced/revanced-manager/commit/9562d80bfdc785fe5ed512a15cfd7c0e09091acc))
* download apps in patcher screen ([#73](https://github.com/ReVanced/revanced-manager/issues/73)) ([a854221](https://github.com/ReVanced/revanced-manager/commit/a854221969c363712a0b3de84607092709db291f))
* Downloader source system ([#3007](https://github.com/ReVanced/revanced-manager/issues/3007)) ([3e0967e](https://github.com/ReVanced/revanced-manager/commit/3e0967e7c2a1e23af7e3f23eed01b3cb4180b27a))
* experimental patches setting ([b07fd23](https://github.com/ReVanced/revanced-manager/commit/b07fd2321dd0aecce556f341e2b18f930baa58fd))
* Export more info in logs ([#2957](https://github.com/ReVanced/revanced-manager/issues/2957)) ([69abbdc](https://github.com/ReVanced/revanced-manager/commit/69abbdc48adf8e92e7b32167fcf1674c2079056f))
* filter options for patches ([62bccd1](https://github.com/ReVanced/revanced-manager/commit/62bccd150441747e5cd6de71de304e416922bdda))
* finish implementing the sources system ([#70](https://github.com/ReVanced/revanced-manager/issues/70)) ([858b0ec](https://github.com/ReVanced/revanced-manager/commit/858b0ec5b456043fa61b681bbbd195fd9c30a6f0))
* get bundle information from jar manifest ([#2027](https://github.com/ReVanced/revanced-manager/issues/2027)) ([60fdec9](https://github.com/ReVanced/revanced-manager/commit/60fdec9804c763ef9308a7a56d245401dbd35d7c))
* hide tabs when 1 bundle is used ([41268ca](https://github.com/ReVanced/revanced-manager/commit/41268ca80b71f68dbf9523fa7bac34feeec7d011))
* hide unfinished pages in release mode ([c199801](https://github.com/ReVanced/revanced-manager/commit/c199801fb7f91306538391177d240cf1121964d2))
* Highlight links in Markdown ([7bf8988](https://github.com/ReVanced/revanced-manager/commit/7bf89887e420a402b30da4796ba3648147f00394)), closes [#1962](https://github.com/ReVanced/revanced-manager/issues/1962)
* implement DI ([7fa7b9d](https://github.com/ReVanced/revanced-manager/commit/7fa7b9d53a3217c7e1e4c70a524fd68ae170c832))
* implement more patch option types ([#2015](https://github.com/ReVanced/revanced-manager/issues/2015)) ([b18c678](https://github.com/ReVanced/revanced-manager/commit/b18c6783547e910fa2dbd3d7edcc5fe329e6d921))
* implement navigation ([7fc6ec5](https://github.com/ReVanced/revanced-manager/commit/7fc6ec5c2cf8eb9ebfc3dda01cdfd80962be1f8f))
* implement Submit Issue button ([#1276](https://github.com/ReVanced/revanced-manager/issues/1276)) ([a269a39](https://github.com/ReVanced/revanced-manager/commit/a269a39aa4a34b94aef4e1e85126c571e96be575))
* improve accessibility ([#64](https://github.com/ReVanced/revanced-manager/issues/64)) ([39b08e5](https://github.com/ReVanced/revanced-manager/commit/39b08e5201d2cec6bdb67f9386120a7a40c9ccc6))
* Improve APK file name formatting on save ([#2421](https://github.com/ReVanced/revanced-manager/issues/2421)) ([a53a8ba](https://github.com/ReVanced/revanced-manager/commit/a53a8ba62734daf9bd80ab79265241a4a22f489c))
* improve AppSelectorScreen caching/perf ([#2961](https://github.com/ReVanced/revanced-manager/issues/2961)) ([81e5a93](https://github.com/ReVanced/revanced-manager/commit/81e5a9315db4c858fa29163d15457af97163967a))
* improve bundle dialog UI ([409c888](https://github.com/ReVanced/revanced-manager/commit/409c888d523f398505daaaff9d2490dc5a863680))
* Improve bundle info screen design ([#2548](https://github.com/ReVanced/revanced-manager/issues/2548)) ([55524f7](https://github.com/ReVanced/revanced-manager/commit/55524f7284a44bbf8e8c782eedd7fc06d54944cf))
* Improve custom API URL dialog ([#2033](https://github.com/ReVanced/revanced-manager/issues/2033)) ([7dae562](https://github.com/ReVanced/revanced-manager/commit/7dae56281994942577bac7bf50c59e805672d0e1))
* Improve device information in debugging section ([d889677](https://github.com/ReVanced/revanced-manager/commit/d889677b29aeb4a49a025da98060265e88876ddf)), closes [#1977](https://github.com/ReVanced/revanced-manager/issues/1977)
* Improve initial update popup wording ([5901372](https://github.com/ReVanced/revanced-manager/commit/5901372523643eef5a605256662c8e1f0a9f2263)), closes [#1956](https://github.com/ReVanced/revanced-manager/issues/1956)
* improve InstalledAppsScreen caching/perf ([#2963](https://github.com/ReVanced/revanced-manager/issues/2963)) ([323d217](https://github.com/ReVanced/revanced-manager/commit/323d2170efa0e3f2c8d2245ff08a2e92c52cb9d7))
* improve keystore UI and UX ([#52](https://github.com/ReVanced/revanced-manager/issues/52)) ([49b4bbb](https://github.com/ReVanced/revanced-manager/commit/49b4bbbf0ba84b006a1694ca95662cf224a84b0f))
* Improve patch bundle screen ([#2070](https://github.com/ReVanced/revanced-manager/issues/2070)) ([a907528](https://github.com/ReVanced/revanced-manager/commit/a907528a2096d8de9778efa8f85e0cdc1d7c2b80))
* improve patcher screen labels ([f4d6c60](https://github.com/ReVanced/revanced-manager/commit/f4d6c60b9ec4c76e8e3fa233f79e062b802860e5))
* improve patcher UI ([#1494](https://github.com/ReVanced/revanced-manager/issues/1494)) ([429b428](https://github.com/ReVanced/revanced-manager/commit/429b428f673dd949289baaf27ed2e08970db83ae))
* Improve root installation ([#2895](https://github.com/ReVanced/revanced-manager/issues/2895)) ([763483b](https://github.com/ReVanced/revanced-manager/commit/763483b65f755201db087eecc6f3b02b65921177))
* Improve Settings order ([#2060](https://github.com/ReVanced/revanced-manager/issues/2060)) ([fa86c1a](https://github.com/ReVanced/revanced-manager/commit/fa86c1a0bb039a86e0649eae30c7b33620f98dbe))
* improve the safeguards ([#2038](https://github.com/ReVanced/revanced-manager/issues/2038)) ([e5b414e](https://github.com/ReVanced/revanced-manager/commit/e5b414e277341967c7b5a5f071ddac1fdfdb8e63))
* Improve trust plugin dialog design ([#2420](https://github.com/ReVanced/revanced-manager/issues/2420)) ([0300da9](https://github.com/ReVanced/revanced-manager/commit/0300da9eac6c0fc29dbbb66622c0d52f4cf68934))
* Improve unsupported patch warnings ([#2066](https://github.com/ReVanced/revanced-manager/issues/2066)) ([3c23d57](https://github.com/ReVanced/revanced-manager/commit/3c23d573bf3998304cad4485016004a871cf1636)), closes [#2052](https://github.com/ReVanced/revanced-manager/issues/2052)
* Improve update screen design ([#2487](https://github.com/ReVanced/revanced-manager/issues/2487)) ([7007010](https://github.com/ReVanced/revanced-manager/commit/7007010f14239452e565736fe7cee7666a682ffb))
* Improve update setting tile titles ([e2623d6](https://github.com/ReVanced/revanced-manager/commit/e2623d6d79b3b87e9ba29016e42f1d645b2f9e19)), closes [#1968](https://github.com/ReVanced/revanced-manager/issues/1968)
* improve UX for failed or missing bundles ([49f8510](https://github.com/ReVanced/revanced-manager/commit/49f851022db72b110c8597aa1c711461c1b01882))
* improved compose stability ([8c40119](https://github.com/ReVanced/revanced-manager/commit/8c40119609c650d1f012d810a4117e84fbe2da52))
* improved dashboard screen ([5c2f9d9](https://github.com/ReVanced/revanced-manager/commit/5c2f9d91a6e803d9b3705e2b3aa84176353ba963))
* in-app updater ([#25](https://github.com/ReVanced/revanced-manager/issues/25)) ([d71a4bf](https://github.com/ReVanced/revanced-manager/commit/d71a4bf3c3457a02578bb8ad3c7615b074f6e3f1))
* **installer:** adjust arrow icon size ([e997255](https://github.com/ReVanced/revanced-manager/commit/e997255cf3c3c5ba777da07752217f99e01dd789))
* **installer:** adjust step icon size and alignment ([cfcabf6](https://github.com/ReVanced/revanced-manager/commit/cfcabf6ef1c212f2627d5d02f4d59981bdc276ca))
* **installer:** apk signing and installation ([da32ff9](https://github.com/ReVanced/revanced-manager/commit/da32ff954a84cf8ff321bbbf71cc5b544d6e6be9))
* **installer:** sign apk in patcher worker ([c003c3c](https://github.com/ReVanced/revanced-manager/commit/c003c3c3245f5a663a0371d4e9df71777ba728b9))
* **Installer:** use BottomAppBar ([#1428](https://github.com/ReVanced/revanced-manager/issues/1428)) ([ceb7623](https://github.com/ReVanced/revanced-manager/commit/ceb762379461443e7e62c37511df1c84a6068bb4))
* integrate revanced patcher ([#22](https://github.com/ReVanced/revanced-manager/issues/22)) ([caeabfc](https://github.com/ReVanced/revanced-manager/commit/caeabfc91b2aa7e3de9e6a31859049d4b2d37388))
* keystore import/export ([#30](https://github.com/ReVanced/revanced-manager/issues/30)) ([fd0ec6c](https://github.com/ReVanced/revanced-manager/commit/fd0ec6c6a7fc8488db859056a95ebe0455e2843b))
* **koin:** use the android logger ([f30333e](https://github.com/ReVanced/revanced-manager/commit/f30333e75338dd2c1ef891723ecb834fc1eb10f7))
* licenses screen ([#47](https://github.com/ReVanced/revanced-manager/issues/47)) ([e3cb056](https://github.com/ReVanced/revanced-manager/commit/e3cb056858ea8917162c1a421a7a8d03ddaa08e2))
* make bundles selectable ([#1237](https://github.com/ReVanced/revanced-manager/issues/1237)) ([a246863](https://github.com/ReVanced/revanced-manager/commit/a246863a89fe8781feaf2a45fcb7ea991d26028f))
* Make patch bundles list scrollable ([#2322](https://github.com/ReVanced/revanced-manager/issues/2322)) ([a5c8a23](https://github.com/ReVanced/revanced-manager/commit/a5c8a23f9ffb36543d45b46bb5f01c5dea56bf90))
* Make patcher screen design more consistent with inspiration ([#2805](https://github.com/ReVanced/revanced-manager/issues/2805)) ([dbb6c01](https://github.com/ReVanced/revanced-manager/commit/dbb6c01e89a5e710185ff4304de0ac9e19bed053))
* Merge app selector screen with apps screen ([37fdd15](https://github.com/ReVanced/revanced-manager/commit/37fdd159409b160f7e348125c6f97fab73bf1ba4))
* migrate to API v5 ([2270f32](https://github.com/ReVanced/revanced-manager/commit/2270f329de25376eb9f0ce196994cc841977ff2a))
* more info for the select from application screen ([#81](https://github.com/ReVanced/revanced-manager/issues/81)) ([3f446f8](https://github.com/ReVanced/revanced-manager/commit/3f446f8236101755a9d51a2aa759f70a0bd429da))
* move plugin api to another repository ([55e7ebf](https://github.com/ReVanced/revanced-manager/commit/55e7ebf4fc5adf8800430ad4aa2579cb6210290d))
* Move safeguards above patcher preference group ([9f7eaa2](https://github.com/ReVanced/revanced-manager/commit/9f7eaa212339f2093050087dc7ab0b8237356939))
* move update to notification card ([#1917](https://github.com/ReVanced/revanced-manager/issues/1917)) ([b80f94b](https://github.com/ReVanced/revanced-manager/commit/b80f94b77bba89e31608cdb302dab0619bf7c5cc))
* **NotificationCard:** rewrite & consistent usage ([#1426](https://github.com/ReVanced/revanced-manager/issues/1426)) ([f8aafa0](https://github.com/ReVanced/revanced-manager/commit/f8aafa050328423b3168a7943f566fce58100cb0))
* Open contributor's GitHub profile when clicked ([#2775](https://github.com/ReVanced/revanced-manager/issues/2775)) ([2571cb8](https://github.com/ReVanced/revanced-manager/commit/2571cb8c1108e9c1ed84950f17692c09d66e0556))
* Open the app-specific manage all files permission dialog ([#2148](https://github.com/ReVanced/revanced-manager/issues/2148)) ([a3f31ea](https://github.com/ReVanced/revanced-manager/commit/a3f31ea65788a43ce57d548e8240e5b1fe3005d0))
* Order bundles by number of patches ([bb5d414](https://github.com/ReVanced/revanced-manager/commit/bb5d414abb4f294aa88d795486836a99ade2b388))
* patch bundle sources system ([#24](https://github.com/ReVanced/revanced-manager/issues/24)) ([9675a27](https://github.com/ReVanced/revanced-manager/commit/9675a2777b364e5ede0d44b92eb7e551d4f7b3d6))
* patch options ([#45](https://github.com/ReVanced/revanced-manager/issues/45)) ([8540d30](https://github.com/ReVanced/revanced-manager/commit/8540d301962669e3d79ca345c852f5b01df641a4))
* patch options UI ([#80](https://github.com/ReVanced/revanced-manager/issues/80)) ([0a1acd2](https://github.com/ReVanced/revanced-manager/commit/0a1acd24e3f0d06fde412b8eeecd923d92ee64a9))
* **patch-selector:** default patches selection ([#1272](https://github.com/ReVanced/revanced-manager/issues/1272)) ([a17c2de](https://github.com/ReVanced/revanced-manager/commit/a17c2de228cccb4a0bb0ca7497720011bec131fc))
* **patch-selector:** remove TODO about an unplanned feature ([4924eae](https://github.com/ReVanced/revanced-manager/commit/4924eaef800c429f2a59b8a15fd48fae0292810c))
* **patcher:** Improve installation ([#2185](https://github.com/ReVanced/revanced-manager/issues/2185)) ([3bd4f0d](https://github.com/ReVanced/revanced-manager/commit/3bd4f0d8f3f60d079d4647d42592b10a15f0dae8))
* patches selector screen ([55e871a](https://github.com/ReVanced/revanced-manager/commit/55e871aa7d27885e44ef33faab1bb4ae33e7a460))
* Progressive AlertDialog for adding bundles ([9a01273](https://github.com/ReVanced/revanced-manager/commit/9a01273c43bd6bcdb0cdfd26c5a467cd3193e5d7)), closes [#1992](https://github.com/ReVanced/revanced-manager/issues/1992)
* ProGuard ([d84e6a3](https://github.com/ReVanced/revanced-manager/commit/d84e6a3ffc20d018b2edeb505de20a920785ba5c))
* Purple default theme ([#1601](https://github.com/ReVanced/revanced-manager/issues/1601)) ([0616666](https://github.com/ReVanced/revanced-manager/commit/0616666d5ef9b53bef5fd630b1b1a47088097d37))
* Redesign the patches screen ([#2381](https://github.com/ReVanced/revanced-manager/issues/2381)) ([8dc4e5b](https://github.com/ReVanced/revanced-manager/commit/8dc4e5b89ee4d36263c8b4187650691b68484688))
* remember patch options ([#1449](https://github.com/ReVanced/revanced-manager/issues/1449)) ([90db765](https://github.com/ReVanced/revanced-manager/commit/90db765c9aa014495775a34927904dedf5fef1e3))
* remove dead help icons ([3bb071d](https://github.com/ReVanced/revanced-manager/commit/3bb071d80d319d4943b0d4c3048f232f3eb9f5cf))
* Remove tag from changelog ([d2119d3](https://github.com/ReVanced/revanced-manager/commit/d2119d36430198151140b469192f76f781df6dd3))
* Rename "Patch bundle" to "Patches" ([#2541](https://github.com/ReVanced/revanced-manager/issues/2541)) ([2cdd6d1](https://github.com/ReVanced/revanced-manager/commit/2cdd6d1843f1e49c7c720f8859e11d6a30c0eea6))
* rename debug build to `ReVanced Manager (dev)` ([d3417ad](https://github.com/ReVanced/revanced-manager/commit/d3417adbeba0a8e06d3494a2fd108f735f73632c))
* rename main bundle to `Default` ([e44d3fd](https://github.com/ReVanced/revanced-manager/commit/e44d3fdee444d915e3e8b8143e55f1353980aad2))
* rename package to `app.revanced.manager` ([5ec97f4](https://github.com/ReVanced/revanced-manager/commit/5ec97f4a852a07d0e554bbe1eacc379179ac089e))
* Rename strings ([e127845](https://github.com/ReVanced/revanced-manager/commit/e1278452b9c73479cdfb0eb0703db1552b158633))
* rename ViewModels for consistency ([064a54e](https://github.com/ReVanced/revanced-manager/commit/064a54eaf0675a1cc9d21f3e1071160deb25c201))
* Reorder Import & Export settings ([#2403](https://github.com/ReVanced/revanced-manager/issues/2403)) ([2697077](https://github.com/ReVanced/revanced-manager/commit/2697077fc88bb795027303558c9d52448a4daded))
* Revamp UI and improve UX ([2d42197](https://github.com/ReVanced/revanced-manager/commit/2d4219701248ee70fd42d93755fee0a63b75e5db))
* ReVanced theme colors ([59b894d](https://github.com/ReVanced/revanced-manager/commit/59b894dce4b99c51151a4cccd03a998ceec31778))
* revert to blue theme colors ([5f4c958](https://github.com/ReVanced/revanced-manager/commit/5f4c9584a94a1edd1eeaa0b9ecfcd9b281b7cccc))
* root installation ([#1243](https://github.com/ReVanced/revanced-manager/issues/1243)) ([62e934c](https://github.com/ReVanced/revanced-manager/commit/62e934c4032096bed36201510fc55304ba48de68))
* save patch options and selected patches in bundle ([#50](https://github.com/ReVanced/revanced-manager/issues/50)) ([23162f6](https://github.com/ReVanced/revanced-manager/commit/23162f6233fa6a176514b35feff731f8f28b4d4b))
* save patch selection using room db ([#38](https://github.com/ReVanced/revanced-manager/issues/38)) ([1efccda](https://github.com/ReVanced/revanced-manager/commit/1efccda3f55d964fae3bee9ee1f0bd260bb1cc74))
* Screen slide transition ([#2396](https://github.com/ReVanced/revanced-manager/issues/2396)) ([2de16e1](https://github.com/ReVanced/revanced-manager/commit/2de16e18e8ba5e84149b377f225693ea35fa2385))
* Scrollbars ([#1479](https://github.com/ReVanced/revanced-manager/issues/1479)) ([b5558ea](https://github.com/ReVanced/revanced-manager/commit/b5558ea3ffef40f96b271f8dfe3a5cf95328781e))
* Select bundle type before adding bundle ([#1490](https://github.com/ReVanced/revanced-manager/issues/1490)) ([88e860c](https://github.com/ReVanced/revanced-manager/commit/88e860cf0132aed23a3cfd3d9d12e472aa895718))
* selected app info page ([#1395](https://github.com/ReVanced/revanced-manager/issues/1395)) ([b69a369](https://github.com/ReVanced/revanced-manager/commit/b69a369d4e304c8a4c8a8db052309b485171e353))
* Set app ownership when installing apps ([#2558](https://github.com/ReVanced/revanced-manager/issues/2558)) ([7c410fe](https://github.com/ReVanced/revanced-manager/commit/7c410fef4512087657e3978d5be049c422b25456))
* settings migration (compose) ([#1309](https://github.com/ReVanced/revanced-manager/issues/1309)) ([bf1d628](https://github.com/ReVanced/revanced-manager/commit/bf1d628944cb5a439d0bda7c49d820a5fa7576b3))
* settings screen ([b7d53cf](https://github.com/ReVanced/revanced-manager/commit/b7d53cfca84d7239bed9189e265a03fd44dc2e45))
* **settings screen:** add battery optimization notification ([5754864](https://github.com/ReVanced/revanced-manager/commit/57548641e7ecd06decfc926cb860674ce7443d7a))
* **settings screen:** match typography from figma ([948a6d1](https://github.com/ReVanced/revanced-manager/commit/948a6d14404e067907c9e84576cfeba76134aaf6))
* **settings:** move experimental patches option to advanced ([805d440](https://github.com/ReVanced/revanced-manager/commit/805d440450d821a26d3ef90a4f97cd796635057d))
* **Settings:** use SettingsListItem consistently and overall improvements ([#1427](https://github.com/ReVanced/revanced-manager/issues/1427)) ([5e35893](https://github.com/ReVanced/revanced-manager/commit/5e35893883fa109d74b028478e60b51f97a2e12d))
* show installed app in version selector ([1ab1e46](https://github.com/ReVanced/revanced-manager/commit/1ab1e4682ffbfe16c02c438ad833adbfdec58b33))
* Show logger details in patcher screen ([4d354f5](https://github.com/ReVanced/revanced-manager/commit/4d354f5aefecfffac2c85d835be8eb0ce5d37b0f))
* Show manager update dialog ([#2069](https://github.com/ReVanced/revanced-manager/issues/2069)) ([113a74d](https://github.com/ReVanced/revanced-manager/commit/113a74d270c1c222d4d06049b4edda8f27724a20)), closes [#1963](https://github.com/ReVanced/revanced-manager/issues/1963) [#1958](https://github.com/ReVanced/revanced-manager/issues/1958)
* Show patch bundle version used to patch an app ([#2966](https://github.com/ReVanced/revanced-manager/issues/2966)) ([11bd46c](https://github.com/ReVanced/revanced-manager/commit/11bd46ce26d4fbc7f126bee5e254d4f6b5e0cc43))
* Show patches as individual steps in patcher screen ([#2889](https://github.com/ReVanced/revanced-manager/issues/2889)) ([11dd6e4](https://github.com/ReVanced/revanced-manager/commit/11dd6e4064099427a8c9bc6f225a19412e5c70e2))
* Show patches load errors in patches tab and adjust API down notification to work correctly ([5b871b8](https://github.com/ReVanced/revanced-manager/commit/5b871b8cf29d95b91f856a8e6d725fdc96af2337))
* Show persistent error card when patch bundle download fails ([#2965](https://github.com/ReVanced/revanced-manager/issues/2965)) ([9e9b189](https://github.com/ReVanced/revanced-manager/commit/9e9b189b2c5e462a8ddd10f6ca407f185b3d2016))
* show stacktrace in installer ui ([#36](https://github.com/ReVanced/revanced-manager/issues/36)) ([8d53180](https://github.com/ReVanced/revanced-manager/commit/8d53180d86e6e9d9c8a4056a5fde0603f17e3157))
* show toast when no patches are selected ([8aa70d3](https://github.com/ReVanced/revanced-manager/commit/8aa70d350e07aae8b4a22b6bc6fb90c0f6227acd))
* splash screen ([60a5a11](https://github.com/ReVanced/revanced-manager/commit/60a5a11c71634aeda414c2ed85f7706ba3deefe1))
* store patched apps ([#79](https://github.com/ReVanced/revanced-manager/issues/79)) ([b14285b](https://github.com/ReVanced/revanced-manager/commit/b14285b2c83e60376ad42fa6ea508257cd04d47d))
* switch to androidx.navigation ([#2362](https://github.com/ReVanced/revanced-manager/issues/2362)) ([7438f45](https://github.com/ReVanced/revanced-manager/commit/7438f45903ec6ed3436a895d4c32d34d41b00010))
* switch to Preferences DataStore ([#60](https://github.com/ReVanced/revanced-manager/issues/60)) ([1852799](https://github.com/ReVanced/revanced-manager/commit/18527999b5f8752faf36c145276d51e2e095c8ee))
* switch to revanced api v4 ([7e858a2](https://github.com/ReVanced/revanced-manager/commit/7e858a244cc4038bdb029c4418278700f6a6490f))
* switch to the new api ([#75](https://github.com/ReVanced/revanced-manager/issues/75)) ([a55160e](https://github.com/ReVanced/revanced-manager/commit/a55160e7c619ec5541de72fa80f079c9bc94d2d5))
* Toggle to use pre-release versions of ReVanced Manager ([#2773](https://github.com/ReVanced/revanced-manager/issues/2773)) ([d758964](https://github.com/ReVanced/revanced-manager/commit/d7589647426b3d3438161a2f0b59bf4f154ac34b))
* Toggle to use pre-release versions of ReVanced Patches ([08cec67](https://github.com/ReVanced/revanced-manager/commit/08cec674bbbe5297090ac5ee6039569975fbe9e7))
* TopAppBar scroll behavior ([#2397](https://github.com/ReVanced/revanced-manager/issues/2397)) ([dc51d61](https://github.com/ReVanced/revanced-manager/commit/dc51d6134dae0fdc415f66e2716c6bffa35dfdb5))
* Update AAPT2 to built-tools v35. ([1ba11b3](https://github.com/ReVanced/revanced-manager/commit/1ba11b30218be263a56f6512b968f5e3dded9daf))
* **Update Screen:** changelogs & handle states ([#1464](https://github.com/ReVanced/revanced-manager/issues/1464)) ([3af26e7](https://github.com/ReVanced/revanced-manager/commit/3af26e706571339a3c69688098a51616549c58a8))
* **update screen:** complete main update screen ([553af83](https://github.com/ReVanced/revanced-manager/commit/553af831393d7276088ceb0b0a854ec654f72def))
* Update to Patcher v22 ([#2939](https://github.com/ReVanced/revanced-manager/issues/2939)) ([8667051](https://github.com/ReVanced/revanced-manager/commit/8667051283f934a32ac7b7cc76178397dc45a0e6))
* updater changelogs ([#48](https://github.com/ReVanced/revanced-manager/issues/48)) ([6dbcd62](https://github.com/ReVanced/revanced-manager/commit/6dbcd6293e94d8d20cccc401b0edeb1d7047553e))
* updater UI and code improvements ([#1597](https://github.com/ReVanced/revanced-manager/issues/1597)) ([a12cae7](https://github.com/ReVanced/revanced-manager/commit/a12cae72998d85138dcf29c0e5d430359e338d5e))
* Use "Debug" and "Debug signed" for build names respectively ([5133f02](https://github.com/ReVanced/revanced-manager/commit/5133f02ad61b85af28608c7180b7a2accb4811ab))
* Use correct casing in module description ([59b4c0b](https://github.com/ReVanced/revanced-manager/commit/59b4c0b2d2e426dfe66b5a01d219b57bb0df5b8b))
* Use patch first flow ([535694e](https://github.com/ReVanced/revanced-manager/commit/535694e38d02a2404605377a3eb4798dad7a3b2c))
* Use patch selector screen in patches tab ([15b43bf](https://github.com/ReVanced/revanced-manager/commit/15b43bfe815db57e69d15e0fb75d3cb41303932b))
* use revanced api for changelogs ([686eb40](https://github.com/ReVanced/revanced-manager/commit/686eb40cb0f8b8d785732dd2bc82d17b5a4fd042))
* Use sectioned list for patches selector screen ([8f05023](https://github.com/ReVanced/revanced-manager/commit/8f05023105ba6bfcfef1b3dfa7e6a8ba46daa27b))
* Use simpler strings ([83d33e8](https://github.com/ReVanced/revanced-manager/commit/83d33e87e3f89cb3efce63dcabcde6478f69b8e7))
* View bundle patches ([#2065](https://github.com/ReVanced/revanced-manager/issues/2065)) ([089f200](https://github.com/ReVanced/revanced-manager/commit/089f200fe6ff59020a87883a47ef20a0c4c08565))


### Reverts

* downgrade Kotlin to 1.8.21 ([fc90bbc](https://github.com/ReVanced/revanced-manager/commit/fc90bbc27ce765e0b55bb5ac9132e58f46aee9aa))


### BREAKING CHANGES

* bump major version to 2.0.0

# app [2.0.0-dev.1](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.38...v2.0.0-dev.1) (2026-03-14)


* feat!: Bump major version ([4f6197c](https://github.com/ReVanced/revanced-manager/commit/4f6197cf7dbd80fb554c12329b994ccd8383dee5))


### BREAKING CHANGES

* bump major version to 2.0.0

# app [1.26.0-dev.38](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.37...v1.26.0-dev.38) (2026-03-14)


### Features

* Downloader source system ([#3007](https://github.com/ReVanced/revanced-manager/issues/3007)) ([3e0967e](https://github.com/ReVanced/revanced-manager/commit/3e0967e7c2a1e23af7e3f23eed01b3cb4180b27a))

# app [1.26.0-dev.37](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.36...v1.26.0-dev.37) (2026-03-14)


### Bug Fixes

* Make app source dialog string more accurate ([c8b429f](https://github.com/ReVanced/revanced-manager/commit/c8b429fa4741a28b9c29144939036d6fa8633cb4))

# app [1.26.0-dev.36](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.35...v1.26.0-dev.36) (2026-03-14)


### Bug Fixes

* Bottom sheet on patches selector glitched when going to full screen sheet ([aa153a7](https://github.com/ReVanced/revanced-manager/commit/aa153a74d596c19d2844cb2fe72b5694d6a5b510))
* Detect downloaded APKs when patches support any version ([#2967](https://github.com/ReVanced/revanced-manager/issues/2967)) ([65e84e2](https://github.com/ReVanced/revanced-manager/commit/65e84e2944968a312f34d66d1a40c0cc9d3ef473))
* Downgrade AGP to fix build issues ([c7e56c4](https://github.com/ReVanced/revanced-manager/commit/c7e56c4700a6566a010ef5aaf8ba7efd740dc9ce))
* Import AndroidX WindowInsets ([af2683d](https://github.com/ReVanced/revanced-manager/commit/af2683d91df375e0c4ff3ab75ad696f18f69ccf6))
* Make transitions in/out duration the same ([cd24d59](https://github.com/ReVanced/revanced-manager/commit/cd24d59b19d8b662af9e662ac48b4c13071e2284))
* Merge doppelgirl design decision to public ([1277315](https://github.com/ReVanced/revanced-manager/commit/12773154d6d73d90e9447ef4c0f991575f4840a9))
* Patcher FAB elevation being wrong on BAB component ([30ecf62](https://github.com/ReVanced/revanced-manager/commit/30ecf62d356df41bcd6e2b167ee7262ce6655e20))
* Remove redundant patch fab on initial tab screen ([c925078](https://github.com/ReVanced/revanced-manager/commit/c925078a84adcf371a999fdb9ed2d886fbad4507))
* SearchBar padding in patches screen ([54d59c3](https://github.com/ReVanced/revanced-manager/commit/54d59c36fec7958ae60e35f40b9f0e821ba941c4))
* Show previously downloaded APKs in source selector dialog ([#2964](https://github.com/ReVanced/revanced-manager/issues/2964)) ([b28f0a8](https://github.com/ReVanced/revanced-manager/commit/b28f0a84f367eafd9ac01c74aefcbbe9395ee4ba))


### Features

* Add UI nudges to note about pitfalls ([9cf2bd6](https://github.com/ReVanced/revanced-manager/commit/9cf2bd6603179c0ea24df64849ed023ed69f2795))
* Export more info in logs ([#2957](https://github.com/ReVanced/revanced-manager/issues/2957)) ([69abbdc](https://github.com/ReVanced/revanced-manager/commit/69abbdc48adf8e92e7b32167fcf1674c2079056f))
* Merge app selector screen with apps screen ([37fdd15](https://github.com/ReVanced/revanced-manager/commit/37fdd159409b160f7e348125c6f97fab73bf1ba4))
* Revamp UI and improve UX ([2d42197](https://github.com/ReVanced/revanced-manager/commit/2d4219701248ee70fd42d93755fee0a63b75e5db))
* Show logger details in patcher screen ([4d354f5](https://github.com/ReVanced/revanced-manager/commit/4d354f5aefecfffac2c85d835be8eb0ce5d37b0f))
* Show patches load errors in patches tab and adjust API down notification to work correctly ([5b871b8](https://github.com/ReVanced/revanced-manager/commit/5b871b8cf29d95b91f856a8e6d725fdc96af2337))
* Show persistent error card when patch bundle download fails ([#2965](https://github.com/ReVanced/revanced-manager/issues/2965)) ([9e9b189](https://github.com/ReVanced/revanced-manager/commit/9e9b189b2c5e462a8ddd10f6ca407f185b3d2016))
* Use patch first flow ([535694e](https://github.com/ReVanced/revanced-manager/commit/535694e38d02a2404605377a3eb4798dad7a3b2c))
* Use patch selector screen in patches tab ([15b43bf](https://github.com/ReVanced/revanced-manager/commit/15b43bfe815db57e69d15e0fb75d3cb41303932b))
* Use sectioned list for patches selector screen ([8f05023](https://github.com/ReVanced/revanced-manager/commit/8f05023105ba6bfcfef1b3dfa7e6a8ba46daa27b))

# app [1.26.0-dev.35](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.34...v1.26.0-dev.35) (2026-03-12)


### Features

* Add support for writing downloader UI with fragments ([#2998](https://github.com/ReVanced/revanced-manager/issues/2998)) ([7471710](https://github.com/ReVanced/revanced-manager/commit/7471710f287b4febb9546a7d7cd59d654b2754e9))

# app [1.26.0-dev.34](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.33...v1.26.0-dev.34) (2026-03-10)


### Features

* Improve root installation ([#2895](https://github.com/ReVanced/revanced-manager/issues/2895)) ([763483b](https://github.com/ReVanced/revanced-manager/commit/763483b65f755201db087eecc6f3b02b65921177))

# app [1.26.0-dev.33](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.32...v1.26.0-dev.33) (2026-03-10)


### Bug Fixes

* Adjust ReVanced icons ([#2890](https://github.com/ReVanced/revanced-manager/issues/2890)) ([bc2a2cb](https://github.com/ReVanced/revanced-manager/commit/bc2a2cb3976234c8a74db93a593e103d77d22a07))

# app [1.26.0-dev.32](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.31...v1.26.0-dev.32) (2026-03-08)


### Features

* migrate to API v5 ([2270f32](https://github.com/ReVanced/revanced-manager/commit/2270f329de25376eb9f0ce196994cc841977ff2a))

# app [1.26.0-dev.31](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.30...v1.26.0-dev.31) (2026-03-04)


### Features

* Don't mark all announcements as read on first launch, and set the correct default tags ([398ca00](https://github.com/ReVanced/revanced-manager/commit/398ca006b637048e6280edaf9685800f7638e6ba))

# app [1.26.0-dev.30](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.29...v1.26.0-dev.30) (2026-03-02)


### Features

* Update AAPT2 to built-tools v35. ([1ba11b3](https://github.com/ReVanced/revanced-manager/commit/1ba11b30218be263a56f6512b968f5e3dded9daf))

# app [1.26.0-dev.29](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.28...v1.26.0-dev.29) (2026-02-28)


### Bug Fixes

* Exclude desktop AAPT and disable R8 optimizations ([6ce5b67](https://github.com/ReVanced/revanced-manager/commit/6ce5b672feb677eccafffb6a04bdf5513f6d62fa))
* unexclude other destabilizers ([2c3d436](https://github.com/ReVanced/revanced-manager/commit/2c3d436b258f100feea0b9864b7131ae2c5bda79))

# app [1.26.0-dev.28](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.27...v1.26.0-dev.28) (2026-02-28)


### Features

* Add patch selection filters ([#2956](https://github.com/ReVanced/revanced-manager/issues/2956)) ([0be493d](https://github.com/ReVanced/revanced-manager/commit/0be493da662ed2b46d4b8616942357eb6a111d17))

# app [1.26.0-dev.27](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.26...v1.26.0-dev.27) (2026-02-28)


### Features

* Show patch bundle version used to patch an app ([#2966](https://github.com/ReVanced/revanced-manager/issues/2966)) ([11bd46c](https://github.com/ReVanced/revanced-manager/commit/11bd46ce26d4fbc7f126bee5e254d4f6b5e0cc43))

# app [1.26.0-dev.26](https://github.com/ReVanced/revanced-manager/comp
Download .txt
gitextract_izqmhs7i/

├── .github/
│   ├── ISSUE_TEMPLATE/
│   │   ├── bug_report.yml
│   │   ├── config.yml
│   │   └── feature_request.yml
│   ├── config.yaml
│   └── workflows/
│       ├── build_pull_request.yml
│       ├── open_pull_request.yml
│       ├── pull_strings.yml
│       ├── push_strings.yml
│       ├── release.yml
│       └── update_documentation.yml
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── adsfund.json
├── api/
│   ├── .releaserc
│   ├── CHANGELOG.md
│   ├── api/
│   │   └── api.api
│   ├── build.gradle.kts
│   ├── consumer-rules.pro
│   ├── gradle.properties
│   ├── package.json
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── aidl/
│           │   └── app/
│           │       └── revanced/
│           │           └── manager/
│           │               └── downloader/
│           │                   └── webview/
│           │                       ├── IWebView.aidl
│           │                       └── IWebViewEvents.aidl
│           ├── kotlin/
│           │   └── app/
│           │       └── revanced/
│           │           └── manager/
│           │               └── downloader/
│           │                   ├── Constants.kt
│           │                   ├── Downloader.kt
│           │                   ├── Extensions.kt
│           │                   ├── Parcelables.kt
│           │                   └── webview/
│           │                       ├── API.kt
│           │                       └── WebViewFragment.kt
│           └── res/
│               └── layout/
│                   └── webview_fragment.xml
├── app/
│   ├── .gitignore
│   ├── .releaserc
│   ├── CHANGELOG.md
│   ├── build.gradle.kts
│   ├── gradle.properties
│   ├── package.json
│   ├── schemas/
│   │   └── app.revanced.manager.data.room.AppDatabase/
│   │       ├── 1.json
│   │       ├── 2.json
│   │       └── 3.json
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── aidl/
│           │   └── app/
│           │       └── revanced/
│           │           └── manager/
│           │               ├── IRootSystemService.aidl
│           │               └── patcher/
│           │                   ├── ProgressEventParcel.aidl
│           │                   └── runtime/
│           │                       └── process/
│           │                           ├── IPatcherEvents.aidl
│           │                           ├── IPatcherProcess.aidl
│           │                           └── Parameters.aidl
│           ├── assets/
│           │   └── root/
│           │       ├── module.prop
│           │       └── service.sh
│           ├── cpp/
│           │   ├── CMakeLists.txt
│           │   └── prop_override.cpp
│           ├── java/
│           │   └── app/
│           │       └── revanced/
│           │           └── manager/
│           │               ├── DownloaderActivity.kt
│           │               ├── MainActivity.kt
│           │               ├── ManagerApplication.kt
│           │               ├── ManagerFileProvider.kt
│           │               ├── data/
│           │               │   ├── platform/
│           │               │   │   ├── Filesystem.kt
│           │               │   │   └── NetworkInfo.kt
│           │               │   ├── redux/
│           │               │   │   └── Redux.kt
│           │               │   └── room/
│           │               │       ├── AppDatabase.kt
│           │               │       ├── Converters.kt
│           │               │       ├── apps/
│           │               │       │   ├── downloaded/
│           │               │       │   │   ├── DownloadedApp.kt
│           │               │       │   │   └── DownloadedAppDao.kt
│           │               │       │   └── installed/
│           │               │       │       ├── AppliedPatch.kt
│           │               │       │       ├── InstalledApp.kt
│           │               │       │       ├── InstalledAppDao.kt
│           │               │       │       └── InstalledPatchBundle.kt
│           │               │       ├── bundles/
│           │               │       │   ├── PatchBundleDao.kt
│           │               │       │   └── PatchBundleEntity.kt
│           │               │       ├── downloader/
│           │               │       │   ├── DownloaderDao.kt
│           │               │       │   └── DownloaderEntity.kt
│           │               │       ├── options/
│           │               │       │   ├── Option.kt
│           │               │       │   ├── OptionDao.kt
│           │               │       │   └── OptionGroup.kt
│           │               │       ├── selection/
│           │               │       │   ├── PatchSelection.kt
│           │               │       │   ├── SelectedPatch.kt
│           │               │       │   └── SelectionDao.kt
│           │               │       └── sources/
│           │               │           └── Source.kt
│           │               ├── di/
│           │               │   ├── AckpineModule.kt
│           │               │   ├── DatabaseModule.kt
│           │               │   ├── HttpModule.kt
│           │               │   ├── ManagerModule.kt
│           │               │   ├── PreferencesModule.kt
│           │               │   ├── RepositoryModule.kt
│           │               │   ├── RootModule.kt
│           │               │   ├── ServiceModule.kt
│           │               │   ├── ViewModelModule.kt
│           │               │   └── WorkerModule.kt
│           │               ├── domain/
│           │               │   ├── installer/
│           │               │   │   └── RootInstaller.kt
│           │               │   ├── manager/
│           │               │   │   ├── KeystoreManager.kt
│           │               │   │   ├── PreferencesManager.kt
│           │               │   │   ├── SourceManager.kt
│           │               │   │   └── base/
│           │               │   │       └── BasePreferencesManager.kt
│           │               │   ├── repository/
│           │               │   │   ├── AnnouncementRepository.kt
│           │               │   │   ├── DownloadedAppRepository.kt
│           │               │   │   ├── DownloaderRepository.kt
│           │               │   │   ├── InstalledAppRepository.kt
│           │               │   │   ├── ManagerUpdateRepository.kt
│           │               │   │   ├── PatchBundleRepository.kt
│           │               │   │   ├── PatchOptionsRepository.kt
│           │               │   │   └── PatchSelectionRepository.kt
│           │               │   ├── sources/
│           │               │   │   ├── LocalSource.kt
│           │               │   │   ├── RemoteSource.kt
│           │               │   │   └── Source.kt
│           │               │   └── worker/
│           │               │       ├── Worker.kt
│           │               │       └── WorkerRepository.kt
│           │               ├── network/
│           │               │   ├── api/
│           │               │   │   └── ReVancedAPI.kt
│           │               │   ├── downloader/
│           │               │   │   ├── DownloaderPackage.kt
│           │               │   │   ├── LoadedDownloader.kt
│           │               │   │   └── ParceledDownloaderData.kt
│           │               │   ├── dto/
│           │               │   │   ├── ReVancedAnnouncement.kt
│           │               │   │   ├── ReVancedAsset.kt
│           │               │   │   ├── ReVancedContributors.kt
│           │               │   │   └── ReVancedInfo.kt
│           │               │   ├── service/
│           │               │   │   └── HttpService.kt
│           │               │   └── utils/
│           │               │       └── APIResponse.kt
│           │               ├── patcher/
│           │               │   ├── LibraryResolver.kt
│           │               │   ├── PatcherProgress.kt
│           │               │   ├── Session.kt
│           │               │   ├── aapt/
│           │               │   │   └── Aapt.kt
│           │               │   ├── logger/
│           │               │   │   └── Logger.kt
│           │               │   ├── patch/
│           │               │   │   ├── PatchBundle.kt
│           │               │   │   ├── PatchBundleInfo.kt
│           │               │   │   └── PatchInfo.kt
│           │               │   ├── runtime/
│           │               │   │   ├── CoroutineRuntime.kt
│           │               │   │   ├── ProcessRuntime.kt
│           │               │   │   ├── Runtime.kt
│           │               │   │   └── process/
│           │               │   │       ├── Parameters.kt
│           │               │   │       └── PatcherProcess.kt
│           │               │   └── worker/
│           │               │       └── PatcherWorker.kt
│           │               ├── service/
│           │               │   ├── RootService.kt
│           │               │   └── UninstallService.kt
│           │               ├── ui/
│           │               │   ├── component/
│           │               │   │   ├── AlertDialogExtended.kt
│           │               │   │   ├── AppIcon.kt
│           │               │   │   ├── AppInfo.kt
│           │               │   │   ├── AppLabel.kt
│           │               │   │   ├── AppScaffold.kt
│           │               │   │   ├── ArrowButton.kt
│           │               │   │   ├── AvailableUpdateDialog.kt
│           │               │   │   ├── BottomContentBar.kt
│           │               │   │   ├── CheckedFilterChip.kt
│           │               │   │   ├── ColumnWithScrollbar.kt
│           │               │   │   ├── ColumnWithScrollbarEdgeShadow.kt
│           │               │   │   ├── ConfirmDialog.kt
│           │               │   │   ├── ContentSelector.kt
│           │               │   │   ├── EmptyState.kt
│           │               │   │   ├── ExceptionViewerDialog.kt
│           │               │   │   ├── FullscreenDialog.kt
│           │               │   │   ├── GroupHeader.kt
│           │               │   │   ├── InstallerStatusDialog.kt
│           │               │   │   ├── LazyColumnWithScrollbar.kt
│           │               │   │   ├── LazyColumnWithScrollbarEdgeShadow.kt
│           │               │   │   ├── ListSection.kt
│           │               │   │   ├── LoadingIndicator.kt
│           │               │   │   ├── Markdown.kt
│           │               │   │   ├── NotificationCard.kt
│           │               │   │   ├── NumberInputDialog.kt
│           │               │   │   ├── PasswordField.kt
│           │               │   │   ├── PillTabBar.kt
│           │               │   │   ├── SafeguardDialog.kt
│           │               │   │   ├── Scrollbar.kt
│           │               │   │   ├── SearchBar.kt
│           │               │   │   ├── SearchView.kt
│           │               │   │   ├── SegmentedButton.kt
│           │               │   │   ├── ShareSheet.kt
│           │               │   │   ├── TextInputDialog.kt
│           │               │   │   ├── Tooltip.kt
│           │               │   │   ├── bundle/
│           │               │   │   │   ├── BundleItem.kt
│           │               │   │   │   ├── BundlePatchesDialog.kt
│           │               │   │   │   ├── BundleSelector.kt
│           │               │   │   │   └── BundleTopBar.kt
│           │               │   │   ├── haptics/
│           │               │   │   │   ├── HapticCheckbox.kt
│           │               │   │   │   ├── HapticExtendedFloatingActionButton.kt
│           │               │   │   │   ├── HapticFloatingActionButton.kt
│           │               │   │   │   ├── HapticRadioButton.kt
│           │               │   │   │   ├── HapticSwitch.kt
│           │               │   │   │   ├── HapticTab.kt
│           │               │   │   │   └── HapticTriStateCheckbox.kt
│           │               │   │   ├── onboarding/
│           │               │   │   │   ├── OnboardingAppCard.kt
│           │               │   │   │   └── OnboardingAppList.kt
│           │               │   │   ├── patcher/
│           │               │   │   │   ├── InstallPickerDialog.kt
│           │               │   │   │   └── Steps.kt
│           │               │   │   ├── patches/
│           │               │   │   │   ├── ActionItem.kt
│           │               │   │   │   ├── IncompatiblePatchDialog.kt
│           │               │   │   │   ├── IncompatiblePatchesDialog.kt
│           │               │   │   │   ├── OptionFields.kt
│           │               │   │   │   ├── OptionsDialog.kt
│           │               │   │   │   ├── PatchItem.kt
│           │               │   │   │   ├── PatchesFilterBottomSheet.kt
│           │               │   │   │   ├── PatchesListHeader.kt
│           │               │   │   │   ├── PathSelectorDialog.kt
│           │               │   │   │   ├── ScopeDialog.kt
│           │               │   │   │   ├── SelectionWarningDialog.kt
│           │               │   │   │   ├── SourceSectionHeader.kt
│           │               │   │   │   ├── UniversalPatchWarningDialog.kt
│           │               │   │   │   ├── buildBundleSections.kt
│           │               │   │   │   └── buildSectionLayouts.kt
│           │               │   │   ├── scaffold/
│           │               │   │   │   └── BannerScaffold.kt
│           │               │   │   ├── settings/
│           │               │   │   │   ├── BooleanItem.kt
│           │               │   │   │   ├── Changelog.kt
│           │               │   │   │   ├── ExpressiveListIcon.kt
│           │               │   │   │   ├── IntegerItem.kt
│           │               │   │   │   ├── SafeguardBooleanItem.kt
│           │               │   │   │   ├── SettingsListItem.kt
│           │               │   │   │   └── ThemeSelector.kt
│           │               │   │   └── sources/
│           │               │   │       └── ImportSourceDialog.kt
│           │               │   ├── model/
│           │               │   │   ├── InstallerModel.kt
│           │               │   │   ├── PatcherStep.kt
│           │               │   │   ├── SelectedApp.kt
│           │               │   │   └── navigation/
│           │               │   │       └── Nav.kt
│           │               │   ├── screen/
│           │               │   │   ├── AnnouncementScreen.kt
│           │               │   │   ├── AnnouncementsScreen.kt
│           │               │   │   ├── AppSelectorScreen.kt
│           │               │   │   ├── AppliedPatchesDialog.kt
│           │               │   │   ├── BundleInformationScreen.kt
│           │               │   │   ├── BundleListScreen.kt
│           │               │   │   ├── DashboardScreen.kt
│           │               │   │   ├── InstalledAppInfoScreen.kt
│           │               │   │   ├── InstalledAppsScreen.kt
│           │               │   │   ├── OnboardingScreen.kt
│           │               │   │   ├── PatcherScreen.kt
│           │               │   │   ├── PatchesSelectorScreen.kt
│           │               │   │   ├── RequiredOptionsScreen.kt
│           │               │   │   ├── SelectedAppInfoScreen.kt
│           │               │   │   ├── SettingsScreen.kt
│           │               │   │   ├── UpdateScreen.kt
│           │               │   │   ├── onboarding/
│           │               │   │   │   ├── AppsStepContent.kt
│           │               │   │   │   ├── PermissionsStepContent.kt
│           │               │   │   │   └── UpdatesStepContent.kt
│           │               │   │   └── settings/
│           │               │   │       ├── AboutSettingsScreen.kt
│           │               │   │       ├── AdvancedSettingsScreen.kt
│           │               │   │       ├── ContributorSettingsScreen.kt
│           │               │   │       ├── DeveloperSettingsScreen.kt
│           │               │   │       ├── DownloadersInfoScreen.kt
│           │               │   │       ├── DownloadsSettingsScreen.kt
│           │               │   │       ├── GeneralSettingsScreen.kt
│           │               │   │       ├── ImportExportSettingsScreen.kt
│           │               │   │       ├── LicensesSettingsScreen.kt
│           │               │   │       └── update/
│           │               │   │           ├── ChangelogsSettingsScreen.kt
│           │               │   │           └── UpdatesSettingsScreen.kt
│           │               │   ├── theme/
│           │               │   │   ├── Color.kt
│           │               │   │   ├── Theme.kt
│           │               │   │   └── Type.kt
│           │               │   └── viewmodel/
│           │               │       ├── AboutViewModel.kt
│           │               │       ├── AdvancedSettingsViewModel.kt
│           │               │       ├── AnnouncementsViewModel.kt
│           │               │       ├── AppSelectorViewModel.kt
│           │               │       ├── AppliedPatchesViewModel.kt
│           │               │       ├── BundleInformationViewModel.kt
│           │               │       ├── BundleListViewModel.kt
│           │               │       ├── ChangelogsViewModel.kt
│           │               │       ├── ContributorViewModel.kt
│           │               │       ├── DashboardViewModel.kt
│           │               │       ├── DeveloperOptionsViewModel.kt
│           │               │       ├── DownloadsViewModel.kt
│           │               │       ├── GeneralSettingsViewModel.kt
│           │               │       ├── ImportExportViewModel.kt
│           │               │       ├── InstalledAppInfoViewModel.kt
│           │               │       ├── InstalledAppsViewModel.kt
│           │               │       ├── MainViewModel.kt
│           │               │       ├── OnboardingViewModel.kt
│           │               │       ├── PatcherViewModel.kt
│           │               │       ├── PatchesSelectorViewModel.kt
│           │               │       ├── SelectedAppInfoViewModel.kt
│           │               │       ├── UpdateViewModel.kt
│           │               │       └── UpdatesSettingsViewModel.kt
│           │               └── util/
│           │                   ├── Ackpine.kt
│           │                   ├── Constants.kt
│           │                   ├── PM.kt
│           │                   ├── RequestInstallAppsContract.kt
│           │                   ├── RequestManageStorageContract.kt
│           │                   ├── SnapshotStateSet.kt
│           │                   ├── SupportedLocales.kt
│           │                   ├── Util.kt
│           │                   └── saver/
│           │                       ├── NullableSaver.kt
│           │                       ├── PathSaver.kt
│           │                       ├── PersistentCollectionSavers.kt
│           │                       └── SnapshotStateCollectionSavers.kt
│           └── res/
│               ├── drawable/
│               │   ├── ic_launcher_foreground.xml
│               │   ├── ic_launcher_monochrome.xml
│               │   ├── ic_launcher_splash_screen.xml
│               │   ├── ic_logo_ring.xml
│               │   └── ic_notification.xml
│               ├── mipmap-anydpi/
│               │   └── ic_launcher.xml
│               ├── resources.properties
│               ├── values/
│               │   ├── colors.xml
│               │   ├── id.xml
│               │   ├── strings.xml
│               │   └── themes.xml
│               ├── values-af-rZA/
│               │   └── strings.xml
│               ├── values-am-rET/
│               │   └── strings.xml
│               ├── values-ar-rSA/
│               │   └── strings.xml
│               ├── values-as-rIN/
│               │   └── strings.xml
│               ├── values-az-rAZ/
│               │   └── strings.xml
│               ├── values-be-rBY/
│               │   └── strings.xml
│               ├── values-bg-rBG/
│               │   └── strings.xml
│               ├── values-bn-rBD/
│               │   └── strings.xml
│               ├── values-bs-rBA/
│               │   └── strings.xml
│               ├── values-ca-rES/
│               │   └── strings.xml
│               ├── values-cs-rCZ/
│               │   └── strings.xml
│               ├── values-da-rDK/
│               │   └── strings.xml
│               ├── values-de-rDE/
│               │   └── strings.xml
│               ├── values-el-rGR/
│               │   └── strings.xml
│               ├── values-es-rES/
│               │   └── strings.xml
│               ├── values-et-rEE/
│               │   └── strings.xml
│               ├── values-eu-rES/
│               │   └── strings.xml
│               ├── values-fa-rIR/
│               │   └── strings.xml
│               ├── values-fi-rFI/
│               │   └── strings.xml
│               ├── values-fil-rPH/
│               │   └── strings.xml
│               ├── values-fr-rFR/
│               │   └── strings.xml
│               ├── values-ga-rIE/
│               │   └── strings.xml
│               ├── values-gl-rES/
│               │   └── strings.xml
│               ├── values-gu-rIN/
│               │   └── strings.xml
│               ├── values-hi-rIN/
│               │   └── strings.xml
│               ├── values-hr-rHR/
│               │   └── strings.xml
│               ├── values-hu-rHU/
│               │   └── strings.xml
│               ├── values-hy-rAM/
│               │   └── strings.xml
│               ├── values-in-rID/
│               │   └── strings.xml
│               ├── values-is-rIS/
│               │   └── strings.xml
│               ├── values-it-rIT/
│               │   └── strings.xml
│               ├── values-iw-rIL/
│               │   └── strings.xml
│               ├── values-ja-rJP/
│               │   └── strings.xml
│               ├── values-ka-rGE/
│               │   └── strings.xml
│               ├── values-kk-rKZ/
│               │   └── strings.xml
│               ├── values-km-rKH/
│               │   └── strings.xml
│               ├── values-kn-rIN/
│               │   └── strings.xml
│               ├── values-ko-rKR/
│               │   └── strings.xml
│               ├── values-ky-rKG/
│               │   └── strings.xml
│               ├── values-lo-rLA/
│               │   └── strings.xml
│               ├── values-lt-rLT/
│               │   └── strings.xml
│               ├── values-lv-rLV/
│               │   └── strings.xml
│               ├── values-mk-rMK/
│               │   └── strings.xml
│               ├── values-ml-rIN/
│               │   └── strings.xml
│               ├── values-mn-rMN/
│               │   └── strings.xml
│               ├── values-mr-rIN/
│               │   └── strings.xml
│               ├── values-ms-rMY/
│               │   └── strings.xml
│               ├── values-my-rMM/
│               │   └── strings.xml
│               ├── values-nb-rNO/
│               │   └── strings.xml
│               ├── values-ne-rIN/
│               │   └── strings.xml
│               ├── values-nl-rNL/
│               │   └── strings.xml
│               ├── values-or-rIN/
│               │   └── strings.xml
│               ├── values-pa-rIN/
│               │   └── strings.xml
│               ├── values-pl-rPL/
│               │   └── strings.xml
│               ├── values-pt-rBR/
│               │   └── strings.xml
│               ├── values-pt-rPT/
│               │   └── strings.xml
│               ├── values-ro-rRO/
│               │   └── strings.xml
│               ├── values-ru-rRU/
│               │   └── strings.xml
│               ├── values-si-rLK/
│               │   └── strings.xml
│               ├── values-sk-rSK/
│               │   └── strings.xml
│               ├── values-sl-rSI/
│               │   └── strings.xml
│               ├── values-sq-rAL/
│               │   └── strings.xml
│               ├── values-sr-rCS/
│               │   └── strings.xml
│               ├── values-sr-rSP/
│               │   └── strings.xml
│               ├── values-sv-rSE/
│               │   └── strings.xml
│               ├── values-sw-rKE/
│               │   └── strings.xml
│               ├── values-ta-rIN/
│               │   └── strings.xml
│               ├── values-te-rIN/
│               │   └── strings.xml
│               ├── values-th-rTH/
│               │   └── strings.xml
│               ├── values-tr-rTR/
│               │   └── strings.xml
│               ├── values-uk-rUA/
│               │   └── strings.xml
│               ├── values-ur-rIN/
│               │   └── strings.xml
│               ├── values-uz-rUZ/
│               │   └── strings.xml
│               ├── values-vi-rVN/
│               │   └── strings.xml
│               ├── values-zh-rCN/
│               │   └── strings.xml
│               ├── values-zh-rTW/
│               │   └── strings.xml
│               ├── values-zu-rZA/
│               │   └── strings.xml
│               └── xml/
│                   ├── backup_rules.xml
│                   ├── data_extraction_rules.xml
│                   └── file_provider_paths.xml
├── build.gradle.kts
├── crowdin.yml
├── docs/
│   ├── 0_prerequisites.md
│   ├── 1_installation.md
│   ├── 2_1_patching.md
│   ├── 2_2_managing_apps.md
│   ├── 2_3_managing_patches.md
│   ├── 2_4_managing_downloaders.md
│   ├── 2_5_updating.md
│   ├── 2_6_settings.md
│   ├── 2_usage.md
│   ├── 3_troubleshooting.md
│   ├── 4_building.md
│   └── README.md
├── gradle/
│   ├── libs.versions.toml
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── package.json
└── settings.gradle.kts
Download .txt
SYMBOL INDEX (2 symbols across 1 files)

FILE: app/src/main/cpp/prop_override.cpp
  function property_get (line 25) | int property_get(const char *key, char *value, const char *default_value) {
  function GetProperty (line 50) | std::string GetProperty(const std::string &key, const std::string &defau...
Condensed preview — 390 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3,833K chars).
[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.yml",
    "chars": 5915,
    "preview": "name: 🐞 Bug report\ndescription: Report a bug or an issue.\ntitle: 'bug: '\nlabels: ['Bug report']\nbody:\n  - type: markdown"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "chars": 240,
    "preview": "blank_issues_enabled: false\ncontact_links:\n  - name: 🗨 Discussions\n    url: https://github.com/revanced/revanced-suggest"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.yml",
    "chars": 5841,
    "preview": "name: ⭐ Feature request\ndescription: Create a detailed request for a new feature.\ntitle: 'feat: '\nlabels: ['Feature requ"
  },
  {
    "path": ".github/config.yaml",
    "chars": 157,
    "preview": "firstPRMergeComment: >\n  Thank you for contributing to ReVanced. Join us on [Discord](https://revanced.app/discord) to r"
  },
  {
    "path": ".github/workflows/build_pull_request.yml",
    "chars": 834,
    "preview": "name: Build pull request\n\non:\n  workflow_dispatch:\n  pull_request:\n    branches:\n      - dev\n\njobs:\n  release:\n    name:"
  },
  {
    "path": ".github/workflows/open_pull_request.yml",
    "chars": 575,
    "preview": "name: Open a PR to main\n\non:\n  push:\n    branches:\n      - dev\n  workflow_dispatch:\n\nenv:\n  MESSAGE: Merge branch `${{ g"
  },
  {
    "path": ".github/workflows/pull_strings.yml",
    "chars": 1219,
    "preview": "name: Pull strings\n\non:\n  schedule:\n    - cron: \"0 0 * * 0\"\n  workflow_dispatch:\n\njobs:\n  pull:\n    name: Pull strings\n "
  },
  {
    "path": ".github/workflows/push_strings.yml",
    "chars": 558,
    "preview": "name: Push strings\n\non:\n  workflow_dispatch:\n  push:\n    branches:\n      - dev\n    paths:\n      - app/src/main/res/value"
  },
  {
    "path": ".github/workflows/release.yml",
    "chars": 2972,
    "preview": "name: Release\n\non:\n    workflow_dispatch:\n    push:\n        branches:\n            - main\n            - dev\n\njobs:\n    re"
  },
  {
    "path": ".github/workflows/update_documentation.yml",
    "chars": 544,
    "preview": "name: Update documentation\n\non:\n  push:\n    paths:\n      - docs/**\n\njobs:\n  trigger:\n    runs-on: ubuntu-latest\n    name"
  },
  {
    "path": ".gitignore",
    "chars": 2343,
    "preview": "### Java template\n# Compiled class file\n*.class\n\n# Log file\n*.log\n\n# BlueJ files\n*.ctxt\n\n# Mobile Tools for Java (J2ME)\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 5264,
    "preview": "<p align=\"center\">\n  <picture>\n    <source\n      width=\"256px\"\n      media=\"(prefers-color-scheme: dark)\"\n      srcset=\""
  },
  {
    "path": "LICENSE",
    "chars": 35149,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 4890,
    "preview": "<p align=\"center\">\n  <picture>\n    <source\n      width=\"256px\"\n      media=\"(prefers-color-scheme: dark)\"\n      srcset=\""
  },
  {
    "path": "adsfund.json",
    "chars": 247,
    "preview": "{\n  \"info\": \"This is verification file for ads.fund project\",\n  \"project\": {\n    \"name\": \"ReVanced Manager\",\n    \"wallet"
  },
  {
    "path": "api/.releaserc",
    "chars": 830,
    "preview": "{\n  \"branches\": [\n    \"main\",\n    {\n      \"name\": \"dev\",\n      \"prerelease\": true\n    }\n  ],\n  \"plugins\": [\n    [\n      "
  },
  {
    "path": "api/CHANGELOG.md",
    "chars": 2316,
    "preview": "# api 1.0.0 (2026-03-14)\n\n\n### Features\n\n* Add support for writing downloader UI with fragments ([#2998](https://github."
  },
  {
    "path": "api/api/api.api",
    "chars": 8132,
    "preview": "public abstract interface class app/revanced/manager/downloader/BaseDownloadScope : app/revanced/manager/downloader/Scop"
  },
  {
    "path": "api/build.gradle.kts",
    "chars": 3239,
    "preview": "import org.jetbrains.kotlin.gradle.dsl.JvmTarget\n\nplugins {\n    alias(libs.plugins.android.library)\n    alias(libs.plugi"
  },
  {
    "path": "api/consumer-rules.pro",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "api/gradle.properties",
    "chars": 16,
    "preview": "version = 1.0.0\n"
  },
  {
    "path": "api/package.json",
    "chars": 307,
    "preview": "{\n  \"name\": \"api\",\n  \"private\": false,\n  \"devDependencies\": {\n    \"@anolilab/multi-semantic-release\": \"^1.1.10\",\n    \"@s"
  },
  {
    "path": "api/src/main/AndroidManifest.xml",
    "chars": 120,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n</manifest>"
  },
  {
    "path": "api/src/main/aidl/app/revanced/manager/downloader/webview/IWebView.aidl",
    "chars": 224,
    "preview": "// IWebView.aidl\npackage app.revanced.manager.downloader.webview;\n\n@JavaPassthrough(annotation=\"@app.revanced.manager.do"
  },
  {
    "path": "api/src/main/aidl/app/revanced/manager/downloader/webview/IWebViewEvents.aidl",
    "chars": 377,
    "preview": "// IWebViewEvents.aidl\npackage app.revanced.manager.downloader.webview;\n\nimport app.revanced.manager.downloader.webview."
  },
  {
    "path": "api/src/main/kotlin/app/revanced/manager/downloader/Constants.kt",
    "chars": 340,
    "preview": "package app.revanced.manager.downloader\n\n/**\n * The permission ID of the special downloader host permission. Only ReVanc"
  },
  {
    "path": "api/src/main/kotlin/app/revanced/manager/downloader/Downloader.kt",
    "chars": 7281,
    "preview": "package app.revanced.manager.downloader\n\nimport android.content.ComponentName\nimport android.content.Context\nimport andr"
  },
  {
    "path": "api/src/main/kotlin/app/revanced/manager/downloader/Extensions.kt",
    "chars": 1845,
    "preview": "package app.revanced.manager.downloader\n\nimport android.app.Activity\nimport android.app.Service\nimport android.content.I"
  },
  {
    "path": "api/src/main/kotlin/app/revanced/manager/downloader/Parcelables.kt",
    "chars": 1199,
    "preview": "package app.revanced.manager.downloader\n\nimport android.os.Parcelable\nimport kotlinx.parcelize.Parcelize\nimport java.net"
  },
  {
    "path": "api/src/main/kotlin/app/revanced/manager/downloader/webview/API.kt",
    "chars": 5758,
    "preview": "package app.revanced.manager.downloader.webview\n\nimport android.content.Intent\nimport android.os.Bundle\nimport androidx."
  },
  {
    "path": "api/src/main/kotlin/app/revanced/manager/downloader/webview/WebViewFragment.kt",
    "chars": 5946,
    "preview": "package app.revanced.manager.downloader.webview\n\nimport android.annotation.SuppressLint\nimport android.app.Activity\nimpo"
  },
  {
    "path": "api/src/main/res/layout/webview_fragment.xml",
    "chars": 376,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    andr"
  },
  {
    "path": "app/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "app/.releaserc",
    "chars": 1053,
    "preview": "{\n  \"branches\": [\n    \"main\",\n    {\n      \"name\": \"dev\",\n      \"prerelease\": true\n    }\n  ],\n  \"plugins\": [\n    [\n      "
  },
  {
    "path": "app/CHANGELOG.md",
    "chars": 145366,
    "preview": "## app [2.2.3](https://github.com/ReVanced/revanced-manager/compare/v2.2.2...v2.2.3) (2026-03-19)\n\n\n### Bug Fixes\n\n* Dis"
  },
  {
    "path": "app/build.gradle.kts",
    "chars": 9885,
    "preview": "import com.mikepenz.aboutlibraries.plugin.DuplicateMode\nimport com.mikepenz.aboutlibraries.plugin.DuplicateRule\nimport i"
  },
  {
    "path": "app/gradle.properties",
    "chars": 16,
    "preview": "version = 2.2.3\n"
  },
  {
    "path": "app/package.json",
    "chars": 307,
    "preview": "{\n  \"name\": \"app\",\n  \"private\": false,\n  \"devDependencies\": {\n    \"@anolilab/multi-semantic-release\": \"^1.1.10\",\n    \"@s"
  },
  {
    "path": "app/schemas/app.revanced.manager.data.room.AppDatabase/1.json",
    "chars": 12734,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 1,\n    \"identityHash\": \"c0060d66d8afa086f2632c4eb145ffc4\",\n    \"e"
  },
  {
    "path": "app/schemas/app.revanced.manager.data.room.AppDatabase/2.json",
    "chars": 14295,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 2,\n    \"identityHash\": \"d9350f0e779a1bde46227a29884a7865\",\n    \"e"
  },
  {
    "path": "app/schemas/app.revanced.manager.data.room.AppDatabase/3.json",
    "chars": 14764,
    "preview": "{\n  \"formatVersion\": 1,\n  \"database\": {\n    \"version\": 3,\n    \"identityHash\": \"34c25e93a6e1506c3c62e3705a4a0e82\",\n    \"e"
  },
  {
    "path": "app/src/main/AndroidManifest.xml",
    "chars": 4289,
    "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/app/revanced/manager/IRootSystemService.aidl",
    "chars": 182,
    "preview": "// IRootService.aidl\npackage app.revanced.manager;\n\n// Declare any non-default types here with import statements\n\ninterf"
  },
  {
    "path": "app/src/main/aidl/app/revanced/manager/patcher/ProgressEventParcel.aidl",
    "chars": 98,
    "preview": "// ProgressEventParcel.aidl\npackage app.revanced.manager.patcher;\n\nparcelable ProgressEventParcel;"
  },
  {
    "path": "app/src/main/aidl/app/revanced/manager/patcher/runtime/process/IPatcherEvents.aidl",
    "chars": 466,
    "preview": "// IPatcherEvents.aidl\npackage app.revanced.manager.patcher.runtime.process;\n\nimport app.revanced.manager.patcher.Progre"
  },
  {
    "path": "app/src/main/aidl/app/revanced/manager/patcher/runtime/process/IPatcherProcess.aidl",
    "chars": 411,
    "preview": "// IPatcherProcess.aidl\npackage app.revanced.manager.patcher.runtime.process;\n\nimport app.revanced.manager.patcher.runti"
  },
  {
    "path": "app/src/main/aidl/app/revanced/manager/patcher/runtime/process/Parameters.aidl",
    "chars": 96,
    "preview": "// Parameters.aidl\npackage app.revanced.manager.patcher.runtime.process;\n\nparcelable Parameters;"
  },
  {
    "path": "app/src/main/assets/root/module.prop",
    "chars": 160,
    "preview": "id=__PKG_NAME__-ReVanced\nname=__LABEL__ ReVanced\nversion=__VERSION__\nversionCode=0\nauthor=ReVanced\ndescription=Mounts th"
  },
  {
    "path": "app/src/main/assets/root/service.sh",
    "chars": 863,
    "preview": "#!/system/bin/sh\nDIR=${0%/*}\n\npackage_name=\"__PKG_NAME__\"\nversion=\"__VERSION__\"\n\nrm \"$DIR/log\"\n\n{\n\nuntil [ \"$(getprop sy"
  },
  {
    "path": "app/src/main/cpp/CMakeLists.txt",
    "chars": 1832,
    "preview": "\n# For more information about using CMake with Android Studio, read the\n# documentation: https://d.android.com/studio/pr"
  },
  {
    "path": "app/src/main/cpp/prop_override.cpp",
    "chars": 2632,
    "preview": "// Library for overriding Android system properties via environment variables.\n//\n// Usage: LD_PRELOAD=prop_override.so "
  },
  {
    "path": "app/src/main/java/app/revanced/manager/DownloaderActivity.kt",
    "chars": 2050,
    "preview": "package app.revanced.manager\n\nimport android.content.res.Resources\nimport android.os.Bundle\nimport android.view.ViewGrou"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/MainActivity.kt",
    "chars": 17476,
    "preview": "package app.revanced.manager\n\nimport android.os.Bundle\nimport android.os.Parcelable\nimport androidx.activity.compose.set"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ManagerApplication.kt",
    "chars": 4320,
    "preview": "package app.revanced.manager\n\nimport android.app.Activity\nimport android.app.Application\nimport android.os.Bundle\nimport"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ManagerFileProvider.kt",
    "chars": 115,
    "preview": "package app.revanced.manager\n\nimport androidx.core.content.FileProvider\n\nclass ManagerFileProvider : FileProvider()"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/platform/Filesystem.kt",
    "chars": 2043,
    "preview": "package app.revanced.manager.data.platform\n\nimport android.Manifest\nimport android.app.Application\nimport android.conten"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/platform/NetworkInfo.kt",
    "chars": 796,
    "preview": "package app.revanced.manager.data.platform\n\nimport android.app.Application\nimport android.net.ConnectivityManager\nimport"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/redux/Redux.kt",
    "chars": 2513,
    "preview": "package app.revanced.manager.data.redux\n\nimport android.util.Log\nimport app.revanced.manager.util.tag\nimport kotlinx.cor"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/AppDatabase.kt",
    "chars": 2349,
    "preview": "package app.revanced.manager.data.room\n\nimport androidx.room.AutoMigration\nimport androidx.room.Database\nimport androidx"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/Converters.kt",
    "chars": 750,
    "preview": "package app.revanced.manager.data.room\n\nimport androidx.room.TypeConverter\nimport app.revanced.manager.data.room.options"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/apps/downloaded/DownloadedApp.kt",
    "chars": 515,
    "preview": "package app.revanced.manager.data.room.apps.downloaded\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimpo"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/apps/downloaded/DownloadedAppDao.kt",
    "chars": 1261,
    "preview": "package app.revanced.manager.data.room.apps.downloaded\n\nimport androidx.room.Dao\nimport androidx.room.Delete\nimport andr"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/apps/installed/AppliedPatch.kt",
    "chars": 1106,
    "preview": "package app.revanced.manager.data.room.apps.installed\n\nimport android.os.Parcelable\nimport androidx.room.ColumnInfo\nimpo"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/apps/installed/InstalledApp.kt",
    "chars": 666,
    "preview": "package app.revanced.manager.data.room.apps.installed\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimpor"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/apps/installed/InstalledAppDao.kt",
    "chars": 2042,
    "preview": "package app.revanced.manager.data.room.apps.installed\n\nimport androidx.room.Dao\nimport androidx.room.Delete\nimport andro"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/apps/installed/InstalledPatchBundle.kt",
    "chars": 767,
    "preview": "package app.revanced.manager.data.room.apps.installed\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimpor"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/bundles/PatchBundleDao.kt",
    "chars": 928,
    "preview": "package app.revanced.manager.data.room.bundles\n\nimport androidx.room.*\nimport app.revanced.manager.data.room.sources.Sou"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/bundles/PatchBundleEntity.kt",
    "chars": 454,
    "preview": "package app.revanced.manager.data.room.bundles\n\nimport androidx.room.*\nimport app.revanced.manager.data.room.sources.Sou"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/downloader/DownloaderDao.kt",
    "chars": 1016,
    "preview": "package app.revanced.manager.data.room.downloader\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.r"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/downloader/DownloaderEntity.kt",
    "chars": 454,
    "preview": "package app.revanced.manager.data.room.downloader\n\nimport androidx.room.*\nimport app.revanced.manager.data.room.sources."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/options/Option.kt",
    "chars": 4636,
    "preview": "package app.revanced.manager.data.room.options\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport andro"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/options/OptionDao.kt",
    "chars": 1753,
    "preview": "package app.revanced.manager.data.room.options\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.roo"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/options/OptionGroup.kt",
    "chars": 751,
    "preview": "package app.revanced.manager.data.room.options\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport andro"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/selection/PatchSelection.kt",
    "chars": 759,
    "preview": "package app.revanced.manager.data.room.selection\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport and"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/selection/SelectedPatch.kt",
    "chars": 557,
    "preview": "package app.revanced.manager.data.room.selection\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport and"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/selection/SelectionDao.kt",
    "chars": 2529,
    "preview": "package app.revanced.manager.data.room.selection\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/data/room/sources/Source.kt",
    "chars": 924,
    "preview": "package app.revanced.manager.data.room.sources\n\nimport androidx.room.ColumnInfo\nimport io.ktor.http.Url\n\n\nsealed class S"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/AckpineModule.kt",
    "chars": 579,
    "preview": "package app.revanced.manager.di\n\nimport android.content.Context\nimport org.koin.android.ext.koin.androidContext\nimport o"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/DatabaseModule.kt",
    "chars": 433,
    "preview": "package app.revanced.manager.di\n\nimport android.content.Context\nimport androidx.room.Room\nimport app.revanced.manager.da"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/HttpModule.kt",
    "chars": 1905,
    "preview": "package app.revanced.manager.di\n\nimport android.content.Context\nimport app.revanced.manager.BuildConfig\nimport io.ktor.c"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/ManagerModule.kt",
    "chars": 278,
    "preview": "package app.revanced.manager.di\n\nimport app.revanced.manager.domain.manager.KeystoreManager\nimport app.revanced.manager."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/PreferencesModule.kt",
    "chars": 233,
    "preview": "package app.revanced.manager.di\n\nimport app.revanced.manager.domain.manager.PreferencesManager\nimport org.koin.core.modu"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/RepositoryModule.kt",
    "chars": 992,
    "preview": "package app.revanced.manager.di\n\nimport app.revanced.manager.data.platform.Filesystem\nimport app.revanced.manager.data.p"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/RootModule.kt",
    "chars": 218,
    "preview": "package app.revanced.manager.di\n\nimport app.revanced.manager.domain.installer.RootInstaller\nimport org.koin.core.module."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/ServiceModule.kt",
    "chars": 216,
    "preview": "package app.revanced.manager.di\n\nimport app.revanced.manager.network.service.HttpService\nimport org.koin.core.module.dsl"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/ViewModelModule.kt",
    "chars": 1064,
    "preview": "package app.revanced.manager.di\n\nimport app.revanced.manager.ui.viewmodel.*\nimport org.koin.core.module.dsl.*\nimport org"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/di/WorkerModule.kt",
    "chars": 227,
    "preview": "package app.revanced.manager.di\n\nimport app.revanced.manager.patcher.worker.PatcherWorker\nimport org.koin.androidx.workm"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/installer/RootInstaller.kt",
    "chars": 7456,
    "preview": "package app.revanced.manager.domain.installer\n\nimport android.app.Application\nimport android.content.ComponentName\nimpor"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/manager/KeystoreManager.kt",
    "chars": 3034,
    "preview": "package app.revanced.manager.domain.manager\n\nimport android.app.Application\nimport android.content.Context\nimport app.re"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/manager/PreferencesManager.kt",
    "chars": 2199,
    "preview": "package app.revanced.manager.domain.manager\n\nimport android.content.Context\nimport app.revanced.manager.domain.manager.b"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/manager/SourceManager.kt",
    "chars": 12058,
    "preview": "package app.revanced.manager.domain.manager\n\nimport android.app.Application\nimport android.util.Log\nimport androidx.anno"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/manager/base/BasePreferencesManager.kt",
    "chars": 5375,
    "preview": "package app.revanced.manager.domain.manager.base\n\nimport android.content.Context\nimport androidx.compose.runtime.Composa"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/repository/AnnouncementRepository.kt",
    "chars": 790,
    "preview": "package app.revanced.manager.domain.repository\n\nimport app.revanced.manager.network.api.ReVancedAPI\nimport app.revanced."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/repository/DownloadedAppRepository.kt",
    "chars": 6734,
    "preview": "package app.revanced.manager.domain.repository\n\nimport android.app.Application\nimport android.content.Context\nimport and"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/repository/DownloaderRepository.kt",
    "chars": 8126,
    "preview": "package app.revanced.manager.domain.repository\n\nimport android.annotation.SuppressLint\nimport android.app.Application\nim"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/repository/InstalledAppRepository.kt",
    "chars": 2365,
    "preview": "package app.revanced.manager.domain.repository\n\nimport app.revanced.manager.data.room.AppDatabase\nimport app.revanced.ma"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/repository/ManagerUpdateRepository.kt",
    "chars": 659,
    "preview": "package app.revanced.manager.domain.repository\n\nimport app.revanced.manager.network.api.ReVancedAPI\nimport kotlinx.corou"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/repository/PatchBundleRepository.kt",
    "chars": 7740,
    "preview": "package app.revanced.manager.domain.repository\n\nimport android.app.Application\nimport android.content.Context\nimport and"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/repository/PatchOptionsRepository.kt",
    "chars": 3580,
    "preview": "package app.revanced.manager.domain.repository\n\nimport android.util.Log\nimport app.revanced.manager.data.room.AppDatabas"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/repository/PatchSelectionRepository.kt",
    "chars": 2212,
    "preview": "package app.revanced.manager.domain.repository\n\nimport app.revanced.manager.data.room.AppDatabase\nimport app.revanced.ma"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/sources/LocalSource.kt",
    "chars": 868,
    "preview": "package app.revanced.manager.domain.sources\n\nimport app.revanced.manager.data.redux.ActionContext\nimport app.revanced.ma"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/sources/RemoteSource.kt",
    "chars": 3566,
    "preview": "package app.revanced.manager.domain.sources\n\nimport app.revanced.manager.data.redux.ActionContext\nimport app.revanced.ma"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/sources/Source.kt",
    "chars": 1905,
    "preview": "package app.revanced.manager.domain.sources\n\nimport androidx.compose.runtime.Stable\nimport app.revanced.manager.data.red"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/worker/Worker.kt",
    "chars": 265,
    "preview": "package app.revanced.manager.domain.worker\n\nimport android.content.Context\nimport androidx.work.CoroutineWorker\nimport a"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/domain/worker/WorkerRepository.kt",
    "chars": 1344,
    "preview": "package app.revanced.manager.domain.worker\n\nimport android.app.Application\nimport androidx.work.ExistingWorkPolicy\nimpor"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/api/ReVancedAPI.kt",
    "chars": 2366,
    "preview": "package app.revanced.manager.network.api\n\nimport android.util.Log\nimport app.revanced.manager.BuildConfig\nimport app.rev"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/downloader/DownloaderPackage.kt",
    "chars": 263,
    "preview": "package app.revanced.manager.network.downloader\n\nimport android.content.Context\n\ndata class DownloaderPackage(\n    val d"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/downloader/LoadedDownloader.kt",
    "chars": 340,
    "preview": "package app.revanced.manager.network.downloader\n\nimport android.os.Parcelable\nimport app.revanced.manager.downloader.Dow"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/downloader/ParceledDownloaderData.kt",
    "chars": 1538,
    "preview": "package app.revanced.manager.network.downloader\n\nimport android.os.Build\nimport android.os.Bundle\nimport android.os.Parc"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/dto/ReVancedAnnouncement.kt",
    "chars": 654,
    "preview": "package app.revanced.manager.network.dto\n\nimport android.os.Parcelable\nimport kotlin.time.Clock\nimport kotlin.time.Insta"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/dto/ReVancedAsset.kt",
    "chars": 474,
    "preview": "package app.revanced.manager.network.dto\n\nimport kotlinx.datetime.LocalDateTime\nimport kotlinx.serialization.SerialName\n"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/dto/ReVancedContributors.kt",
    "chars": 414,
    "preview": "package app.revanced.manager.network.dto\n\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializa"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/dto/ReVancedInfo.kt",
    "chars": 1111,
    "preview": "package app.revanced.manager.network.dto\n\nimport kotlinx.serialization.SerialName\nimport kotlinx.serialization.Serializa"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/service/HttpService.kt",
    "chars": 3190,
    "preview": "package app.revanced.manager.network.service\n\nimport android.util.Log\nimport app.revanced.manager.network.utils.APIError"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/network/utils/APIResponse.kt",
    "chars": 2296,
    "preview": "@file:Suppress(\"NOTHING_TO_INLINE\")\n\npackage app.revanced.manager.network.utils\n\nimport io.ktor.http.*\n\n/**\n * @author A"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/LibraryResolver.kt",
    "chars": 368,
    "preview": "package app.revanced.manager.patcher\n\nimport android.content.Context\nimport java.io.File\n\nabstract class LibraryResolver"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/PatcherProgress.kt",
    "chars": 2144,
    "preview": "package app.revanced.manager.patcher\n\nimport android.os.Parcelable\nimport app.revanced.manager.patcher.logger.LogLevel\ni"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/Session.kt",
    "chars": 4412,
    "preview": "package app.revanced.manager.patcher\n\nimport app.revanced.library.ApkUtils.applyTo\nimport app.revanced.manager.patcher.S"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/aapt/Aapt.kt",
    "chars": 441,
    "preview": "package app.revanced.manager.patcher.aapt\n\nimport android.content.Context\nimport app.revanced.manager.patcher.LibraryRes"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/logger/Logger.kt",
    "chars": 2418,
    "preview": "package app.revanced.manager.patcher.logger\n\nimport app.revanced.manager.patcher.ProgressEvent\nimport app.revanced.manag"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/patch/PatchBundle.kt",
    "chars": 3504,
    "preview": "package app.revanced.manager.patcher.patch\n\nimport kotlinx.parcelize.IgnoredOnParcel\nimport android.os.Parcelable\nimport"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/patch/PatchBundleInfo.kt",
    "chars": 4720,
    "preview": "package app.revanced.manager.patcher.patch\n\nimport app.revanced.manager.util.PatchSelection\n\n/**\n * A base class for sto"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/patch/PatchInfo.kt",
    "chars": 2717,
    "preview": "package app.revanced.manager.patcher.patch\n\nimport androidx.compose.runtime.Immutable\nimport app.revanced.patcher.patch."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/runtime/CoroutineRuntime.kt",
    "chars": 2765,
    "preview": "package app.revanced.manager.patcher.runtime\n\nimport android.content.Context\nimport app.revanced.manager.patcher.Progres"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/runtime/ProcessRuntime.kt",
    "chars": 7484,
    "preview": "package app.revanced.manager.patcher.runtime\n\nimport android.content.BroadcastReceiver\nimport android.content.Context\nim"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/runtime/Runtime.kt",
    "chars": 1522,
    "preview": "package app.revanced.manager.patcher.runtime\n\nimport android.content.Context\nimport app.revanced.manager.data.platform.F"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/runtime/process/Parameters.kt",
    "chars": 646,
    "preview": "package app.revanced.manager.patcher.runtime.process\n\nimport android.os.Parcelable\nimport app.revanced.manager.patcher.p"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/runtime/process/PatcherProcess.kt",
    "chars": 5749,
    "preview": "package app.revanced.manager.patcher.runtime.process\n\nimport android.annotation.SuppressLint\nimport android.app.Activity"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/patcher/worker/PatcherWorker.kt",
    "chars": 11987,
    "preview": "package app.revanced.manager.patcher.worker\n\nimport android.app.Activity\nimport android.app.Notification\nimport android."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/service/RootService.kt",
    "chars": 511,
    "preview": "package app.revanced.manager.service\n\nimport android.content.Intent\nimport android.os.IBinder\nimport app.revanced.manage"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/service/UninstallService.kt",
    "chars": 1716,
    "preview": "package app.revanced.manager.service\n\nimport android.app.Service\nimport android.content.Intent\nimport android.content.pm"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/AlertDialogExtended.kt",
    "chars": 6250,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx.compose"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/AppIcon.kt",
    "chars": 2820,
    "preview": "package app.revanced.manager.ui.component\n\nimport android.content.pm.PackageInfo\nimport androidx.compose.foundation.Imag"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/AppInfo.kt",
    "chars": 1227,
    "preview": "package app.revanced.manager.ui.component\n\nimport android.content.pm.PackageInfo\nimport androidx.compose.foundation.layo"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/AppLabel.kt",
    "chars": 1774,
    "preview": "package app.revanced.manager.ui.component\n\nimport android.content.pm.PackageInfo\nimport androidx.compose.foundation.shap"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/AppScaffold.kt",
    "chars": 4248,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.layout.PaddingValues\nimport androidx.compo"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/ArrowButton.kt",
    "chars": 1669,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.animation.core.animateFloatAsState\nimport androidx.co"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/AvailableUpdateDialog.kt",
    "chars": 3341,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.foundati"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/BottomContentBar.kt",
    "chars": 902,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx.compose"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/CheckedFilterChip.kt",
    "chars": 2437,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.animation.AnimatedVisibility\nimport androidx.compose."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/ColumnWithScrollbar.kt",
    "chars": 1180,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.ScrollState\nimport androidx.compose.founda"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/ColumnWithScrollbarEdgeShadow.kt",
    "chars": 2829,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.ScrollState\nimport androidx.compose.founda"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/ConfirmDialog.kt",
    "chars": 1360,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.material3.AlertDialog\nimport androidx.compose.materia"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/ContentSelector.kt",
    "chars": 857,
    "preview": "package app.revanced.manager.ui.component\n\nimport android.net.Uri\nimport androidx.activity.compose.rememberLauncherForAc"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/EmptyState.kt",
    "chars": 2328,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.annotation.StringRes\nimport androidx.compose.foundation.layou"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/ExceptionViewerDialog.kt",
    "chars": 2950,
    "preview": "package app.revanced.manager.ui.component\n\nimport android.content.Intent\nimport androidx.compose.foundation.horizontalSc"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/FullscreenDialog.kt",
    "chars": 1930,
    "preview": "package app.revanced.manager.ui.component\n\nimport android.view.WindowManager\nimport androidx.compose.foundation.isSystem"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/GroupHeader.kt",
    "chars": 786,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.layout.padding\nimport androidx.compose.mat"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/InstallerStatusDialog.kt",
    "chars": 5887,
    "preview": "package app.revanced.manager.ui.component\n\nimport android.annotation.SuppressLint\nimport android.content.pm.PackageInsta"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/LazyColumnWithScrollbar.kt",
    "chars": 1767,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.gestures.FlingBehavior\nimport androidx.com"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/LazyColumnWithScrollbarEdgeShadow.kt",
    "chars": 4992,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.background\nimport androidx.compose.foundat"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/ListSection.kt",
    "chars": 2405,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx.compose"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/LoadingIndicator.kt",
    "chars": 1265,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.material3.CircularProgressIndicator\nimport androidx.c"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/Markdown.kt",
    "chars": 1074,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.material3.MaterialTheme\nimport androidx.compose.runti"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/NotificationCard.kt",
    "chars": 5322,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx.compose"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/NumberInputDialog.kt",
    "chars": 3772,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.layout.fillMaxWidth\nimport androidx.compos"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/PasswordField.kt",
    "chars": 2180,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.text.KeyboardOptions\nimport androidx.compo"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/PillTabBar.kt",
    "chars": 9547,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.core.view.HapticFeedbackConstantsCompat\nimport androidx.compo"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/SafeguardDialog.kt",
    "chars": 1743,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.annotation.StringRes\nimport androidx.compose.material.icons.I"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/Scrollbar.kt",
    "chars": 2580,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.ScrollState\nimport androidx.compose.founda"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/SearchBar.kt",
    "chars": 2983,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.layout.Box\nimport androidx.compose.foundat"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/SearchView.kt",
    "chars": 3617,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.layout.ColumnScope\nimport androidx.compose"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/SegmentedButton.kt",
    "chars": 2766,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.foundation.ExperimentalFoundationApi\nimport androidx."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/ShareSheet.kt",
    "chars": 10562,
    "preview": "package app.revanced.manager.ui.component\n\nimport android.content.ComponentName\nimport android.content.Context\nimport an"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/TextInputDialog.kt",
    "chars": 1698,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.compose.material3.AlertDialog\nimport androidx.compose.materia"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/Tooltip.kt",
    "chars": 2412,
    "preview": "package app.revanced.manager.ui.component\n\nimport androidx.core.view.HapticFeedbackConstantsCompat\nimport androidx.compo"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/bundle/BundleItem.kt",
    "chars": 3069,
    "preview": "package app.revanced.manager.ui.component.bundle\n\nimport androidx.compose.foundation.ExperimentalFoundationApi\nimport an"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/bundle/BundlePatchesDialog.kt",
    "chars": 15689,
    "preview": "package app.revanced.manager.ui.component.bundle\n\nimport androidx.compose.animation.AnimatedVisibility\nimport androidx.c"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/bundle/BundleSelector.kt",
    "chars": 3026,
    "preview": "package app.revanced.manager.ui.component.bundle\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/bundle/BundleTopBar.kt",
    "chars": 1791,
    "preview": "package app.revanced.manager.ui.component.bundle\n\nimport androidx.compose.foundation.layout.RowScope\nimport androidx.com"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/haptics/HapticCheckbox.kt",
    "chars": 1087,
    "preview": "package app.revanced.manager.ui.component.haptics\n\nimport androidx.core.view.HapticFeedbackConstantsCompat\nimport androi"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/haptics/HapticExtendedFloatingActionButton.kt",
    "chars": 1898,
    "preview": "package app.revanced.manager.ui.component.haptics\n\nimport androidx.core.view.HapticFeedbackConstantsCompat\nimport androi"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/haptics/HapticFloatingActionButton.kt",
    "chars": 1750,
    "preview": "package app.revanced.manager.ui.component.haptics\n\nimport androidx.core.view.HapticFeedbackConstantsCompat\nimport androi"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/haptics/HapticRadioButton.kt",
    "chars": 1255,
    "preview": "package app.revanced.manager.ui.component.haptics\n\nimport androidx.core.view.HapticFeedbackConstantsCompat\nimport androi"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/haptics/HapticSwitch.kt",
    "chars": 1348,
    "preview": "package app.revanced.manager.ui.component.haptics\n\nimport androidx.core.view.HapticFeedbackConstantsCompat\nimport androi"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/haptics/HapticTab.kt",
    "chars": 1313,
    "preview": "package app.revanced.manager.ui.component.haptics\n\nimport androidx.core.view.HapticFeedbackConstantsCompat\nimport androi"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/haptics/HapticTriStateCheckbox.kt",
    "chars": 1131,
    "preview": "package app.revanced.manager.ui.component.haptics\n\nimport androidx.core.view.HapticFeedbackConstantsCompat\nimport androi"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/onboarding/OnboardingAppCard.kt",
    "chars": 8735,
    "preview": "package app.revanced.manager.ui.component.onboarding\r\n\r\nimport android.content.Context\r\nimport android.content.pm.Packag"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/onboarding/OnboardingAppList.kt",
    "chars": 3170,
    "preview": "package app.revanced.manager.ui.component.onboarding\n\nimport android.content.pm.PackageInfo\nimport android.graphics.Bitm"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patcher/InstallPickerDialog.kt",
    "chars": 2439,
    "preview": "package app.revanced.manager.ui.component.patcher\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patcher/Steps.kt",
    "chars": 8940,
    "preview": "package app.revanced.manager.ui.component.patcher\n\nimport androidx.compose.animation.AnimatedVisibility\nimport androidx."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/ActionItem.kt",
    "chars": 933,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.material3.ExperimentalMaterial3ExpressiveApi\n"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/IncompatiblePatchDialog.kt",
    "chars": 1331,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.material.icons.Icons\nimport androidx.compose."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/IncompatiblePatchesDialog.kt",
    "chars": 1244,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.material.icons.Icons\nimport androidx.compose."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/OptionFields.kt",
    "chars": 36262,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport android.app.Application\nimport android.os.Parcelable\nimport an"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/OptionsDialog.kt",
    "chars": 2732,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.foundation.layout.padding\nimport androidx.com"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/PatchItem.kt",
    "chars": 5012,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/PatchesFilterBottomSheet.kt",
    "chars": 10525,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.foundation.layout.Arrangement\nimport androidx"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/PatchesListHeader.kt",
    "chars": 1435,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.material.icons.Icons\nimport androidx.compose."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/PathSelectorDialog.kt",
    "chars": 4962,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.activity.compose.BackHandler\nimport androidx.compose."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/ScopeDialog.kt",
    "chars": 1113,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.material3.AlertDialog\nimport androidx.compose"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/SelectionWarningDialog.kt",
    "chars": 462,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/SourceSectionHeader.kt",
    "chars": 4859,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.animation.core.EaseInOut\nimport androidx.comp"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/UniversalPatchWarningDialog.kt",
    "chars": 473,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport androidx.compose.runtime.Composable\nimport androidx.compose.ui"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/buildBundleSections.kt",
    "chars": 1904,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport app.revanced.manager.patcher.patch.PatchBundleInfo\nimport app."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/patches/buildSectionLayouts.kt",
    "chars": 1134,
    "preview": "package app.revanced.manager.ui.component.patches\n\nimport app.revanced.manager.patcher.patch.PatchBundleInfo\nimport app."
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/scaffold/BannerScaffold.kt",
    "chars": 15886,
    "preview": "package app.revanced.manager.ui.component.scaffold\n\nimport android.os.Build\nimport androidx.compose.foundation.LocalOver"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/settings/BooleanItem.kt",
    "chars": 2729,
    "preview": "package app.revanced.manager.ui.component.settings\n\nimport androidx.annotation.StringRes\nimport androidx.compose.materia"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/settings/Changelog.kt",
    "chars": 2437,
    "preview": "package app.revanced.manager.ui.component.settings\n\nimport androidx.compose.foundation.layout.Arrangement\nimport android"
  },
  {
    "path": "app/src/main/java/app/revanced/manager/ui/component/settings/ExpressiveListIcon.kt",
    "chars": 1465,
    "preview": "package app.revanced.manager.ui.component.settings\n\nimport androidx.compose.foundation.layout.Box\nimport androidx.compos"
  }
]

// ... and 190 more files (download for full content)

About this extraction

This page contains the full source code of the ReVanced/revanced-manager GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 390 files (3.5 MB), approximately 940.4k tokens, and a symbol index with 2 extracted functions, classes, methods, constants, and types. 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.

Copied to clipboard!