├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── feature-request.yml │ ├── question.yml │ └── suggestion.yml ├── config.yml └── workflows │ ├── pull_request.yml │ └── release.yml ├── .gitignore ├── .idea ├── .gitignore ├── discord.xml ├── git_toolbox_prj.xml ├── misc.xml └── vcs.xml ├── .releaserc ├── CHANGELOG.md ├── LICENSE ├── README-template.md ├── README.md ├── api └── revanced-patches.api ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── package.json ├── patches.json ├── search_for_missing_strings.py ├── settings.gradle.kts └── src └── main ├── kotlin └── app │ └── revanced │ ├── meta │ ├── JsonGenerator.kt │ ├── PatchesFileGenerator.kt │ └── ReadmeGenerator.kt │ ├── patches │ ├── music │ │ ├── account │ │ │ ├── component │ │ │ │ ├── MenuComponentPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── MenuEntryFingerprint.kt │ │ │ ├── handle │ │ │ │ ├── HideHandlePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── AccountSwitcherAccessibilityLabelFingerprint.kt │ │ │ │ │ └── NamesInactiveAccountThumbnailSizeFingerprint.kt │ │ │ └── tos │ │ │ │ ├── TermsContainerPatch.kt │ │ │ │ └── fingerprints │ │ │ │ └── TermsOfServiceFingerprint.kt │ │ ├── actionbar │ │ │ └── component │ │ │ │ ├── ActionBarComponentPatch.kt │ │ │ │ └── fingerprints │ │ │ │ ├── ActionBarComponentFingerprint.kt │ │ │ │ ├── LikeDislikeContainerFingerprint.kt │ │ │ │ └── LikeDislikeContainerVisibilityFingerprint.kt │ │ ├── ads │ │ │ ├── general │ │ │ │ ├── GeneralAdsPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── FloatingLayoutFingerprint.kt │ │ │ │ │ └── NotifierShelfFingerprint.kt │ │ │ └── music │ │ │ │ └── MusicAdsPatch.kt │ │ ├── flyoutpanel │ │ │ ├── compactdialog │ │ │ │ ├── CompactDialogPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── DialogSolidFingerprint.kt │ │ │ ├── component │ │ │ │ ├── FlyoutPanelPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── SleepTimerFingerprint.kt │ │ │ ├── playbackspeed │ │ │ │ └── PlaybackSpeedPatch.kt │ │ │ ├── replace │ │ │ │ └── ReplaceDismissQueuePatch.kt │ │ │ └── utils │ │ │ │ └── EnumUtils.kt │ │ ├── general │ │ │ ├── amoled │ │ │ │ └── AmoledPatch.kt │ │ │ ├── autocaptions │ │ │ │ └── AutoCaptionsPatch.kt │ │ │ ├── buttonshelf │ │ │ │ └── HideButtonShelfPatch.kt │ │ │ ├── carouselshelf │ │ │ │ └── HideCarouselShelfPatch.kt │ │ │ ├── castbutton │ │ │ │ ├── HideCastButtonPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── MediaRouteButtonFingerprint.kt │ │ │ │ │ └── PlayerOverlayChipFingerprint.kt │ │ │ ├── categorybar │ │ │ │ ├── CategoryBarPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── ChipCloudFingerprint.kt │ │ │ ├── channelguidelines │ │ │ │ └── HideChannelGuidelinesPatch.kt │ │ │ ├── customfilter │ │ │ │ └── CustomFilterPatch.kt │ │ │ ├── dialog │ │ │ │ └── RemoveViewerDiscretionDialogPatch.kt │ │ │ ├── emojipicker │ │ │ │ └── HideEmojiPickerPatch.kt │ │ │ ├── floatingbutton │ │ │ │ ├── NewPlaylistButtonPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── FloatingButtonFingerprint.kt │ │ │ │ │ └── FloatingButtonParentFingerprint.kt │ │ │ ├── historybutton │ │ │ │ ├── HideHistoryButtonPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── HistoryMenuItemFingerprint.kt │ │ │ │ │ └── HistoryMenuItemOfflineTabFingerprint.kt │ │ │ ├── landscapemode │ │ │ │ ├── LandScapeModePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── TabletIdentifierFingerprint.kt │ │ │ ├── oldstylelibraryshelf │ │ │ │ ├── OldStyleLibraryShelfPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── BrowseIdFingerprint.kt │ │ │ ├── playlistcards │ │ │ │ └── HidePlaylistCardsPatch.kt │ │ │ ├── sampleshelf │ │ │ │ └── HideSampleShelfPatch.kt │ │ │ ├── startpage │ │ │ │ ├── ChangeStartPagePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── ColdStartUpFingerprint.kt │ │ │ ├── taptoupdate │ │ │ │ ├── HideTapToUpdateButtonPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── ContentPillInFingerprint.kt │ │ │ ├── tooltip │ │ │ │ ├── TooltipContentViewPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── TooltipContentViewFingerprint.kt │ │ │ └── voicesearch │ │ │ │ └── ForceHideVoiceSearchButtonPatch.kt │ │ ├── layout │ │ │ ├── branding │ │ │ │ ├── icon │ │ │ │ │ └── CustomBrandingIconPatch.kt │ │ │ │ └── name │ │ │ │ │ └── CustomBrandingNamePatch.kt │ │ │ ├── doubletapbackground │ │ │ │ └── DoubleTapOverlayBackgroundPatch.kt │ │ │ ├── overlayfilter │ │ │ │ ├── OverlayFilterBytecodePatch.kt │ │ │ │ ├── OverlayFilterPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── DesignBottomSheetDialogFingerprint.kt │ │ │ └── playeroverlay │ │ │ │ └── PlayerOverlayFilterPatch.kt │ │ ├── misc │ │ │ ├── backgroundplay │ │ │ │ ├── BackgroundPlayPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── BackgroundPlaybackParentFingerprint.kt │ │ │ │ │ └── KidsMinimizedPlaybackPolicyControllerFingerprint.kt │ │ │ ├── bitrate │ │ │ │ └── BitrateDefaultValuePatch.kt │ │ │ ├── codecs │ │ │ │ └── CodecsUnlockPatch.kt │ │ │ ├── debugging │ │ │ │ └── DebuggingPatch.kt │ │ │ ├── exclusiveaudio │ │ │ │ ├── ExclusiveAudioPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── DataSavingSettingsFragmentFingerprint.kt │ │ │ │ │ ├── MusicBrowserServiceFingerprint.kt │ │ │ │ │ └── PodCastConfigFingerprint.kt │ │ │ ├── minimizedplayback │ │ │ │ ├── MinimizedPlaybackPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── MinimizedPlaybackManagerFingerprint.kt │ │ │ ├── premium │ │ │ │ ├── HideGetPremiumPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── AccountMenuFooterFingerprint.kt │ │ │ │ │ ├── HideGetPremiumFingerprint.kt │ │ │ │ │ ├── MembershipSettingsFingerprint.kt │ │ │ │ │ └── MembershipSettingsParentFingerprint.kt │ │ │ ├── spoofappversion │ │ │ │ └── SpoofAppVersionPatch.kt │ │ │ ├── tastebuilder │ │ │ │ ├── TasteBuilderPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── TasteBuilderConstructorFingerprint.kt │ │ │ │ │ └── TasteBuilderSyntheticFingerprint.kt │ │ │ ├── tracking │ │ │ │ ├── SanitizeUrlQueryPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── ShareLinkFormatterFingerprint.kt │ │ │ └── translations │ │ │ │ └── TranslationsPatch.kt │ │ ├── navigation │ │ │ ├── black │ │ │ │ ├── BlackNavigationBarPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── TabLayoutFingerprint.kt │ │ │ └── component │ │ │ │ ├── NavigationBarComponentPatch.kt │ │ │ │ └── fingerprints │ │ │ │ └── TabLayoutTextFingerprint.kt │ │ ├── player │ │ │ ├── colormatchplayer │ │ │ │ ├── ColorMatchPlayerPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── NewPlayerColorFingerprint.kt │ │ │ ├── minimizedplayer │ │ │ │ ├── MinimizedPlayerPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── MinimizedPlayerFingerprint.kt │ │ │ ├── oldplayerbackground │ │ │ │ ├── OldPlayerBackgroundPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── OldPlayerBackgroundFingerprint.kt │ │ │ ├── oldplayerlayout │ │ │ │ ├── OldPlayerLayoutPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── OldPlayerLayoutFingerprint.kt │ │ │ ├── oldstyleminiplayer │ │ │ │ ├── OldStyleMiniPlayerPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── MiniPlayerParentFingerprint.kt │ │ │ │ │ ├── NextButtonVisibilityFingerprint.kt │ │ │ │ │ └── SwipeToCloseFingerprint.kt │ │ │ ├── repeat │ │ │ │ ├── RememberRepeatPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── RepeatTrackFingerprint.kt │ │ │ ├── replace │ │ │ │ ├── ReplaceCastButtonPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── CastButtonContainerFingerprint.kt │ │ │ ├── share │ │ │ │ ├── ShareButtonPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── RemixGenericButtonFingerprint.kt │ │ │ ├── shuffle │ │ │ │ ├── RememberShufflePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── MusicPlaybackControlsFingerprint.kt │ │ │ │ │ └── ShuffleClassReferenceFingerprint.kt │ │ │ └── zenmode │ │ │ │ ├── ZenModePatch.kt │ │ │ │ └── fingerprints │ │ │ │ └── ZenModeFingerprint.kt │ │ ├── utils │ │ │ ├── fingerprints │ │ │ │ ├── MenuItemFingerprint.kt │ │ │ │ ├── PlayerColorFingerprint.kt │ │ │ │ └── SeekBarConstructorFingerprint.kt │ │ │ ├── fix │ │ │ │ ├── androidauto │ │ │ │ │ ├── AndroidAutoCertificatePatch.kt │ │ │ │ │ └── fingerprints │ │ │ │ │ │ └── CertificateCheckFingerprint.kt │ │ │ │ ├── clientspoof │ │ │ │ │ ├── ClientSpoofPatch.kt │ │ │ │ │ └── fingerprints │ │ │ │ │ │ └── UserAgentHeaderBuilderFingerprint.kt │ │ │ │ └── fileprovider │ │ │ │ │ ├── FileProviderPatch.kt │ │ │ │ │ └── fingerprints │ │ │ │ │ └── FileProviderResolverFingerprint.kt │ │ │ ├── flyoutbutton │ │ │ │ ├── FlyoutButtonContainerPatch.kt │ │ │ │ ├── FlyoutButtonContainerResourcePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── FlyoutPanelLikeButtonFingerprint.kt │ │ │ ├── integrations │ │ │ │ ├── Constants.kt │ │ │ │ ├── IntegrationsPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── InitFingerprint.kt │ │ │ ├── intenthook │ │ │ │ ├── IntentHookPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── GoogleApiActivityFingerprint.kt │ │ │ ├── litho │ │ │ │ ├── LithoFilterPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── LithoFilterFingerprint.kt │ │ │ ├── mainactivity │ │ │ │ ├── MainActivityResolvePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── MainActivityFingerprint.kt │ │ │ ├── microg │ │ │ │ ├── Constants.kt │ │ │ │ ├── MicroGPatch.kt │ │ │ │ ├── MicroGResourcePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── CastContextFetchFingerprint.kt │ │ │ │ │ ├── CastDynamiteModuleFingerprint.kt │ │ │ │ │ ├── CastDynamiteModuleV2Fingerprint.kt │ │ │ │ │ ├── GooglePlayUtilityFingerprint.kt │ │ │ │ │ ├── PrimeFingerprint.kt │ │ │ │ │ └── ServiceCheckFingerprint.kt │ │ │ ├── overridequality │ │ │ │ ├── OverrideQualityHookPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── VideoQualityListFingerprint.kt │ │ │ │ │ ├── VideoQualityPatchFingerprint.kt │ │ │ │ │ └── VideoQualityTextFingerprint.kt │ │ │ ├── overridespeed │ │ │ │ ├── OverrideSpeedHookPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── PlaybackSpeedFingerprint.kt │ │ │ │ │ ├── PlaybackSpeedParentFingerprint.kt │ │ │ │ │ └── PlaybackSpeedPatchFingerprint.kt │ │ │ ├── playerresponse │ │ │ │ ├── PlayerResponsePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── PlaybackStartDescriptorFingerprint.kt │ │ │ ├── playertype │ │ │ │ ├── PlayerTypeHookPatch.kt │ │ │ │ └── fingerprint │ │ │ │ │ └── PlayerTypeFingerprint.kt │ │ │ ├── resourceid │ │ │ │ └── SharedResourceIdPatch.kt │ │ │ ├── returnyoutubedislike │ │ │ │ ├── ReturnYouTubeDislikeBytecodePatch.kt │ │ │ │ ├── ReturnYouTubeDislikePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── DislikeFingerprint.kt │ │ │ │ │ ├── LikeFingerprint.kt │ │ │ │ │ ├── RemoveLikeFingerprint.kt │ │ │ │ │ └── TextComponentFingerprint.kt │ │ │ ├── settings │ │ │ │ ├── CategoryType.kt │ │ │ │ ├── ResourceUtils.kt │ │ │ │ ├── SettingsBytecodePatch.kt │ │ │ │ ├── SettingsPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── PreferenceFingerprint.kt │ │ │ │ │ └── SettingsHeadersFragmentFingerprint.kt │ │ │ ├── sponsorblock │ │ │ │ ├── SponsorBlockBytecodePatch.kt │ │ │ │ ├── SponsorBlockPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── MusicPlaybackControlsTimeBarDrawFingerprint.kt │ │ │ │ │ ├── MusicPlaybackControlsTimeBarOnMeasureFingerprint.kt │ │ │ │ │ └── SeekbarOnDrawFingerprint.kt │ │ │ └── videotype │ │ │ │ ├── VideoTypeHookPatch.kt │ │ │ │ └── fingerprint │ │ │ │ ├── VideoTypeFingerprint.kt │ │ │ │ └── VideoTypeParentFingerprint.kt │ │ └── video │ │ │ ├── customspeed │ │ │ └── CustomPlaybackSpeedPatch.kt │ │ │ ├── information │ │ │ ├── VideoInformationPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── BackgroundPlaybackVideoIdFingerprint.kt │ │ │ │ ├── BackgroundPlaybackVideoIdParentFingerprint.kt │ │ │ │ ├── PlayerControllerSetTimeReferenceFingerprint.kt │ │ │ │ ├── VideoEndFingerprint.kt │ │ │ │ └── VideoLengthFingerprint.kt │ │ │ ├── quality │ │ │ ├── VideoQualityPatch.kt │ │ │ └── fingerprints │ │ │ │ └── UserQualityChangeFingerprint.kt │ │ │ ├── speed │ │ │ ├── PlaybackSpeedPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── PlaybackSpeedBottomSheetFingerprint.kt │ │ │ │ └── PlaybackSpeedBottomSheetParentFingerprint.kt │ │ │ └── videoid │ │ │ ├── VideoIdPatch.kt │ │ │ └── fingerprints │ │ │ ├── PlayerResponseModelStoryboardRendererFingerprint.kt │ │ │ └── VideoIdParentFingerprint.kt │ ├── reddit │ │ ├── ad │ │ │ ├── banner │ │ │ │ └── HideBannerPatch.kt │ │ │ ├── comments │ │ │ │ ├── HideCommentAdsPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── HideCommentAdsFingerprint.kt │ │ │ └── general │ │ │ │ ├── HideAdsPatch.kt │ │ │ │ └── fingerprints │ │ │ │ ├── AdPostFingerprint.kt │ │ │ │ └── NewAdPostFingerprint.kt │ │ ├── layout │ │ │ ├── branding │ │ │ │ ├── name │ │ │ │ │ └── CustomBrandingNamePatch.kt │ │ │ │ └── packagename │ │ │ │ │ └── ChangePackageNamePatch.kt │ │ │ ├── navigation │ │ │ │ ├── NavigationButtonsPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── BottomNavScreenFingerprint.kt │ │ │ ├── premiumicon │ │ │ │ ├── PremiumIconPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── PremiumIconFingerprint.kt │ │ │ ├── recentlyvisited │ │ │ │ ├── RecentlyVisitedShelfPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── CommunityDrawerPresenterFingerprint.kt │ │ │ ├── screenshotpopup │ │ │ │ ├── ScreenshotPopupPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── ScreenshotTakenBannerFingerprint.kt │ │ │ ├── subredditdialog │ │ │ │ ├── RemoveSubRedditDialogPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── FrequentUpdatesSheetScreenFingerprint.kt │ │ │ │ │ └── RedditAlertDialogsFingerprint.kt │ │ │ └── toolbar │ │ │ │ ├── ToolBarButtonPatch.kt │ │ │ │ └── fingerprints │ │ │ │ └── HomePagerScreenFingerprint.kt │ │ ├── misc │ │ │ ├── openlink │ │ │ │ ├── OpenLinksDirectlyPatch.kt │ │ │ │ ├── OpenLinksExternallyPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── ScreenNavigatorFingerprint.kt │ │ │ └── tracking │ │ │ │ └── url │ │ │ │ ├── SanitizeUrlQueryPatch.kt │ │ │ │ └── fingerprints │ │ │ │ └── ShareLinkFormatterFingerprint.kt │ │ └── utils │ │ │ ├── integrations │ │ │ ├── IntegrationsPatch.kt │ │ │ └── fingerprints │ │ │ │ └── InitFingerprint.kt │ │ │ ├── resourceid │ │ │ └── SharedResourceIdPatch.kt │ │ │ └── settings │ │ │ ├── SettingsBytecodePatch.kt │ │ │ ├── SettingsPatch.kt │ │ │ └── fingerprints │ │ │ ├── AcknowledgementsLabelBuilderFingerprint.kt │ │ │ ├── OssLicensesMenuActivityOnCreateFingerprint.kt │ │ │ └── SettingsStatusLoadFingerprint.kt │ ├── shared │ │ ├── fingerprints │ │ │ ├── ads │ │ │ │ ├── LegacyAdsFingerprint.kt │ │ │ │ └── MainstreamAdsFingerprint.kt │ │ │ ├── captions │ │ │ │ ├── StartVideoInformerFingerprint.kt │ │ │ │ └── SubtitleTrackFingerprint.kt │ │ │ ├── customspeed │ │ │ │ ├── SpeedArrayGeneratorFingerprint.kt │ │ │ │ ├── SpeedLimiterFallBackFingerprint.kt │ │ │ │ └── SpeedLimiterFingerprint.kt │ │ │ ├── dialog │ │ │ │ └── CreateDialogFingerprint.kt │ │ │ ├── litho │ │ │ │ ├── EmptyComponentBuilderFingerprint.kt │ │ │ │ └── LithoThemeFingerprint.kt │ │ │ ├── opus │ │ │ │ ├── CodecReferenceFingerprint.kt │ │ │ │ └── CodecSelectorFingerprint.kt │ │ │ ├── tracking │ │ │ │ └── CopyTextEndpointFingerprint.kt │ │ │ └── versionspoof │ │ │ │ ├── ClientInfoFingerprint.kt │ │ │ │ └── ClientInfoParentFingerprint.kt │ │ └── patch │ │ │ ├── ads │ │ │ └── AbstractAdsPatch.kt │ │ │ ├── captions │ │ │ └── AbstractAutoCaptionsPatch.kt │ │ │ ├── customspeed │ │ │ └── AbstractCustomPlaybackSpeedPatch.kt │ │ │ ├── dialog │ │ │ └── AbstractRemoveViewerDiscretionDialogPatch.kt │ │ │ ├── elements │ │ │ └── AbstractRemoveStringsElementsPatch.kt │ │ │ ├── integrations │ │ │ └── AbstractIntegrationsPatch.kt │ │ │ ├── litho │ │ │ ├── ComponentParserPatch.kt │ │ │ └── LithoThemePatch.kt │ │ │ ├── mapping │ │ │ ├── ResourceMappingPatch.kt │ │ │ └── ResourceType.kt │ │ │ ├── microg │ │ │ ├── Constants.kt │ │ │ ├── MicroGBytecodeHelper.kt │ │ │ ├── MicroGManifestHelper.kt │ │ │ └── MicroGResourceHelper.kt │ │ │ ├── opus │ │ │ └── AbstractOpusCodecsPatch.kt │ │ │ ├── overlaybackground │ │ │ └── AbstractOverlayBackgroundPatch.kt │ │ │ ├── packagename │ │ │ └── PackageNamePatch.kt │ │ │ ├── settings │ │ │ └── AbstractSettingsResourcePatch.kt │ │ │ ├── tracking │ │ │ └── AbstractSanitizeUrlQueryPatch.kt │ │ │ ├── transformation │ │ │ └── AbstractTransformInstructionsPatch.kt │ │ │ ├── translations │ │ │ └── AbstractTranslationsPatch.kt │ │ │ ├── versionspoof │ │ │ └── AbstractVersionSpoofPatch.kt │ │ │ └── voicesearch │ │ │ └── AbstractVoiceSearchButtonPatch.kt │ └── youtube │ │ ├── ads │ │ ├── general │ │ │ ├── GeneralAdsBytecodePatch.kt │ │ │ └── GeneralAdsPatch.kt │ │ ├── getpremium │ │ │ ├── HideGetPremiumPatch.kt │ │ │ └── fingerprints │ │ │ │ └── CompactYpcOfferModuleViewFingerprint.kt │ │ └── video │ │ │ └── VideoAdsPatch.kt │ │ ├── alternativethumbnails │ │ └── general │ │ │ ├── AlternativeThumbnailsPatch.kt │ │ │ └── fingerprints │ │ │ ├── MessageDigestImageUrlFingerprint.kt │ │ │ ├── MessageDigestImageUrlParentFingerprint.kt │ │ │ └── cronet │ │ │ ├── RequestFingerprint.kt │ │ │ └── request │ │ │ └── callback │ │ │ ├── OnFailureFingerprint.kt │ │ │ ├── OnResponseStartedFingerprint.kt │ │ │ └── OnSucceededFingerprint.kt │ │ ├── buttomplayer │ │ ├── buttoncontainer │ │ │ └── ButtonContainerPatch.kt │ │ ├── comment │ │ │ ├── CommentComponentPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── ShortsLiveStreamEmojiPickerOnClickListenerFingerprint.kt │ │ │ │ ├── ShortsLiveStreamEmojiPickerOpacityFingerprint.kt │ │ │ │ └── ShortsLiveStreamThanksFingerprint.kt │ │ └── gestures │ │ │ ├── BottomPlayerGesturesPatch.kt │ │ │ └── fingerprints │ │ │ └── BottomPlayerGesturesFingerprint.kt │ │ ├── flyoutpanel │ │ ├── feed │ │ │ ├── FeedFlyoutPanelPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── BottomSheetMenuItemBuilderFingerprint.kt │ │ │ │ └── ContextualMenuItemBuilderFingerprint.kt │ │ ├── oldqualitylayout │ │ │ └── OldQualityLayoutPatch.kt │ │ ├── oldspeedlayout │ │ │ ├── OldSpeedLayoutPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── CustomPlaybackSpeedIntegrationsFingerprint.kt │ │ │ │ └── PlaybackRateBottomSheetClassFingerprint.kt │ │ ├── player │ │ │ ├── ChangeTogglePatch.kt │ │ │ ├── PlayerFlyoutPanelPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── AdditionalSettingsConfigFingerprint.kt │ │ │ │ ├── AdvancedQualityBottomSheetFingerprint.kt │ │ │ │ ├── CaptionsBottomSheetFingerprint.kt │ │ │ │ ├── CinematicLightingFingerprint.kt │ │ │ │ ├── PlaybackLoopInitFingerprint.kt │ │ │ │ ├── PlaybackLoopOnClickListenerFingerprint.kt │ │ │ │ └── StableVolumeFingerprint.kt │ │ └── recyclerview │ │ │ ├── BottomSheetRecyclerViewPatch.kt │ │ │ └── fingerprints │ │ │ └── BottomSheetRecyclerViewBuilderFingerprint.kt │ │ ├── fullscreen │ │ ├── autoplaypreview │ │ │ └── HideAutoplayPreviewPatch.kt │ │ ├── compactcontrolsoverlay │ │ │ └── CompactControlsOverlayPatch.kt │ │ ├── endscreenoverlay │ │ │ ├── HideEndScreenOverlayPatch.kt │ │ │ └── fingerprints │ │ │ │ └── EndScreenResultsParentFingerprint.kt │ │ ├── forcefullscreen │ │ │ ├── ForceFullscreenPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── ClientSettingEndpointFingerprint.kt │ │ │ │ └── VideoPortraitParentFingerprint.kt │ │ ├── fullscreenpanels │ │ │ ├── HideFullscreenPanelsPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── FullscreenEngagementPanelFingerprint.kt │ │ │ │ └── FullscreenViewAdderFingerprint.kt │ │ ├── landscapemode │ │ │ ├── disable │ │ │ │ ├── DisableLandScapeModePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── OrientationParentFingerprint.kt │ │ │ │ │ ├── OrientationPrimaryFingerprint.kt │ │ │ │ │ └── OrientationSecondaryFingerprint.kt │ │ │ └── keep │ │ │ │ ├── KeepLandScapeModePatch.kt │ │ │ │ └── fingerprints │ │ │ │ ├── BroadcastReceiverFingerprint.kt │ │ │ │ └── LandScapeModeConfigFingerprint.kt │ │ └── quickactions │ │ │ └── QuickActionsPatch.kt │ │ ├── general │ │ ├── accountmenu │ │ │ ├── AccountMenuPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── AccountListFingerprint.kt │ │ │ │ ├── AccountListParentFingerprint.kt │ │ │ │ ├── AccountMenuFingerprint.kt │ │ │ │ ├── AccountMenuParentFingerprint.kt │ │ │ │ ├── AccountMenuPatchFingerprint.kt │ │ │ │ └── SetViewGroupMarginFingerprint.kt │ │ ├── autocaptions │ │ │ └── AutoCaptionsPatch.kt │ │ ├── autopopuppanels │ │ │ ├── PlayerPopupPanelsPatch.kt │ │ │ └── fingerprints │ │ │ │ └── EngagementPanelControllerFingerprint.kt │ │ ├── castbutton │ │ │ ├── HideCastButtonPatch.kt │ │ │ └── fingerprints │ │ │ │ └── CastButtonFingerprint.kt │ │ ├── categorybar │ │ │ ├── CategoryBarPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── FilterBarHeightFingerprint.kt │ │ │ │ ├── RelatedChipCloudFingerprint.kt │ │ │ │ └── SearchResultsChipBarFingerprint.kt │ │ ├── channellistsubmenu │ │ │ ├── ChannelListSubMenuPatch.kt │ │ │ └── fingerprints │ │ │ │ └── ChannelListSubMenuFingerprint.kt │ │ ├── channelprofile │ │ │ ├── ChannelProfileComponentsPatch.kt │ │ │ └── fingerprints │ │ │ │ └── DefaultsTabsBarFingerprint.kt │ │ ├── crowdfundingbox │ │ │ ├── CrowdfundingBoxPatch.kt │ │ │ └── fingerprints │ │ │ │ └── CrowdfundingBoxFingerprint.kt │ │ ├── descriptions │ │ │ └── DescriptionComponentsPatch.kt │ │ ├── dialog │ │ │ ├── RemoveViewerDiscretionDialogPatch.kt │ │ │ └── fingerprints │ │ │ │ └── AgeVerifiedFingerprint.kt │ │ ├── floatingmicrophone │ │ │ ├── FloatingMicrophonePatch.kt │ │ │ └── fingerprints │ │ │ │ └── FloatingMicrophoneFingerprint.kt │ │ ├── handle │ │ │ ├── HideHandlePatch.kt │ │ │ └── fingerprints │ │ │ │ ├── AccountSwitcherAccessibilityLabelAlternativeFingerprint.kt │ │ │ │ └── AccountSwitcherAccessibilityLabelFingerprint.kt │ │ ├── headerswitch │ │ │ └── HeaderSwitchPatch.kt │ │ ├── latestvideosbutton │ │ │ ├── LatestVideosButtonPatch.kt │ │ │ └── fingerprints │ │ │ │ └── LatestVideosButtonFingerprint.kt │ │ ├── layout │ │ │ └── LayoutComponentsPatch.kt │ │ ├── loadingscreen │ │ │ ├── GradientLoadingScreenPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── GradientLoadingScreenPrimaryFingerprint.kt │ │ │ │ └── GradientLoadingScreenSecondaryFingerprint.kt │ │ ├── loadmorebutton │ │ │ ├── LoadMoreButtonPatch.kt │ │ │ └── fingerprints │ │ │ │ └── LoadMoreButtonFingerprint.kt │ │ ├── mixplaylists │ │ │ ├── MixPlaylistsPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── ElementParserFingerprint.kt │ │ │ │ └── EmptyFlatBufferFingerprint.kt │ │ ├── rollingnumber │ │ │ └── DisableRollingNumberAnimationPatch.kt │ │ ├── searchterm │ │ │ ├── SearchTermThumbnailPatch.kt │ │ │ └── fingerprints │ │ │ │ └── CreateSearchSuggestionsFingerprint.kt │ │ ├── snackbar │ │ │ ├── ForceSnackbarTheme.kt │ │ │ ├── HideSnackBarPatch.kt │ │ │ └── fingerprints │ │ │ │ └── HideSnackBarFingerprint.kt │ │ ├── songsearch │ │ │ ├── SongSearchPatch.kt │ │ │ └── fingerprints │ │ │ │ └── VoiceSearchConfigFingerprint.kt │ │ ├── startpage │ │ │ ├── ChangeStartPagePatch.kt │ │ │ └── fingerprints │ │ │ │ └── StartActivityFingerprint.kt │ │ ├── suggestions │ │ │ ├── SuggestionsShelfPatch.kt │ │ │ └── fingerprints │ │ │ │ └── BreakingNewsFingerprint.kt │ │ ├── tabletminiplayer │ │ │ ├── TabletMiniPlayerPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── MiniPlayerDimensionsCalculatorFingerprint.kt │ │ │ │ ├── MiniPlayerOverrideFingerprint.kt │ │ │ │ ├── MiniPlayerOverrideNoContextFingerprint.kt │ │ │ │ └── MiniPlayerResponseModelSizeCheckFingerprint.kt │ │ ├── toolbar │ │ │ └── ToolBarButtonPatch.kt │ │ ├── trendingsearches │ │ │ ├── TrendingSearchesPatch.kt │ │ │ └── fingerprints │ │ │ │ └── SearchBarEntryFingerprint.kt │ │ └── widesearchbar │ │ │ ├── WideSearchBarPatch.kt │ │ │ └── fingerprints │ │ │ ├── SetActionBarRingoFingerprint.kt │ │ │ ├── SetWordMarkHeaderFingerprint.kt │ │ │ └── YouActionBarFingerprint.kt │ │ ├── layout │ │ ├── animated │ │ │ ├── ForceHideAnimatedButtonBackgroundPatch.kt │ │ │ └── ForceHideAnimatedLikePatch.kt │ │ ├── branding │ │ │ ├── icon │ │ │ │ └── CustomBrandingIconPatch.kt │ │ │ └── name │ │ │ │ └── CustomBrandingNamePatch.kt │ │ ├── doubletapbackground │ │ │ └── ForceHideDoubleTapOverlayBackgroundPatch.kt │ │ ├── doubletaplength │ │ │ └── DoubleTapLengthPatch.kt │ │ ├── header │ │ │ └── CustomBrandingHeadingPatch.kt │ │ ├── materialyou │ │ │ └── MaterialYouPatch.kt │ │ ├── pipnotification │ │ │ ├── PiPNotificationPatch.kt │ │ │ └── fingerprints │ │ │ │ └── PiPNotificationFingerprint.kt │ │ ├── settings │ │ │ └── ForceHideSettingsPrefsPatch.kt │ │ ├── splashanimation │ │ │ └── AddSplashAnimationPatch.kt │ │ ├── theme │ │ │ ├── GeneralThemePatch.kt │ │ │ └── ThemePatch.kt │ │ ├── tooltip │ │ │ ├── TooltipContentViewPatch.kt │ │ │ └── fingerprints │ │ │ │ └── TooltipContentViewFingerprint.kt │ │ └── voicesearch │ │ │ └── ForceHideVoiceSearchButtonPatch.kt │ │ ├── misc │ │ ├── ambientmode │ │ │ ├── AmbientModeSwitchPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── AmbientModeInFullscreenFingerprint.kt │ │ │ │ ├── PowerSaveModeFingerprint.kt │ │ │ │ ├── PowerSaveModeOneFingerprint.kt │ │ │ │ └── PowerSaveModeTwoFingerprint.kt │ │ ├── codec │ │ │ ├── audio │ │ │ │ └── ForceOpusCodecPatch.kt │ │ │ └── video │ │ │ │ ├── ForceVideoCodecPatch.kt │ │ │ │ └── fingerprints │ │ │ │ ├── VideoPrimaryFingerprint.kt │ │ │ │ ├── VideoPropsFingerprint.kt │ │ │ │ ├── VideoPropsParentFingerprint.kt │ │ │ │ └── VideoSecondaryFingerprint.kt │ │ ├── debugging │ │ │ └── DebuggingPatch.kt │ │ ├── externalbrowser │ │ │ └── ExternalBrowserPatch.kt │ │ ├── language │ │ │ ├── LanguageSelectorPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── GeneralPrefsFingerprint.kt │ │ │ │ └── GeneralPrefsLegacyFingerprint.kt │ │ ├── layoutswitch │ │ │ ├── LayoutSwitchPatch.kt │ │ │ └── fingerprints │ │ │ │ └── GetFormFactorFingerprint.kt │ │ ├── minimizedplayback │ │ │ ├── MinimizedPlaybackPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── KidsMinimizedPlaybackPolicyControllerFingerprint.kt │ │ │ │ ├── MinimizedPlaybackManagerFingerprint.kt │ │ │ │ ├── MinimizedPlaybackSettingsFingerprint.kt │ │ │ │ └── PiPControllerFingerprint.kt │ │ ├── openlinksdirectly │ │ │ ├── OpenLinksDirectlyPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── OpenLinksDirectlyFingerprintPrimary.kt │ │ │ │ └── OpenLinksDirectlyFingerprintSecondary.kt │ │ ├── quic │ │ │ ├── QUICProtocolPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── CronetEngineBuilderFingerprint.kt │ │ │ │ └── ExperimentalCronetEngineBuilderFingerprint.kt │ │ ├── splashanimation │ │ │ ├── NewSplashAnimationPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── WatchWhileActivityWithInFlagsFingerprint.kt │ │ │ │ └── WatchWhileActivityWithOutFlagsFingerprint.kt │ │ ├── spoofappversion │ │ │ └── SpoofAppVersionPatch.kt │ │ ├── spoofdimensions │ │ │ ├── SpoofDeviceDimensionsPatch.kt │ │ │ └── fingerprints │ │ │ │ └── DeviceDimensionsModelToStringFingerprint.kt │ │ ├── tracking │ │ │ ├── SanitizeUrlQueryPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── ShareLinkFormatterFingerprint.kt │ │ │ │ └── SystemShareLinkFormatterFingerprint.kt │ │ ├── translations │ │ │ └── TranslationsPatch.kt │ │ └── updatescreen │ │ │ ├── UpdateScreenPatch.kt │ │ │ └── fingerprints │ │ │ └── AppBlockingCheckResultToStringFingerprint.kt │ │ ├── navigation │ │ ├── label │ │ │ ├── NavigationLabelPatch.kt │ │ │ └── fingerprints │ │ │ │ └── PivotBarSetTextFingerprint.kt │ │ ├── navigationbuttons │ │ │ ├── NavigationBarHookPatch.kt │ │ │ ├── NavigationBarHookResourcePatch.kt │ │ │ ├── NavigationButtonsPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── ActionBarSearchResultsFingerprint.kt │ │ │ │ ├── AddCreateButtonViewFingerprint.kt │ │ │ │ ├── InitializeButtonsFingerprint.kt │ │ │ │ ├── MainActivityOnBackPressedFingerprint.kt │ │ │ │ ├── NavigationBarHookCallbackFingerprint.kt │ │ │ │ ├── NavigationEnumFingerprint.kt │ │ │ │ ├── PivotBarButtonsCreateDrawableViewFingerprint.kt │ │ │ │ ├── PivotBarButtonsCreateResourceViewFingerprint.kt │ │ │ │ ├── PivotBarButtonsViewSetSelectedFingerprint.kt │ │ │ │ └── PivotBarConstructorFingerprint.kt │ │ └── tabletnavbar │ │ │ ├── TabletNavigationBarPatch.kt │ │ │ └── fingerprints │ │ │ ├── PivotBarChangedFingerprint.kt │ │ │ └── PivotBarStyleFingerprint.kt │ │ ├── overlaybutton │ │ ├── alwaysrepeat │ │ │ ├── AlwaysRepeatPatch.kt │ │ │ └── fingerprints │ │ │ │ └── AutoNavInformerFingerprint.kt │ │ ├── download │ │ │ ├── hook │ │ │ │ ├── DownloadButtonHookPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── OfflineVideoEndpointFingerprint.kt │ │ │ │ │ └── PlaylistOfflineDownloadOnClickFingerprint.kt │ │ │ └── pip │ │ │ │ ├── DisablePiPPatch.kt │ │ │ │ └── fingerprints │ │ │ │ └── PiPPlaybackFingerprint.kt │ │ ├── general │ │ │ └── OverlayButtonsPatch.kt │ │ └── whitelist │ │ │ ├── WhitelistPatch.kt │ │ │ └── fingerprints │ │ │ ├── ChannelNameFingerprint.kt │ │ │ ├── PlayerResponseModelFingerprint.kt │ │ │ ├── PrimaryInjectFingerprint.kt │ │ │ └── SecondaryInjectFingerprint.kt │ │ ├── player │ │ ├── autoplaybutton │ │ │ └── HideAutoplayButtonPatch.kt │ │ ├── captionsbutton │ │ │ ├── HideCaptionsButtonPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── LithoSubtitleButtonConfigFingerprint.kt │ │ │ │ └── YouTubeControlsOverlaySubtitleButtonFingerprint.kt │ │ ├── chapters │ │ │ └── ForceHidePlayerChaptersPatch.kt │ │ ├── collapsebutton │ │ │ └── HideCollapseButtonPatch.kt │ │ ├── endscreencards │ │ │ ├── HideEndScreenCardsPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── LayoutCircleFingerprint.kt │ │ │ │ ├── LayoutIconFingerprint.kt │ │ │ │ └── LayoutVideoFingerprint.kt │ │ ├── filmstripoverlay │ │ │ ├── HideFilmstripOverlayPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── FilmStripOverlayConfigFingerprint.kt │ │ │ │ ├── FilmStripOverlayInteractionFingerprint.kt │ │ │ │ ├── FilmStripOverlayParentFingerprint.kt │ │ │ │ ├── FilmStripOverlayPreviewFingerprint.kt │ │ │ │ └── FineScrubbingOverlayFingerprint.kt │ │ ├── fullscreenbutton │ │ │ └── ForceHideFullscreenButtonPatch.kt │ │ ├── hapticfeedback │ │ │ ├── HapticFeedBackPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── MarkerHapticsFingerprint.kt │ │ │ │ ├── ScrubbingHapticsFingerprint.kt │ │ │ │ ├── SeekHapticsFingerprint.kt │ │ │ │ ├── SeekUndoHapticsFingerprint.kt │ │ │ │ └── ZoomHapticsFingerprint.kt │ │ ├── infocards │ │ │ ├── HideInfoCardsPatch.kt │ │ │ └── fingerprints │ │ │ │ └── InfoCardsIncognitoFingerprint.kt │ │ ├── musicbutton │ │ │ ├── HideMusicButtonPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── MusicAppDeeplinkButtonAlternativeFingerprint.kt │ │ │ │ └── MusicAppDeeplinkButtonFingerprint.kt │ │ ├── playerbuttonbg │ │ │ └── ForceHidePlayerButtonBackgroundPatch.kt │ │ ├── playeroverlay │ │ │ └── CustomPlayerOverlayOpacityPatch.kt │ │ ├── previousnextbutton │ │ │ └── HidePreviousNextButtonPatch.kt │ │ ├── seekmessage │ │ │ ├── SeekMessagePatch.kt │ │ │ └── fingerprints │ │ │ │ ├── SeekEduContainerFingerprint.kt │ │ │ │ └── SeekEduUndoOverlayFingerprint.kt │ │ ├── speedoverlay │ │ │ ├── SpeedOverlayPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── RestoreSlideToSeekBehaviorFingerprint.kt │ │ │ │ └── SpeedOverlayFingerprint.kt │ │ ├── suggestactions │ │ │ ├── SuggestedActionsPatch.kt │ │ │ └── fingerprints │ │ │ │ └── SuggestedActionsFingerprint.kt │ │ ├── suggestedvideooverlay │ │ │ ├── SuggestedVideoOverlayPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── CoreContainerBuilderFingerprint.kt │ │ │ │ ├── MainAppAutoNavFingerprint.kt │ │ │ │ ├── MainAppAutoNavParentFingerprint.kt │ │ │ │ └── TouchAreaOnClickListenerFingerprint.kt │ │ └── watermark │ │ │ ├── HideChannelWatermarkPatch.kt │ │ │ └── fingerprints │ │ │ ├── HideWatermarkFingerprint.kt │ │ │ └── HideWatermarkParentFingerprint.kt │ │ ├── seekbar │ │ ├── append │ │ │ └── AppendTimeStampInformationPatch.kt │ │ ├── color │ │ │ ├── SeekbarColorPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── ControlsOverlayStyleFingerprint.kt │ │ │ │ └── ShortsSeekbarColorFingerprint.kt │ │ ├── hide │ │ │ └── HideSeekbarPatch.kt │ │ ├── tapping │ │ │ ├── SeekbarTappingPatch.kt │ │ │ └── fingerprints │ │ │ │ └── SeekbarTappingFingerprint.kt │ │ ├── thumbnailpreview │ │ │ └── NewThumbnailPreviewPatch.kt │ │ └── timestamps │ │ │ ├── HideTimeStampPatch.kt │ │ │ └── fingerprints │ │ │ └── TimeCounterFingerprint.kt │ │ ├── shorts │ │ ├── shortscomponent │ │ │ ├── ShortsComponentPatch.kt │ │ │ ├── ShortsNavigationBarPatch.kt │ │ │ ├── ShortsSubscriptionsButtonPatch.kt │ │ │ ├── ShortsToolBarPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── BottomNavigationBarAlternativeFingerprint.kt │ │ │ │ ├── BottomNavigationBarFingerprint.kt │ │ │ │ ├── RenderBottomNavigationBarFingerprint.kt │ │ │ │ ├── SetPivotBarFingerprint.kt │ │ │ │ ├── ShortsCommentFingerprint.kt │ │ │ │ ├── ShortsCommentLegacyFingerprint.kt │ │ │ │ ├── ShortsDislikeFingerprint.kt │ │ │ │ ├── ShortsInfoPanelFingerprint.kt │ │ │ │ ├── ShortsLikeFingerprint.kt │ │ │ │ ├── ShortsPaidPromotionFingerprint.kt │ │ │ │ ├── ShortsPivotFingerprint.kt │ │ │ │ ├── ShortsPivotLegacyFingerprint.kt │ │ │ │ ├── ShortsRemixFingerprint.kt │ │ │ │ ├── ShortsShareFingerprint.kt │ │ │ │ ├── ShortsShareLegacyFingerprint.kt │ │ │ │ ├── ShortsSubscriptionsFingerprint.kt │ │ │ │ ├── ShortsSubscriptionsTabletFingerprint.kt │ │ │ │ ├── ShortsSubscriptionsTabletParentFingerprint.kt │ │ │ │ └── ToolBarBannerFingerprint.kt │ │ ├── shortsdim │ │ │ └── ForceDisableShortsDimPatch.kt │ │ ├── shortsoverlay │ │ │ └── ShortsOverlayButtonsPatch.kt │ │ └── startupshortsreset │ │ │ ├── DisableShortsOnStartupPatch.kt │ │ │ └── fingerprints │ │ │ └── UserWasInShortsFingerprint.kt │ │ ├── swipe │ │ └── controls │ │ │ ├── SwipeControlsPatch.kt │ │ │ └── fingerprints │ │ │ ├── FullScreenEngagementOverlayFingerprint.kt │ │ │ ├── HDRBrightnessFingerprint.kt │ │ │ └── SwipeControlsHostActivityFingerprint.kt │ │ ├── utils │ │ ├── controlsoverlay │ │ │ ├── DisableControlsOverlayConfigPatch.kt │ │ │ └── fingerprints │ │ │ │ └── ControlsOverlayConfigFingerprint.kt │ │ ├── fingerprints │ │ │ ├── LayoutConstructorFingerprint.kt │ │ │ ├── LayoutSwitchFingerprint.kt │ │ │ ├── NewVideoQualityChangedFingerprint.kt │ │ │ ├── OrganicPlaybackContextModelFingerprint.kt │ │ │ ├── PivotBarCreateButtonViewFingerprint.kt │ │ │ ├── PlayerControlsVisibilityModelFingerprint.kt │ │ │ ├── PlayerParameterBuilderFingerprint.kt │ │ │ ├── PlayerSeekbarColorFingerprint.kt │ │ │ ├── QualityMenuViewInflateFingerprint.kt │ │ │ ├── RecyclerViewTreeObserverFingerprint.kt │ │ │ ├── RollingNumberTextViewAnimationUpdateFingerprint.kt │ │ │ ├── SeekbarFingerprint.kt │ │ │ ├── SeekbarOnDrawFingerprint.kt │ │ │ ├── ThumbnailPreviewConfigFingerprint.kt │ │ │ ├── TotalTimeFingerprint.kt │ │ │ ├── TotalTimeLegacyFingerprint.kt │ │ │ ├── VideoEndFingerprint.kt │ │ │ └── YouTubeControlsOverlayFingerprint.kt │ │ ├── fix │ │ │ ├── clientspoof │ │ │ │ ├── ClientSpoofPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── UserAgentHeaderBuilderFingerprint.kt │ │ │ ├── doublebacktoclose │ │ │ │ ├── DoubleBackToClosePatch.kt │ │ │ │ └── fingerprint │ │ │ │ │ ├── ScrollPositionFingerprint.kt │ │ │ │ │ ├── ScrollTopFingerprint.kt │ │ │ │ │ └── ScrollTopParentFingerprint.kt │ │ │ ├── parameter │ │ │ │ ├── SpoofPlayerParameterPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── ParamsMapPutFingerprint.kt │ │ │ │ │ ├── PlayerResponseModelGeneralStoryboardRendererFingerprint.kt │ │ │ │ │ ├── PlayerResponseModelLiveStreamStoryboardRendererFingerprint.kt │ │ │ │ │ ├── PlayerResponseModelStoryboardRecommendedLevelFingerprint.kt │ │ │ │ │ ├── StatsQueryParameterFingerprint.kt │ │ │ │ │ ├── StoryboardRendererDecoderRecommendedLevelFingerprint.kt │ │ │ │ │ ├── StoryboardRendererDecoderSpecFingerprint.kt │ │ │ │ │ ├── StoryboardRendererSpecFingerprint.kt │ │ │ │ │ ├── StoryboardThumbnailFingerprint.kt │ │ │ │ │ └── StoryboardThumbnailParentFingerprint.kt │ │ │ └── swiperefresh │ │ │ │ ├── SwipeRefreshPatch.kt │ │ │ │ └── fingerprint │ │ │ │ └── SwipeRefreshLayoutFingerprint.kt │ │ ├── integrations │ │ │ ├── Constants.kt │ │ │ ├── IntegrationsPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── APIPlayerServiceFingerprint.kt │ │ │ │ ├── ApplicationInitFingerprint.kt │ │ │ │ ├── EmbeddedPlayerControlsOverlayFingerprint.kt │ │ │ │ ├── EmbeddedPlayerFingerprint.kt │ │ │ │ ├── RemoteEmbedFragmentFingerprint.kt │ │ │ │ ├── RemoteEmbeddedPlayerFingerprint.kt │ │ │ │ └── StandalonePlayerActivityFingerprint.kt │ │ ├── litho │ │ │ ├── LithoFilterPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── GeneralByteBufferFingerprint.kt │ │ │ │ └── LithoFilterFingerprint.kt │ │ ├── lockmodestate │ │ │ ├── LockModeStateHookPatch.kt │ │ │ └── fingerprint │ │ │ │ └── LockModeStateFingerprint.kt │ │ ├── mainactivity │ │ │ ├── MainActivityResolvePatch.kt │ │ │ └── fingerprints │ │ │ │ └── MainActivityFingerprint.kt │ │ ├── microg │ │ │ ├── Constants.kt │ │ │ ├── MicroGBytecodePatch.kt │ │ │ ├── MicroGPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── CastContextFetchFingerprint.kt │ │ │ │ ├── CastDynamiteModuleFingerprint.kt │ │ │ │ ├── CastDynamiteModuleV2Fingerprint.kt │ │ │ │ ├── GooglePlayUtilityFingerprint.kt │ │ │ │ ├── PrimeFingerprint.kt │ │ │ │ └── ServiceCheckFingerprint.kt │ │ ├── overridequality │ │ │ ├── OverrideQualityHookPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── VideoQualityListFingerprint.kt │ │ │ │ ├── VideoQualityPatchFingerprint.kt │ │ │ │ └── VideoQualityTextFingerprint.kt │ │ ├── overridespeed │ │ │ ├── OverrideSpeedHookPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── PlaybackSpeedChangedFingerprint.kt │ │ │ │ ├── PlaybackSpeedParentFingerprint.kt │ │ │ │ ├── PlaybackSpeedPatchFingerprint.kt │ │ │ │ └── SpeedClassFingerprint.kt │ │ ├── playerbutton │ │ │ ├── PlayerButtonHookPatch.kt │ │ │ └── fingerprints │ │ │ │ └── LiveChatFingerprint.kt │ │ ├── playercontrols │ │ │ ├── PlayerControlsPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── BottomControlsInflateFingerprint.kt │ │ │ │ ├── ControlsLayoutInflateFingerprint.kt │ │ │ │ ├── FullscreenEngagementSpeedEduVisibleFingerprint.kt │ │ │ │ ├── FullscreenEngagementSpeedEduVisibleParentFingerprint.kt │ │ │ │ ├── PlayerControlsVisibilityFingerprint.kt │ │ │ │ ├── QuickSeekVisibleFingerprint.kt │ │ │ │ ├── SeekEDUVisibleFingerprint.kt │ │ │ │ └── UserScrubbingFingerprint.kt │ │ ├── playerresponse │ │ │ └── PlayerResponsePatch.kt │ │ ├── playertype │ │ │ ├── PlayerTypeHookPatch.kt │ │ │ └── fingerprint │ │ │ │ ├── PlayerTypeFingerprint.kt │ │ │ │ └── VideoStateFingerprint.kt │ │ ├── quickactions │ │ │ ├── QuickActionsHookPatch.kt │ │ │ └── fingerprints │ │ │ │ └── QuickActionsElementFingerprint.kt │ │ ├── resourceid │ │ │ └── SharedResourceIdPatch.kt │ │ ├── returnyoutubedislike │ │ │ ├── general │ │ │ │ ├── ReturnYouTubeDislikePatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── DislikeFingerprint.kt │ │ │ │ │ ├── LikeFingerprint.kt │ │ │ │ │ ├── RemoveLikeFingerprint.kt │ │ │ │ │ ├── TextComponentConstructorFingerprint.kt │ │ │ │ │ └── TextComponentContextFingerprint.kt │ │ │ ├── oldlayout │ │ │ │ ├── ReturnYouTubeDislikeOldLayoutPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ └── ButtonTagFingerprint.kt │ │ │ ├── rollingnumber │ │ │ │ ├── ReturnYouTubeDislikeRollingNumberPatch.kt │ │ │ │ └── fingerprints │ │ │ │ │ ├── RollingNumberMeasureAnimatedTextFingerprint.kt │ │ │ │ │ ├── RollingNumberMeasureStaticLabelFingerprint.kt │ │ │ │ │ ├── RollingNumberMeasureTextParentFingerprint.kt │ │ │ │ │ ├── RollingNumberSetterFingerprint.kt │ │ │ │ │ └── RollingNumberTextViewFingerprint.kt │ │ │ └── shorts │ │ │ │ ├── ReturnYouTubeDislikeShortsPatch.kt │ │ │ │ └── fingerprints │ │ │ │ ├── IncognitoFingerprint.kt │ │ │ │ ├── ShortsTextViewFingerprint.kt │ │ │ │ └── TextComponentSpecFingerprint.kt │ │ ├── settings │ │ │ ├── ResourceUtils.kt │ │ │ ├── SettingsBytecodePatch.kt │ │ │ ├── SettingsPatch.kt │ │ │ ├── VisualPreferencesIconsPatch.kt │ │ │ └── fingerprints │ │ │ │ └── ThemeSetterSystemFingerprint.kt │ │ ├── sponsorblock │ │ │ ├── SponsorBlockBytecodePatch.kt │ │ │ ├── SponsorBlockPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── RectangleFieldInvalidatorFingerprint.kt │ │ │ │ └── SegmentPlaybackControllerFingerprint.kt │ │ ├── toolbar │ │ │ ├── ToolBarHookPatch.kt │ │ │ └── fingerprints │ │ │ │ ├── ToolBarButtonFingerprint.kt │ │ │ │ └── ToolBarPatchFingerprint.kt │ │ ├── videocpn │ │ │ └── VideoCpnPatch.kt │ │ └── videoid │ │ │ ├── general │ │ │ ├── VideoIdPatch.kt │ │ │ └── fingerprint │ │ │ │ ├── PlayerControllerSetTimeReferenceFingerprint.kt │ │ │ │ ├── VideoIdFingerprint.kt │ │ │ │ ├── VideoIdParentFingerprint.kt │ │ │ │ └── VideoLengthFingerprint.kt │ │ │ └── withoutshorts │ │ │ ├── VideoIdWithoutShortsPatch.kt │ │ │ └── fingerprint │ │ │ └── VideoIdWithoutShortsFingerprint.kt │ │ └── video │ │ ├── customspeed │ │ └── CustomPlaybackSpeedPatch.kt │ │ ├── hdr │ │ ├── DisableHdrVideoPatch.kt │ │ └── fingerprints │ │ │ └── HdrCapabilitiesFingerprint.kt │ │ ├── quality │ │ ├── VideoQualityPatch.kt │ │ └── fingerprints │ │ │ └── VideoQualitySetterFingerprint.kt │ │ └── speed │ │ ├── PlaybackSpeedPatch.kt │ │ └── fingerprints │ │ ├── NewPlaybackSpeedChangedFingerprint.kt │ │ └── PlaybackSpeedInitializeFingerprint.kt │ └── util │ ├── BytecodeUtils.kt │ ├── ResourceUtils.kt │ └── fingerprint │ └── LiteralValueFingerprint.kt └── resources ├── music ├── branding │ ├── afn_blue │ │ ├── launcher │ │ │ ├── mipmap-hdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ ├── monochrome │ │ │ └── drawable │ │ │ │ └── ic_app_icons_themed_youtube_music.xml │ │ └── resource │ │ │ ├── drawable-hdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── action_bar_logo_release.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-large-hdpi │ │ │ └── record.png │ │ │ ├── drawable-large-mdpi │ │ │ └── record.png │ │ │ ├── drawable-large-xhdpi │ │ │ └── record.png │ │ │ ├── drawable-mdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-xhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-xlarge-hdpi │ │ │ └── record.png │ │ │ ├── drawable-xlarge-mdpi │ │ │ └── record.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ └── drawable-xxxhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ └── ytm_logo.png │ ├── afn_red │ │ ├── launcher │ │ │ ├── mipmap-hdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ ├── monochrome │ │ │ └── drawable │ │ │ │ └── ic_app_icons_themed_youtube_music.xml │ │ └── resource │ │ │ ├── drawable-hdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── action_bar_logo_release.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-large-hdpi │ │ │ └── record.png │ │ │ ├── drawable-large-mdpi │ │ │ └── record.png │ │ │ ├── drawable-large-xhdpi │ │ │ └── record.png │ │ │ ├── drawable-mdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-xhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-xlarge-hdpi │ │ │ └── record.png │ │ │ ├── drawable-xlarge-mdpi │ │ │ └── record.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ └── drawable-xxxhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ └── ytm_logo.png │ ├── mmt │ │ ├── launcher │ │ │ ├── mipmap-hdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ ├── monochrome │ │ │ └── drawable │ │ │ │ └── ic_app_icons_themed_youtube_music.xml │ │ └── resource │ │ │ ├── drawable-hdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── action_bar_logo_release.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-large-hdpi │ │ │ └── record.png │ │ │ ├── drawable-large-mdpi │ │ │ └── record.png │ │ │ ├── drawable-large-xhdpi │ │ │ └── record.png │ │ │ ├── drawable-mdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-xhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-xlarge-hdpi │ │ │ └── record.png │ │ │ ├── drawable-xlarge-mdpi │ │ │ └── record.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ └── drawable-xxxhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ └── ytm_logo.png │ ├── revancify_blue │ │ ├── launcher │ │ │ ├── mipmap-hdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ └── monochrome │ │ │ └── drawable │ │ │ └── ic_app_icons_themed_youtube_music.xml │ ├── revancify_red │ │ ├── launcher │ │ │ ├── mipmap-hdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ └── monochrome │ │ │ └── drawable │ │ │ └── ic_app_icons_themed_youtube_music.xml │ ├── vanced_black │ │ ├── launcher │ │ │ ├── mipmap-hdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ │ └── ic_launcher_release.png │ │ ├── monochrome │ │ │ └── drawable │ │ │ │ └── ic_app_icons_themed_youtube_music.xml │ │ └── resource │ │ │ ├── drawable-hdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── action_bar_logo_release.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-large-hdpi │ │ │ └── record.png │ │ │ ├── drawable-large-mdpi │ │ │ └── record.png │ │ │ ├── drawable-large-xhdpi │ │ │ └── record.png │ │ │ ├── drawable-mdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-xhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ ├── drawable-xlarge-hdpi │ │ │ └── record.png │ │ │ ├── drawable-xlarge-mdpi │ │ │ └── record.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ ├── record.png │ │ │ └── ytm_logo.png │ │ │ └── drawable-xxxhdpi │ │ │ ├── action_bar_logo.png │ │ │ ├── logo_music.png │ │ │ └── ytm_logo.png │ └── vanced_light │ │ ├── launcher │ │ ├── mipmap-hdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ ├── mipmap-mdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ ├── mipmap-xhdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ ├── mipmap-xxhdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ └── mipmap-xxxhdpi │ │ │ ├── adaptiveproduct_youtube_music_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_music_foreground_color_108.png │ │ │ └── ic_launcher_release.png │ │ ├── monochrome │ │ └── drawable │ │ │ └── ic_app_icons_themed_youtube_music.xml │ │ └── resource │ │ ├── drawable-hdpi │ │ ├── action_bar_logo.png │ │ ├── action_bar_logo_release.png │ │ ├── logo_music.png │ │ ├── record.png │ │ └── ytm_logo.png │ │ ├── drawable-large-hdpi │ │ └── record.png │ │ ├── drawable-large-mdpi │ │ └── record.png │ │ ├── drawable-large-xhdpi │ │ └── record.png │ │ ├── drawable-mdpi │ │ ├── action_bar_logo.png │ │ ├── logo_music.png │ │ ├── record.png │ │ └── ytm_logo.png │ │ ├── drawable-xhdpi │ │ ├── action_bar_logo.png │ │ ├── logo_music.png │ │ ├── record.png │ │ └── ytm_logo.png │ │ ├── drawable-xlarge-hdpi │ │ └── record.png │ │ ├── drawable-xlarge-mdpi │ │ └── record.png │ │ ├── drawable-xxhdpi │ │ ├── action_bar_logo.png │ │ ├── logo_music.png │ │ ├── record.png │ │ └── ytm_logo.png │ │ └── drawable-xxxhdpi │ │ ├── action_bar_logo.png │ │ ├── logo_music.png │ │ └── ytm_logo.png ├── cast │ └── layout │ │ └── open_music_button.xml ├── flyout │ ├── drawable-hdpi │ │ └── yt_outline_play_arrow_half_circle_black_24.png │ ├── drawable-mdpi │ │ └── yt_outline_play_arrow_half_circle_black_24.png │ ├── drawable-xhdpi │ │ └── yt_outline_play_arrow_half_circle_black_24.png │ ├── drawable-xxhdpi │ │ └── yt_outline_play_arrow_half_circle_black_24.png │ ├── drawable-xxxhdpi │ │ └── yt_outline_play_arrow_half_circle_black_24.png │ └── layout-v21 │ │ └── music_menu_like_buttons.xml ├── settings │ ├── host │ │ └── values │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ └── values-v21 │ │ └── strings.xml ├── sponsorblock │ └── xml │ │ └── sponsorblock_prefs.xml ├── spoofappversion │ └── host │ │ └── values │ │ └── arrays.xml ├── startpage │ └── host │ │ └── values │ │ └── arrays.xml └── translations │ ├── bg-rBG │ └── strings.xml │ ├── bn │ └── strings.xml │ ├── cs-rCZ │ └── strings.xml │ ├── el-rGR │ └── strings.xml │ ├── es-rES │ └── strings.xml │ ├── fr-rFR │ └── strings.xml │ ├── id-rID │ └── strings.xml │ ├── in │ └── strings.xml │ ├── it-rIT │ └── strings.xml │ ├── ja-rJP │ └── strings.xml │ ├── ko-rKR │ └── strings.xml │ ├── nl-rNL │ └── strings.xml │ ├── pl-rPL │ └── strings.xml │ ├── pt-rBR │ └── strings.xml │ ├── ro-rRO │ └── strings.xml │ ├── ru-rRU │ └── strings.xml │ ├── tr-rTR │ └── strings.xml │ ├── uk-rUA │ └── strings.xml │ ├── vi-rVN │ └── strings.xml │ ├── zh-rCN │ └── strings.xml │ └── zh-rTW │ └── strings.xml └── youtube ├── alternativethumbnails └── host │ └── values │ └── arrays.xml ├── animated └── raw │ ├── like_tap_feedback.json │ ├── pause_tap_feedback.json │ └── play_tap_feedback.json ├── branding ├── afn_blue │ ├── launcher │ │ ├── drawable │ │ │ └── revanced_extended_settings_key_icon.xml │ │ ├── mipmap-hdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ └── splash │ │ ├── drawable-hdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-mdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-xhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-xxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ └── drawable-xxxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png ├── afn_red │ ├── launcher │ │ ├── drawable │ │ │ └── revanced_extended_settings_key_icon.xml │ │ ├── mipmap-hdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ └── splash │ │ ├── drawable-hdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-mdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-xhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-xxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ └── drawable-xxxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png ├── mmt │ ├── launcher │ │ ├── drawable │ │ │ └── revanced_extended_settings_key_icon.xml │ │ ├── mipmap-hdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ ├── monochrome │ │ └── drawable │ │ │ └── adaptive_monochrome_ic_youtube_launcher.xml │ └── splash │ │ ├── drawable-hdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-mdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-xhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-xxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-xxxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ └── drawable │ │ ├── $avd_anim__0.xml │ │ ├── $avd_anim__1.xml │ │ ├── $avd_anim__2.xml │ │ ├── $avd_anim__3.xml │ │ ├── $avd_anim__4.xml │ │ └── avd_anim.xml ├── revancify_blue │ ├── launcher │ │ ├── drawable │ │ │ └── revanced_extended_settings_key_icon.xml │ │ ├── mipmap-hdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ ├── monochrome │ │ └── drawable │ │ │ └── adaptive_monochrome_ic_youtube_launcher.xml │ └── splash │ │ ├── drawable-hdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png │ │ ├── drawable-mdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png │ │ ├── drawable-xhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png │ │ ├── drawable-xxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png │ │ └── drawable-xxxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png ├── revancify_red │ ├── launcher │ │ ├── drawable │ │ │ └── revanced_extended_settings_key_icon.xml │ │ ├── mipmap-hdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ ├── monochrome │ │ └── drawable │ │ │ └── adaptive_monochrome_ic_youtube_launcher.xml │ └── splash │ │ ├── drawable-hdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png │ │ ├── drawable-mdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png │ │ ├── drawable-xhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png │ │ ├── drawable-xxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png │ │ └── drawable-xxxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ └── product_logo_youtube_color_36.png ├── vanced_black │ ├── launcher │ │ ├── drawable │ │ │ └── revanced_extended_settings_key_icon.xml │ │ ├── mipmap-hdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ └── splash │ │ ├── drawable-hdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-mdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-xhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ ├── drawable-xxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png │ │ └── drawable-xxxhdpi │ │ ├── product_logo_youtube_color_144.png │ │ ├── product_logo_youtube_color_192.png │ │ ├── product_logo_youtube_color_24.png │ │ ├── product_logo_youtube_color_36.png │ │ ├── yt_premium_wordmark_header_dark.png │ │ ├── yt_premium_wordmark_header_light.png │ │ ├── yt_wordmark_header_dark.png │ │ └── yt_wordmark_header_light.png └── vanced_light │ ├── launcher │ ├── drawable │ │ └── revanced_extended_settings_key_icon.xml │ ├── mipmap-hdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ └── mipmap-xxxhdpi │ │ ├── adaptiveproduct_youtube_background_color_108.png │ │ ├── adaptiveproduct_youtube_foreground_color_108.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ └── splash │ ├── drawable-hdpi │ ├── product_logo_youtube_color_144.png │ ├── product_logo_youtube_color_192.png │ ├── product_logo_youtube_color_24.png │ ├── product_logo_youtube_color_36.png │ ├── yt_premium_wordmark_header_dark.png │ ├── yt_premium_wordmark_header_light.png │ ├── yt_wordmark_header_dark.png │ └── yt_wordmark_header_light.png │ ├── drawable-mdpi │ ├── product_logo_youtube_color_144.png │ ├── product_logo_youtube_color_192.png │ ├── product_logo_youtube_color_24.png │ ├── product_logo_youtube_color_36.png │ ├── yt_premium_wordmark_header_dark.png │ ├── yt_premium_wordmark_header_light.png │ ├── yt_wordmark_header_dark.png │ └── yt_wordmark_header_light.png │ ├── drawable-xhdpi │ ├── product_logo_youtube_color_144.png │ ├── product_logo_youtube_color_192.png │ ├── product_logo_youtube_color_24.png │ ├── product_logo_youtube_color_36.png │ ├── yt_premium_wordmark_header_dark.png │ ├── yt_premium_wordmark_header_light.png │ ├── yt_wordmark_header_dark.png │ └── yt_wordmark_header_light.png │ ├── drawable-xxhdpi │ ├── product_logo_youtube_color_144.png │ ├── product_logo_youtube_color_192.png │ ├── product_logo_youtube_color_24.png │ ├── product_logo_youtube_color_36.png │ ├── yt_premium_wordmark_header_dark.png │ ├── yt_premium_wordmark_header_light.png │ ├── yt_wordmark_header_dark.png │ └── yt_wordmark_header_light.png │ └── drawable-xxxhdpi │ ├── product_logo_youtube_color_144.png │ ├── product_logo_youtube_color_192.png │ ├── product_logo_youtube_color_24.png │ ├── product_logo_youtube_color_36.png │ ├── yt_premium_wordmark_header_dark.png │ ├── yt_premium_wordmark_header_light.png │ ├── yt_wordmark_header_dark.png │ └── yt_wordmark_header_light.png ├── doubleback └── host │ └── values │ └── arrays.xml ├── doubletap └── values-v21 │ └── arrays.xml ├── materialyou ├── drawable-night-v31 │ └── new_content_dot_background.xml ├── drawable-v31 │ ├── new_content_count_background.xml │ └── new_content_dot_background.xml ├── host │ └── values-v31 │ │ └── colors.xml └── layout-v31 │ └── new_content_count.xml ├── overlaybuttons ├── bold │ └── drawable-xxhdpi │ │ ├── ic_fullscreen_vertical_button.png │ │ ├── ic_vr.png │ │ ├── quantum_ic_fullscreen_exit_grey600_24.png │ │ ├── quantum_ic_fullscreen_exit_white_24.png │ │ ├── quantum_ic_fullscreen_grey600_24.png │ │ ├── quantum_ic_fullscreen_white_24.png │ │ ├── revanced_copy_icon.png │ │ ├── revanced_copy_icon_with_time.png │ │ ├── revanced_download_icon.png │ │ ├── revanced_speed_icon.png │ │ ├── revanced_time_ordered_playlist.png │ │ ├── revanced_whitelist_icon.png │ │ ├── yt_fill_arrow_repeat_white_24.png │ │ ├── yt_outline_arrow_repeat_1_white_24.png │ │ ├── yt_outline_arrow_shuffle_1_white_24.png │ │ ├── yt_outline_screen_full_exit_white_24.png │ │ ├── yt_outline_screen_full_white_24.png │ │ └── yt_outline_screen_vertical_vd_theme_24.png ├── rounded │ └── drawable-xxhdpi │ │ ├── ic_fullscreen_vertical_button.png │ │ ├── ic_vr.png │ │ ├── quantum_ic_fullscreen_exit_grey600_24.png │ │ ├── quantum_ic_fullscreen_exit_white_24.png │ │ ├── quantum_ic_fullscreen_grey600_24.png │ │ ├── quantum_ic_fullscreen_white_24.png │ │ ├── revanced_copy_icon.png │ │ ├── revanced_copy_icon_with_time.png │ │ ├── revanced_download_icon.png │ │ ├── revanced_speed_icon.png │ │ ├── revanced_time_ordered_playlist.png │ │ ├── revanced_whitelist_icon.png │ │ ├── yt_fill_arrow_repeat_white_24.png │ │ ├── yt_outline_arrow_repeat_1_white_24.png │ │ ├── yt_outline_arrow_shuffle_1_white_24.png │ │ ├── yt_outline_screen_full_exit_white_24.png │ │ ├── yt_outline_screen_full_white_24.png │ │ └── yt_outline_screen_vertical_vd_theme_24.png ├── shared │ ├── drawable │ │ ├── playlist_repeat_button.xml │ │ ├── playlist_shuffle_button.xml │ │ └── revanced_repeat_icon.xml │ └── host │ │ ├── layout │ │ └── youtube_controls_bottom_ui_container.xml │ │ └── values │ │ └── arrays.xml └── thin │ ├── drawable-xxhdpi │ ├── ic_fullscreen_vertical_button.png │ ├── ic_vr.png │ ├── quantum_ic_fullscreen_exit_grey600_24.png │ ├── quantum_ic_fullscreen_exit_white_24.png │ ├── quantum_ic_fullscreen_grey600_24.png │ ├── quantum_ic_fullscreen_white_24.png │ ├── revanced_copy_icon.png │ ├── revanced_copy_icon_with_time.png │ ├── revanced_download_icon.png │ ├── revanced_speed_icon.png │ ├── revanced_time_ordered_playlist.png │ ├── revanced_whitelist_icon.png │ ├── yt_fill_arrow_repeat_white_24.png │ ├── yt_outline_arrow_repeat_1_white_24.png │ ├── yt_outline_arrow_shuffle_1_white_24.png │ ├── yt_outline_screen_full_exit_white_24.png │ └── yt_outline_screen_full_white_24.png │ └── drawable │ └── yt_outline_screen_vertical_vd_theme_24.xml ├── quality └── host │ └── values │ └── arrays.xml ├── settings ├── host │ └── values │ │ └── strings.xml ├── icons │ ├── drawable-xxhdpi │ │ └── empty_icon.png │ ├── drawable │ │ ├── about_key_icon.xml │ │ ├── accessibility_settings_key_icon.xml │ │ ├── account_switcher_key_icon.xml │ │ ├── ads_icon.xml │ │ ├── alt_thumbnails_icon.xml │ │ ├── auto_play_key_icon.xml │ │ ├── billing_and_payment_key_icon.xml │ │ ├── bottom_player_icon.xml │ │ ├── captions_key_icon.xml │ │ ├── connected_accounts_browse_page_key_icon.xml │ │ ├── data_saving_settings_key_icon.xml │ │ ├── flyout_menu_icon.xml │ │ ├── fullscreen_icon.xml │ │ ├── general_key_icon.xml │ │ ├── history_key_icon.xml │ │ ├── live_chat_key_icon.xml │ │ ├── misc_icon.xml │ │ ├── navigation_icon.xml │ │ ├── notification_key_icon.xml │ │ ├── offline_key_icon.xml │ │ ├── overlay_button_icon.xml │ │ ├── pair_with_tv_key_icon.xml │ │ ├── parent_tools_key_icon.xml │ │ ├── player_icon.xml │ │ ├── premium_early_access_browse_page_key_icon.xml │ │ ├── privacy_key_icon.xml │ │ ├── revanced_change_player_flyout_panel_toggle_icon.xml │ │ ├── revanced_default_video_quality_wifi_icon.xml │ │ ├── revanced_disable_hdr_video_icon.xml │ │ ├── revanced_enable_default_playback_speed_shorts_icon.xml │ │ ├── revanced_enable_swipe_auto_brightness_icon.xml │ │ ├── revanced_enable_swipe_brightness_icon.xml │ │ ├── revanced_enable_swipe_volume_icon.xml │ │ ├── revanced_hide_button_create_clip_icon.xml │ │ ├── revanced_hide_button_report_icon.xml │ │ ├── revanced_hide_button_save_to_playlist_icon.xml │ │ ├── revanced_hide_create_button_icon.xml │ │ ├── revanced_hide_home_button_icon.xml │ │ ├── revanced_hide_player_flyout_panel_ambient_mode_icon.xml │ │ ├── revanced_hide_player_flyout_panel_audio_track_icon.xml │ │ ├── revanced_hide_player_flyout_panel_help_icon.xml │ │ ├── revanced_hide_player_flyout_panel_lock_screen_icon.xml │ │ ├── revanced_hide_player_flyout_panel_playback_speed_icon.xml │ │ ├── revanced_hide_player_flyout_panel_stable_volume_icon.xml │ │ ├── revanced_hide_player_flyout_panel_stats_for_nerds_icon.xml │ │ ├── revanced_hide_player_flyout_panel_watch_in_vr_icon.xml │ │ ├── revanced_hide_quick_actions_comment_icon.xml │ │ ├── revanced_hide_quick_actions_like_icon.xml │ │ ├── revanced_hide_quick_actions_live_chat_icon.xml │ │ ├── revanced_hide_quick_actions_more_icon.xml │ │ ├── revanced_hide_shorts_player_remix_button_icon.xml │ │ ├── revanced_hide_shorts_player_share_button_icon.xml │ │ ├── revanced_hide_shorts_toolbar_camera_button_icon.xml │ │ ├── revanced_hide_shorts_toolbar_menu_button_icon.xml │ │ ├── revanced_hide_shorts_toolbar_search_button_icon.xml │ │ ├── revanced_hide_subscriptions_button_icon.xml │ │ ├── revanced_overlay_button_always_repeat_icon.xml │ │ ├── revanced_overlay_button_copy_video_url_icon.xml │ │ ├── revanced_overlay_button_copy_video_url_timestamp_icon.xml │ │ ├── revanced_overlay_button_external_downloader_icon.xml │ │ ├── revanced_overlay_button_speed_dialog_icon.xml │ │ ├── revanced_overlay_button_time_ordered_playlist_icon.xml │ │ ├── revanced_overlay_button_whitelisting_icon.xml │ │ ├── revanced_ryd_settings_key_icon.xml │ │ ├── revanced_switching_create_notification_icon.xml │ │ ├── sb_enable_create_segment_icon.xml │ │ ├── sb_enable_voting_icon.xml │ │ ├── seekbar_icon.xml │ │ ├── shorts_icon.xml │ │ ├── subscription_product_setting_key_icon.xml │ │ ├── swipe_controls_icon.xml │ │ ├── video_icon.xml │ │ ├── video_quality_settings_key_icon.xml │ │ └── your_data_key_icon.xml │ ├── extension │ │ └── drawable │ │ │ └── revanced_extended_settings_key_icon.xml │ ├── gear │ │ └── drawable │ │ │ └── revanced_extended_settings_key_icon.xml │ ├── revanced │ │ └── drawable │ │ │ └── revanced_extended_settings_key_icon.xml │ └── revanced_colored │ │ └── drawable │ │ └── revanced_extended_settings_key_icon.xml ├── layout │ └── revanced_settings_with_toolbar.xml ├── values-v21 │ └── strings.xml └── xml │ └── revanced_prefs.xml ├── shorts ├── outline │ ├── drawable-hdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ ├── drawable-mdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ ├── drawable-xhdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ ├── drawable-xxhdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ ├── drawable-xxxhdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ └── drawable │ │ ├── ic_right_comment_32c.xml │ │ ├── ic_right_dislike_off_32c.xml │ │ ├── ic_right_like_off_32c.xml │ │ ├── ic_right_share_32c.xml │ │ ├── reel_camera_bold_24dp.xml │ │ ├── reel_more_vertical_bold_24dp.xml │ │ └── reel_search_bold_24dp.xml ├── outlinecircle │ ├── drawable-hdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ ├── drawable-mdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ ├── drawable-xhdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ ├── drawable-xxhdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ ├── drawable-xxxhdpi │ │ ├── ic_remix_filled_white_24.webp │ │ ├── ic_remix_filled_white_shadowed.webp │ │ ├── ic_right_comment_shadowed.webp │ │ ├── ic_right_dislike_off_shadowed.webp │ │ ├── ic_right_dislike_on_32c.webp │ │ ├── ic_right_dislike_on_shadowed.webp │ │ ├── ic_right_like_off_shadowed.webp │ │ ├── ic_right_like_on_32c.webp │ │ ├── ic_right_like_on_shadowed.webp │ │ └── ic_right_share_shadowed.webp │ └── drawable │ │ ├── ic_right_comment_32c.xml │ │ ├── ic_right_dislike_off_32c.xml │ │ ├── ic_right_like_off_32c.xml │ │ └── ic_right_share_32c.xml └── tiktok │ ├── drawable-hdpi │ ├── ic_remix_filled_white_24.webp │ ├── ic_remix_filled_white_shadowed.webp │ ├── ic_right_comment_shadowed.webp │ ├── ic_right_dislike_off_shadowed.webp │ ├── ic_right_dislike_on_32c.webp │ ├── ic_right_dislike_on_shadowed.webp │ ├── ic_right_like_off_shadowed.webp │ ├── ic_right_like_on_32c.webp │ ├── ic_right_like_on_shadowed.webp │ └── ic_right_share_shadowed.webp │ ├── drawable-mdpi │ ├── ic_remix_filled_white_24.webp │ ├── ic_remix_filled_white_shadowed.webp │ ├── ic_right_comment_shadowed.webp │ ├── ic_right_dislike_off_shadowed.webp │ ├── ic_right_dislike_on_32c.webp │ ├── ic_right_dislike_on_shadowed.webp │ ├── ic_right_like_off_shadowed.webp │ ├── ic_right_like_on_32c.webp │ ├── ic_right_like_on_shadowed.webp │ └── ic_right_share_shadowed.webp │ ├── drawable-xhdpi │ ├── ic_remix_filled_white_24.webp │ ├── ic_remix_filled_white_shadowed.webp │ ├── ic_right_comment_shadowed.webp │ ├── ic_right_dislike_off_shadowed.webp │ ├── ic_right_dislike_on_32c.webp │ ├── ic_right_dislike_on_shadowed.webp │ ├── ic_right_like_off_shadowed.webp │ ├── ic_right_like_on_32c.webp │ ├── ic_right_like_on_shadowed.webp │ └── ic_right_share_shadowed.webp │ ├── drawable-xxhdpi │ ├── ic_remix_filled_white_24.webp │ ├── ic_remix_filled_white_shadowed.webp │ ├── ic_right_comment_shadowed.webp │ ├── ic_right_dislike_off_shadowed.webp │ ├── ic_right_dislike_on_32c.webp │ ├── ic_right_dislike_on_shadowed.webp │ ├── ic_right_like_off_shadowed.webp │ ├── ic_right_like_on_32c.webp │ ├── ic_right_like_on_shadowed.webp │ └── ic_right_share_shadowed.webp │ ├── drawable-xxxhdpi │ ├── ic_remix_filled_white_24.webp │ ├── ic_remix_filled_white_shadowed.webp │ ├── ic_right_comment_shadowed.webp │ ├── ic_right_dislike_off_shadowed.webp │ ├── ic_right_dislike_on_32c.webp │ ├── ic_right_dislike_on_shadowed.webp │ ├── ic_right_like_off_shadowed.webp │ ├── ic_right_like_on_32c.webp │ ├── ic_right_like_on_shadowed.webp │ └── ic_right_share_shadowed.webp │ └── drawable │ ├── ic_right_comment_32c.xml │ ├── ic_right_dislike_off_32c.xml │ ├── ic_right_like_off_32c.xml │ └── ic_right_share_32c.xml ├── splashscreen ├── drawable │ ├── $$avd_anim__1__0.xml │ ├── $$avd_anim__1__1.xml │ ├── $$avd_anim__2__0.xml │ ├── $$avd_anim__2__1.xml │ ├── $$avd_anim__3__0.xml │ ├── $$avd_anim__3__1.xml │ ├── $avd_anim__0.xml │ ├── $avd_anim__1.xml │ ├── $avd_anim__2.xml │ ├── $avd_anim__3.xml │ ├── $avd_anim__4.xml │ └── avd_anim.xml └── values-v31 │ └── styles.xml ├── sponsorblock ├── default │ ├── drawable │ │ ├── ic_sb_adjust.xml │ │ ├── ic_sb_compare.xml │ │ ├── ic_sb_edit.xml │ │ ├── ic_sb_logo.xml │ │ ├── ic_sb_publish.xml │ │ └── ic_sb_voting.xml │ └── layout │ │ └── new_segment.xml ├── outline │ ├── drawable │ │ ├── ic_sb_adjust.xml │ │ ├── ic_sb_backward.xml │ │ ├── ic_sb_compare.xml │ │ ├── ic_sb_edit.xml │ │ ├── ic_sb_forward.xml │ │ ├── ic_sb_logo.xml │ │ ├── ic_sb_publish.xml │ │ └── ic_sb_voting.xml │ └── layout │ │ └── new_segment.xml └── shared │ ├── drawable │ ├── ns_bg.xml │ └── sb_btn_bg.xml │ ├── host │ └── layout │ │ └── youtube_controls_layout.xml │ └── layout │ ├── inline_sponsor_overlay.xml │ └── skip_sponsor_button.xml ├── spoofappversion └── host │ └── values │ └── arrays.xml ├── startpage └── host │ └── values │ └── arrays.xml ├── swipecontrols └── drawable │ ├── ic_sc_brightness_auto.xml │ ├── ic_sc_brightness_manual.xml │ ├── ic_sc_volume_mute.xml │ └── ic_sc_volume_normal.xml └── translations ├── ar └── strings.xml ├── bg-rBG └── strings.xml ├── bn └── strings.xml ├── de-rDE └── strings.xml ├── el-rGR └── strings.xml ├── es-rES └── strings.xml ├── fi-rFI └── strings.xml ├── fr-rFR └── strings.xml ├── hu-rHU └── strings.xml ├── id-rID └── strings.xml ├── in └── strings.xml ├── it-rIT └── strings.xml ├── ja-rJP └── strings.xml ├── ko-rKR └── strings.xml ├── pl-rPL └── strings.xml ├── pt-rBR └── strings.xml ├── ru-rRU └── strings.xml ├── tr-rTR └── strings.xml ├── uk-rUA └── strings.xml ├── vi-rVN └── strings.xml ├── zh-rCN └── strings.xml └── zh-rTW └── strings.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.github/ISSUE_TEMPLATE/suggestion.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.idea/discord.xml -------------------------------------------------------------------------------- /.idea/git_toolbox_prj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.idea/git_toolbox_prj.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/.releaserc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/LICENSE -------------------------------------------------------------------------------- /README-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/README-template.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/README.md -------------------------------------------------------------------------------- /api/revanced-patches.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/api/revanced-patches.api -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/gradlew.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/package.json -------------------------------------------------------------------------------- /patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/patches.json -------------------------------------------------------------------------------- /search_for_missing_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/search_for_missing_strings.py -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/meta/JsonGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/meta/JsonGenerator.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/meta/PatchesFileGenerator.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/meta/ReadmeGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/meta/ReadmeGenerator.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/account/component/MenuComponentPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/account/component/MenuComponentPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/account/handle/HideHandlePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/account/handle/HideHandlePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/account/tos/TermsContainerPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/account/tos/TermsContainerPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/actionbar/component/ActionBarComponentPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/actionbar/component/ActionBarComponentPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/ads/general/GeneralAdsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/ads/general/GeneralAdsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/ads/music/MusicAdsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/ads/music/MusicAdsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/flyoutpanel/component/FlyoutPanelPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/flyoutpanel/component/FlyoutPanelPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/flyoutpanel/utils/EnumUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/flyoutpanel/utils/EnumUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/amoled/AmoledPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/amoled/AmoledPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/autocaptions/AutoCaptionsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/autocaptions/AutoCaptionsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/buttonshelf/HideButtonShelfPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/buttonshelf/HideButtonShelfPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/castbutton/HideCastButtonPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/castbutton/HideCastButtonPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/categorybar/CategoryBarPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/categorybar/CategoryBarPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/customfilter/CustomFilterPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/customfilter/CustomFilterPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/emojipicker/HideEmojiPickerPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/emojipicker/HideEmojiPickerPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/landscapemode/LandScapeModePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/landscapemode/LandScapeModePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/sampleshelf/HideSampleShelfPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/sampleshelf/HideSampleShelfPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/startpage/ChangeStartPagePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/startpage/ChangeStartPagePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/general/tooltip/TooltipContentViewPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/general/tooltip/TooltipContentViewPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/layout/overlayfilter/OverlayFilterPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/layout/overlayfilter/OverlayFilterPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/backgroundplay/BackgroundPlayPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/backgroundplay/BackgroundPlayPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/bitrate/BitrateDefaultValuePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/bitrate/BitrateDefaultValuePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/codecs/CodecsUnlockPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/codecs/CodecsUnlockPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/debugging/DebuggingPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/debugging/DebuggingPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/exclusiveaudio/ExclusiveAudioPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/exclusiveaudio/ExclusiveAudioPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/premium/HideGetPremiumPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/premium/HideGetPremiumPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/spoofappversion/SpoofAppVersionPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/spoofappversion/SpoofAppVersionPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/tastebuilder/TasteBuilderPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/tastebuilder/TasteBuilderPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/tracking/SanitizeUrlQueryPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/tracking/SanitizeUrlQueryPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/misc/translations/TranslationsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/misc/translations/TranslationsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/navigation/black/BlackNavigationBarPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/navigation/black/BlackNavigationBarPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/player/minimizedplayer/MinimizedPlayerPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/player/minimizedplayer/MinimizedPlayerPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/player/oldplayerlayout/OldPlayerLayoutPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/player/oldplayerlayout/OldPlayerLayoutPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/player/repeat/RememberRepeatPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/player/repeat/RememberRepeatPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/player/replace/ReplaceCastButtonPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/player/replace/ReplaceCastButtonPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/player/share/ShareButtonPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/player/share/ShareButtonPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/player/shuffle/RememberShufflePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/player/shuffle/RememberShufflePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/player/zenmode/ZenModePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/player/zenmode/ZenModePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/fingerprints/MenuItemFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/fingerprints/MenuItemFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/fingerprints/PlayerColorFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/fingerprints/PlayerColorFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/fix/clientspoof/ClientSpoofPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/fix/clientspoof/ClientSpoofPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/fix/fileprovider/FileProviderPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/fix/fileprovider/FileProviderPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/integrations/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/integrations/Constants.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/integrations/IntegrationsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/integrations/IntegrationsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/intenthook/IntentHookPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/intenthook/IntentHookPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/litho/LithoFilterPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/litho/LithoFilterPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/mainactivity/MainActivityResolvePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/mainactivity/MainActivityResolvePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/microg/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/microg/Constants.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/microg/MicroGPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/microg/MicroGPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/microg/MicroGResourcePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/microg/MicroGResourcePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/microg/fingerprints/PrimeFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/microg/fingerprints/PrimeFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/overridespeed/OverrideSpeedHookPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/overridespeed/OverrideSpeedHookPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/playerresponse/PlayerResponsePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/playerresponse/PlayerResponsePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/playertype/PlayerTypeHookPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/playertype/PlayerTypeHookPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/resourceid/SharedResourceIdPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/resourceid/SharedResourceIdPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/settings/CategoryType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/settings/CategoryType.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/settings/ResourceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/settings/ResourceUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/settings/SettingsBytecodePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/settings/SettingsBytecodePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/settings/SettingsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/settings/SettingsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/sponsorblock/SponsorBlockPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/sponsorblock/SponsorBlockPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/utils/videotype/VideoTypeHookPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/utils/videotype/VideoTypeHookPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/video/customspeed/CustomPlaybackSpeedPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/video/customspeed/CustomPlaybackSpeedPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/video/information/VideoInformationPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/video/information/VideoInformationPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/video/quality/VideoQualityPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/video/quality/VideoQualityPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/video/speed/PlaybackSpeedPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/video/speed/PlaybackSpeedPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/music/video/videoid/VideoIdPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/music/video/videoid/VideoIdPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/ad/banner/HideBannerPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/ad/banner/HideBannerPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/ad/comments/HideCommentAdsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/ad/comments/HideCommentAdsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/ad/general/HideAdsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/ad/general/HideAdsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/ad/general/fingerprints/AdPostFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/ad/general/fingerprints/AdPostFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/layout/navigation/NavigationButtonsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/layout/navigation/NavigationButtonsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/layout/premiumicon/PremiumIconPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/layout/premiumicon/PremiumIconPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/layout/toolbar/ToolBarButtonPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/layout/toolbar/ToolBarButtonPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/misc/openlink/OpenLinksDirectlyPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/misc/openlink/OpenLinksDirectlyPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/misc/openlink/OpenLinksExternallyPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/misc/openlink/OpenLinksExternallyPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/misc/tracking/url/SanitizeUrlQueryPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/misc/tracking/url/SanitizeUrlQueryPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/utils/integrations/IntegrationsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/utils/integrations/IntegrationsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/utils/resourceid/SharedResourceIdPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/utils/resourceid/SharedResourceIdPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/utils/settings/SettingsBytecodePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/utils/settings/SettingsBytecodePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/reddit/utils/settings/SettingsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/reddit/utils/settings/SettingsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/fingerprints/ads/LegacyAdsFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/fingerprints/ads/LegacyAdsFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/fingerprints/ads/MainstreamAdsFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/fingerprints/ads/MainstreamAdsFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/fingerprints/litho/LithoThemeFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/fingerprints/litho/LithoThemeFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/fingerprints/opus/CodecSelectorFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/fingerprints/opus/CodecSelectorFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/ads/AbstractAdsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/ads/AbstractAdsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/captions/AbstractAutoCaptionsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/captions/AbstractAutoCaptionsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/litho/ComponentParserPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/litho/ComponentParserPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/litho/LithoThemePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/litho/LithoThemePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/mapping/ResourceMappingPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/mapping/ResourceMappingPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/mapping/ResourceType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/mapping/ResourceType.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/microg/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/microg/Constants.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/microg/MicroGBytecodeHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/microg/MicroGBytecodeHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/microg/MicroGManifestHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/microg/MicroGManifestHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/microg/MicroGResourceHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/microg/MicroGResourceHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/opus/AbstractOpusCodecsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/opus/AbstractOpusCodecsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/shared/patch/packagename/PackageNamePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/shared/patch/packagename/PackageNamePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/ads/general/GeneralAdsBytecodePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/ads/general/GeneralAdsBytecodePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/ads/general/GeneralAdsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/ads/general/GeneralAdsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/ads/getpremium/HideGetPremiumPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/ads/getpremium/HideGetPremiumPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/ads/video/VideoAdsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/ads/video/VideoAdsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/flyoutpanel/feed/FeedFlyoutPanelPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/flyoutpanel/feed/FeedFlyoutPanelPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/flyoutpanel/player/ChangeTogglePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/flyoutpanel/player/ChangeTogglePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/flyoutpanel/player/PlayerFlyoutPanelPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/flyoutpanel/player/PlayerFlyoutPanelPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/fullscreen/quickactions/QuickActionsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/fullscreen/quickactions/QuickActionsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/accountmenu/AccountMenuPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/accountmenu/AccountMenuPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/autocaptions/AutoCaptionsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/autocaptions/AutoCaptionsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/castbutton/HideCastButtonPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/castbutton/HideCastButtonPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/categorybar/CategoryBarPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/categorybar/CategoryBarPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/handle/HideHandlePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/handle/HideHandlePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/headerswitch/HeaderSwitchPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/headerswitch/HeaderSwitchPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/layout/LayoutComponentsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/layout/LayoutComponentsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/mixplaylists/MixPlaylistsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/mixplaylists/MixPlaylistsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/snackbar/ForceSnackbarTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/snackbar/ForceSnackbarTheme.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/snackbar/HideSnackBarPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/snackbar/HideSnackBarPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/songsearch/SongSearchPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/songsearch/SongSearchPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/startpage/ChangeStartPagePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/startpage/ChangeStartPagePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/suggestions/SuggestionsShelfPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/suggestions/SuggestionsShelfPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/toolbar/ToolBarButtonPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/toolbar/ToolBarButtonPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/general/widesearchbar/WideSearchBarPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/general/widesearchbar/WideSearchBarPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/layout/header/CustomBrandingHeadingPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/layout/header/CustomBrandingHeadingPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/layout/materialyou/MaterialYouPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/layout/materialyou/MaterialYouPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/layout/theme/GeneralThemePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/layout/theme/GeneralThemePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/layout/theme/ThemePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/layout/tooltip/TooltipContentViewPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/layout/tooltip/TooltipContentViewPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/ambientmode/AmbientModeSwitchPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/ambientmode/AmbientModeSwitchPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/codec/audio/ForceOpusCodecPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/codec/audio/ForceOpusCodecPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/codec/video/ForceVideoCodecPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/codec/video/ForceVideoCodecPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/debugging/DebuggingPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/debugging/DebuggingPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/externalbrowser/ExternalBrowserPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/externalbrowser/ExternalBrowserPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/language/LanguageSelectorPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/language/LanguageSelectorPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/layoutswitch/LayoutSwitchPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/layoutswitch/LayoutSwitchPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/quic/QUICProtocolPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/quic/QUICProtocolPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/spoofappversion/SpoofAppVersionPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/spoofappversion/SpoofAppVersionPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/tracking/SanitizeUrlQueryPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/tracking/SanitizeUrlQueryPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/translations/TranslationsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/translations/TranslationsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/misc/updatescreen/UpdateScreenPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/misc/updatescreen/UpdateScreenPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/navigation/label/NavigationLabelPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/navigation/label/NavigationLabelPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/overlaybutton/general/OverlayButtonsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/overlaybutton/general/OverlayButtonsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/overlaybutton/whitelist/WhitelistPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/overlaybutton/whitelist/WhitelistPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/player/hapticfeedback/HapticFeedBackPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/player/hapticfeedback/HapticFeedBackPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/player/infocards/HideInfoCardsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/player/infocards/HideInfoCardsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/player/musicbutton/HideMusicButtonPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/player/musicbutton/HideMusicButtonPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/player/seekmessage/SeekMessagePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/player/seekmessage/SeekMessagePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/player/speedoverlay/SpeedOverlayPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/player/speedoverlay/SpeedOverlayPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/seekbar/color/SeekbarColorPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/seekbar/color/SeekbarColorPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/seekbar/hide/HideSeekbarPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/seekbar/hide/HideSeekbarPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/seekbar/tapping/SeekbarTappingPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/seekbar/tapping/SeekbarTappingPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/seekbar/timestamps/HideTimeStampPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/seekbar/timestamps/HideTimeStampPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/shorts/shortscomponent/ShortsToolBarPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/shorts/shortscomponent/ShortsToolBarPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/swipe/controls/SwipeControlsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/swipe/controls/SwipeControlsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/fingerprints/SeekbarFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/fingerprints/SeekbarFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/fingerprints/TotalTimeFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/fingerprints/TotalTimeFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/fingerprints/VideoEndFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/fingerprints/VideoEndFingerprint.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/fix/clientspoof/ClientSpoofPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/fix/clientspoof/ClientSpoofPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/fix/swiperefresh/SwipeRefreshPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/fix/swiperefresh/SwipeRefreshPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/integrations/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/integrations/Constants.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/integrations/IntegrationsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/integrations/IntegrationsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/litho/LithoFilterPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/litho/LithoFilterPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/microg/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/microg/Constants.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/microg/MicroGBytecodePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/microg/MicroGBytecodePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/microg/MicroGPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/microg/MicroGPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/playerbutton/PlayerButtonHookPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/playerbutton/PlayerButtonHookPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/playercontrols/PlayerControlsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/playercontrols/PlayerControlsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/playerresponse/PlayerResponsePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/playerresponse/PlayerResponsePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/playertype/PlayerTypeHookPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/playertype/PlayerTypeHookPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/quickactions/QuickActionsHookPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/quickactions/QuickActionsHookPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/resourceid/SharedResourceIdPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/resourceid/SharedResourceIdPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/settings/ResourceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/settings/ResourceUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/settings/SettingsBytecodePatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/settings/SettingsBytecodePatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/settings/SettingsPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/settings/SettingsPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/sponsorblock/SponsorBlockPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/sponsorblock/SponsorBlockPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/toolbar/ToolBarHookPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/toolbar/ToolBarHookPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/videocpn/VideoCpnPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/videocpn/VideoCpnPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/utils/videoid/general/VideoIdPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/utils/videoid/general/VideoIdPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/video/hdr/DisableHdrVideoPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/video/hdr/DisableHdrVideoPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/video/quality/VideoQualityPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/video/quality/VideoQualityPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/patches/youtube/video/speed/PlaybackSpeedPatch.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/util/BytecodeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/util/BytecodeUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/util/ResourceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/util/ResourceUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/app/revanced/util/fingerprint/LiteralValueFingerprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/kotlin/app/revanced/util/fingerprint/LiteralValueFingerprint.kt -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/launcher/mipmap-hdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/launcher/mipmap-hdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/launcher/mipmap-mdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/launcher/mipmap-mdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/launcher/mipmap-xhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/launcher/mipmap-xhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/launcher/mipmap-xxhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/launcher/mipmap-xxhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-hdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-hdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-hdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-hdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-hdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-hdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-large-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-large-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-large-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-large-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-large-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-large-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-mdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-mdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-mdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-mdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-mdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-mdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xhdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xhdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xlarge-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xlarge-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xlarge-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xlarge-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xxhdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xxhdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xxhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xxhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xxxhdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xxxhdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xxxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xxxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_blue/resource/drawable-xxxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_blue/resource/drawable-xxxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/launcher/mipmap-hdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/launcher/mipmap-hdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/launcher/mipmap-mdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/launcher/mipmap-mdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/launcher/mipmap-xhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/launcher/mipmap-xhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/launcher/mipmap-xxhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/launcher/mipmap-xxhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/launcher/mipmap-xxxhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/launcher/mipmap-xxxhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-hdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-hdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-hdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-hdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-hdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-hdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-large-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-large-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-large-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-large-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-large-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-large-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-mdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-mdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-mdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-mdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-mdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-mdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xhdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xhdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xlarge-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xlarge-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xlarge-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xlarge-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xxhdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xxhdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xxhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xxhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xxxhdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xxxhdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xxxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xxxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/afn_red/resource/drawable-xxxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/afn_red/resource/drawable-xxxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/launcher/mipmap-hdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/launcher/mipmap-hdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/launcher/mipmap-mdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/launcher/mipmap-mdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/launcher/mipmap-xhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/launcher/mipmap-xhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/launcher/mipmap-xxhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/launcher/mipmap-xxhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/launcher/mipmap-xxxhdpi/ic_launcher_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/launcher/mipmap-xxxhdpi/ic_launcher_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-hdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-hdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-hdpi/action_bar_logo_release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-hdpi/action_bar_logo_release.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-hdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-hdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-hdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-hdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-large-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-large-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-large-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-large-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-large-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-large-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-mdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-mdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-mdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-mdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-mdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-mdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xhdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xhdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xlarge-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xlarge-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xlarge-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xlarge-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xxhdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xxhdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xxhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xxhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xxxhdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xxxhdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xxxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xxxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/mmt/resource/drawable-xxxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/mmt/resource/drawable-xxxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-hdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-hdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-hdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-hdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-hdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-hdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-large-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-large-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-large-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-large-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-large-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-large-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-mdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-mdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-mdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-mdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-mdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-mdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xlarge-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xlarge-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xlarge-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xlarge-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xxhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xxhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xxxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xxxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_black/resource/drawable-xxxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_black/resource/drawable-xxxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-hdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-hdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-hdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-hdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-hdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-hdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-large-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-large-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-large-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-large-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-large-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-large-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-mdpi/action_bar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-mdpi/action_bar_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-mdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-mdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-mdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-mdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xlarge-hdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xlarge-hdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xlarge-mdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xlarge-mdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xxhdpi/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xxhdpi/record.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xxxhdpi/logo_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xxxhdpi/logo_music.png -------------------------------------------------------------------------------- /src/main/resources/music/branding/vanced_light/resource/drawable-xxxhdpi/ytm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/branding/vanced_light/resource/drawable-xxxhdpi/ytm_logo.png -------------------------------------------------------------------------------- /src/main/resources/music/cast/layout/open_music_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/cast/layout/open_music_button.xml -------------------------------------------------------------------------------- /src/main/resources/music/flyout/layout-v21/music_menu_like_buttons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/flyout/layout-v21/music_menu_like_buttons.xml -------------------------------------------------------------------------------- /src/main/resources/music/settings/host/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/settings/host/values/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/music/settings/host/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/settings/host/values/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/settings/values-v21/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/settings/values-v21/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/sponsorblock/xml/sponsorblock_prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/sponsorblock/xml/sponsorblock_prefs.xml -------------------------------------------------------------------------------- /src/main/resources/music/spoofappversion/host/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/spoofappversion/host/values/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/music/startpage/host/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/startpage/host/values/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/bg-rBG/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/bg-rBG/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/bn/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/cs-rCZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/cs-rCZ/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/el-rGR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/el-rGR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/es-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/es-rES/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/fr-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/fr-rFR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/id-rID/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/id-rID/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/in/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/it-rIT/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/ja-rJP/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/ko-rKR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/ko-rKR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/nl-rNL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/nl-rNL/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/pl-rPL/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/pt-rBR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/ro-rRO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/ro-rRO/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/ru-rRU/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/tr-rTR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/uk-rUA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/uk-rUA/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/vi-rVN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/vi-rVN/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/zh-rCN/strings.xml -------------------------------------------------------------------------------- /src/main/resources/music/translations/zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/music/translations/zh-rTW/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/alternativethumbnails/host/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/alternativethumbnails/host/values/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/animated/raw/like_tap_feedback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/animated/raw/like_tap_feedback.json -------------------------------------------------------------------------------- /src/main/resources/youtube/animated/raw/pause_tap_feedback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/animated/raw/pause_tap_feedback.json -------------------------------------------------------------------------------- /src/main/resources/youtube/animated/raw/play_tap_feedback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/animated/raw/play_tap_feedback.json -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_blue/launcher/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_blue/launcher/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_blue/launcher/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_blue/launcher/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_blue/launcher/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_blue/launcher/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_blue/launcher/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_blue/launcher/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_blue/launcher/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/afn_red/launcher/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/afn_red/launcher/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/launcher/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/launcher/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable-hdpi/yt_wordmark_header_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable-hdpi/yt_wordmark_header_dark.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable-hdpi/yt_wordmark_header_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable-hdpi/yt_wordmark_header_light.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable-mdpi/yt_wordmark_header_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable-mdpi/yt_wordmark_header_dark.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable-mdpi/yt_wordmark_header_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable-mdpi/yt_wordmark_header_light.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable-xhdpi/yt_wordmark_header_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable-xhdpi/yt_wordmark_header_dark.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__0.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__1.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__2.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__3.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable/$avd_anim__4.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/mmt/splash/drawable/avd_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/mmt/splash/drawable/avd_anim.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/revancify_blue/launcher/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/revancify_blue/launcher/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/revancify_blue/launcher/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/revancify_blue/launcher/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/revancify_blue/launcher/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/revancify_blue/launcher/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/revancify_blue/launcher/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/revancify_blue/launcher/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/revancify_red/launcher/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/revancify_red/launcher/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/revancify_red/launcher/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/revancify_red/launcher/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/revancify_red/launcher/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/revancify_red/launcher/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/revancify_red/launcher/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/revancify_red/launcher/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/revancify_red/launcher/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/revancify_red/launcher/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_black/launcher/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_black/launcher/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_black/launcher/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_black/launcher/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_black/launcher/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_black/launcher/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_black/launcher/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_black/launcher/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_black/launcher/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_black/launcher/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_light/launcher/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_light/launcher/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_light/launcher/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_light/launcher/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_light/launcher/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_light/launcher/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_light/launcher/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_light/launcher/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/branding/vanced_light/launcher/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/branding/vanced_light/launcher/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/resources/youtube/doubleback/host/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/doubleback/host/values/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/doubletap/values-v21/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/doubletap/values-v21/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/materialyou/drawable-night-v31/new_content_dot_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/materialyou/drawable-night-v31/new_content_dot_background.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/materialyou/drawable-v31/new_content_count_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/materialyou/drawable-v31/new_content_count_background.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/materialyou/drawable-v31/new_content_dot_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/materialyou/drawable-v31/new_content_dot_background.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/materialyou/host/values-v31/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/materialyou/host/values-v31/colors.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/materialyou/layout-v31/new_content_count.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/materialyou/layout-v31/new_content_count.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/bold/drawable-xxhdpi/ic_vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/bold/drawable-xxhdpi/ic_vr.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/bold/drawable-xxhdpi/revanced_copy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/bold/drawable-xxhdpi/revanced_copy_icon.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/bold/drawable-xxhdpi/revanced_download_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/bold/drawable-xxhdpi/revanced_download_icon.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/bold/drawable-xxhdpi/revanced_speed_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/bold/drawable-xxhdpi/revanced_speed_icon.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/rounded/drawable-xxhdpi/ic_vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/rounded/drawable-xxhdpi/ic_vr.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/rounded/drawable-xxhdpi/revanced_copy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/rounded/drawable-xxhdpi/revanced_copy_icon.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/rounded/drawable-xxhdpi/revanced_speed_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/rounded/drawable-xxhdpi/revanced_speed_icon.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/shared/drawable/playlist_repeat_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/shared/drawable/playlist_repeat_button.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/shared/drawable/playlist_shuffle_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/shared/drawable/playlist_shuffle_button.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/shared/drawable/revanced_repeat_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/shared/drawable/revanced_repeat_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/shared/host/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/shared/host/values/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/thin/drawable-xxhdpi/ic_vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/thin/drawable-xxhdpi/ic_vr.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/thin/drawable-xxhdpi/revanced_copy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/thin/drawable-xxhdpi/revanced_copy_icon.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/thin/drawable-xxhdpi/revanced_download_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/thin/drawable-xxhdpi/revanced_download_icon.png -------------------------------------------------------------------------------- /src/main/resources/youtube/overlaybuttons/thin/drawable-xxhdpi/revanced_speed_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/overlaybuttons/thin/drawable-xxhdpi/revanced_speed_icon.png -------------------------------------------------------------------------------- /src/main/resources/youtube/quality/host/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/quality/host/values/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/host/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/host/values/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable-xxhdpi/empty_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable-xxhdpi/empty_icon.png -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/about_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/about_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/accessibility_settings_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/accessibility_settings_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/account_switcher_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/account_switcher_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/ads_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/ads_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/alt_thumbnails_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/alt_thumbnails_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/auto_play_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/auto_play_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/billing_and_payment_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/billing_and_payment_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/bottom_player_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/bottom_player_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/captions_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/captions_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/data_saving_settings_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/data_saving_settings_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/flyout_menu_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/flyout_menu_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/fullscreen_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/fullscreen_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/general_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/general_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/history_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/history_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/live_chat_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/live_chat_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/misc_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/misc_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/navigation_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/navigation_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/notification_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/notification_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/offline_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/offline_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/overlay_button_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/overlay_button_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/pair_with_tv_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/pair_with_tv_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/parent_tools_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/parent_tools_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/player_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/player_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/privacy_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/privacy_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/revanced_disable_hdr_video_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/revanced_disable_hdr_video_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/revanced_enable_swipe_volume_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/revanced_enable_swipe_volume_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/revanced_hide_button_report_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/revanced_hide_button_report_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/revanced_hide_create_button_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/revanced_hide_create_button_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/revanced_hide_home_button_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/revanced_hide_home_button_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/revanced_ryd_settings_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/revanced_ryd_settings_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/sb_enable_create_segment_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/sb_enable_create_segment_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/sb_enable_voting_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/sb_enable_voting_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/seekbar_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/seekbar_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/shorts_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/shorts_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/swipe_controls_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/swipe_controls_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/video_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/video_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/video_quality_settings_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/video_quality_settings_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/icons/drawable/your_data_key_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/icons/drawable/your_data_key_icon.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/layout/revanced_settings_with_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/layout/revanced_settings_with_toolbar.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/values-v21/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/values-v21/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/settings/xml/revanced_prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/settings/xml/revanced_prefs.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_remix_filled_white_24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_remix_filled_white_24.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_comment_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_comment_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_dislike_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_dislike_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_like_off_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_like_off_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_like_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_like_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-hdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_remix_filled_white_24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_remix_filled_white_24.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_comment_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_comment_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_dislike_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_dislike_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_like_off_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_like_off_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_like_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_like_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-mdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_remix_filled_white_24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_remix_filled_white_24.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_comment_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_comment_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_like_off_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_like_off_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_like_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_like_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xhdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_remix_filled_white_24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_remix_filled_white_24.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_comment_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_comment_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_like_off_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_like_off_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_like_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_like_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxhdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_remix_filled_white_24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_remix_filled_white_24.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_comment_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_comment_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_like_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_like_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable-xxxhdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable/ic_right_comment_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable/ic_right_comment_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable/ic_right_dislike_off_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable/ic_right_dislike_off_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable/ic_right_like_off_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable/ic_right_like_off_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable/ic_right_share_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable/ic_right_share_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable/reel_camera_bold_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable/reel_camera_bold_24dp.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable/reel_more_vertical_bold_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable/reel_more_vertical_bold_24dp.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outline/drawable/reel_search_bold_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outline/drawable/reel_search_bold_24dp.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outlinecircle/drawable-hdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outlinecircle/drawable-hdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outlinecircle/drawable-mdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outlinecircle/drawable-mdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outlinecircle/drawable-xhdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outlinecircle/drawable-xhdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outlinecircle/drawable-xxhdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outlinecircle/drawable-xxhdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outlinecircle/drawable/ic_right_comment_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outlinecircle/drawable/ic_right_comment_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outlinecircle/drawable/ic_right_dislike_off_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outlinecircle/drawable/ic_right_dislike_off_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outlinecircle/drawable/ic_right_like_off_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outlinecircle/drawable/ic_right_like_off_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/outlinecircle/drawable/ic_right_share_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/outlinecircle/drawable/ic_right_share_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_remix_filled_white_24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_remix_filled_white_24.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_comment_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_comment_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_dislike_off_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_dislike_off_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_dislike_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_dislike_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_like_off_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_like_off_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_like_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_like_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-hdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_remix_filled_white_24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_remix_filled_white_24.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_comment_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_comment_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_dislike_off_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_dislike_off_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_dislike_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_dislike_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_like_off_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_like_off_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_like_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_like_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-mdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_remix_filled_white_24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_remix_filled_white_24.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_comment_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_comment_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_like_on_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_like_on_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xhdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xxhdpi/ic_remix_filled_white_24.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xxhdpi/ic_remix_filled_white_24.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xxhdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xxhdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xxhdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xxhdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xxhdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xxhdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xxxhdpi/ic_right_dislike_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xxxhdpi/ic_right_dislike_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xxxhdpi/ic_right_like_on_32c.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xxxhdpi/ic_right_like_on_32c.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable-xxxhdpi/ic_right_share_shadowed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable-xxxhdpi/ic_right_share_shadowed.webp -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable/ic_right_comment_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable/ic_right_comment_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable/ic_right_dislike_off_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable/ic_right_dislike_off_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable/ic_right_like_off_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable/ic_right_like_off_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/shorts/tiktok/drawable/ic_right_share_32c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/shorts/tiktok/drawable/ic_right_share_32c.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$$avd_anim__1__0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$$avd_anim__1__0.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$$avd_anim__1__1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$$avd_anim__1__1.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$$avd_anim__2__0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$$avd_anim__2__0.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$$avd_anim__2__1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$$avd_anim__2__1.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$$avd_anim__3__0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$$avd_anim__3__0.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$$avd_anim__3__1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$$avd_anim__3__1.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$avd_anim__0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$avd_anim__0.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$avd_anim__1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$avd_anim__1.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$avd_anim__2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$avd_anim__2.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$avd_anim__3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$avd_anim__3.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/$avd_anim__4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/$avd_anim__4.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/drawable/avd_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/drawable/avd_anim.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/splashscreen/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/splashscreen/values-v31/styles.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_adjust.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_adjust.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_compare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_compare.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_edit.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_logo.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_publish.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_voting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/default/drawable/ic_sb_voting.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/default/layout/new_segment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/default/layout/new_segment.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_adjust.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_adjust.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_backward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_backward.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_compare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_compare.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_edit.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_forward.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_logo.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_publish.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_voting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/outline/drawable/ic_sb_voting.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/outline/layout/new_segment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/outline/layout/new_segment.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/shared/drawable/ns_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/shared/drawable/ns_bg.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/shared/drawable/sb_btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/shared/drawable/sb_btn_bg.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/shared/host/layout/youtube_controls_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/shared/host/layout/youtube_controls_layout.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/shared/layout/inline_sponsor_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/shared/layout/inline_sponsor_overlay.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/sponsorblock/shared/layout/skip_sponsor_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/sponsorblock/shared/layout/skip_sponsor_button.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/spoofappversion/host/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/spoofappversion/host/values/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/startpage/host/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/startpage/host/values/arrays.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/swipecontrols/drawable/ic_sc_brightness_auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/swipecontrols/drawable/ic_sc_brightness_auto.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/swipecontrols/drawable/ic_sc_brightness_manual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/swipecontrols/drawable/ic_sc_brightness_manual.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/swipecontrols/drawable/ic_sc_volume_mute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/swipecontrols/drawable/ic_sc_volume_mute.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/swipecontrols/drawable/ic_sc_volume_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/swipecontrols/drawable/ic_sc_volume_normal.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/ar/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/bg-rBG/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/bg-rBG/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/bn/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/de-rDE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/de-rDE/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/el-rGR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/el-rGR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/es-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/es-rES/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/fi-rFI/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/fi-rFI/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/fr-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/fr-rFR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/hu-rHU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/hu-rHU/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/id-rID/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/id-rID/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/in/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/it-rIT/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/ja-rJP/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/ko-rKR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/ko-rKR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/pl-rPL/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/pt-rBR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/ru-rRU/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/tr-rTR/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/uk-rUA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/uk-rUA/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/vi-rVN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/vi-rVN/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/zh-rCN/strings.xml -------------------------------------------------------------------------------- /src/main/resources/youtube/translations/zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufusin/revanced-patches/HEAD/src/main/resources/youtube/translations/zh-rTW/strings.xml --------------------------------------------------------------------------------