├── .gitignore ├── README.md ├── generate-patches.sh ├── patch.sh ├── patches ├── binary_replacements │ ├── original │ │ └── AndroidManifest.xml │ └── res │ │ ├── drawable-xxhdpi │ │ └── wine_game_loading.jpg │ │ └── raw │ │ ├── click.mp3 │ │ ├── ps_click_music.wav │ │ ├── scroll.wav │ │ └── tab_switch.wav ├── diffs │ ├── AndroidManifest.xml.patch │ ├── apktool.yml.patch │ ├── res │ │ ├── layout-sw600dp │ │ │ ├── activity_button_setting.xml.patch │ │ │ ├── llauncher_activity_guide_no_connected_dev.xml.patch │ │ │ └── llauncher_activity_guide_usb_request_permission.xml.patch │ │ ├── layout │ │ │ ├── activity_button_setting.xml.patch │ │ │ ├── comm_dialog_confirm_dialog.xml.patch │ │ │ ├── comm_dialog_fragment.xml.patch │ │ │ ├── comm_dialog_fragment_verify.xml.patch │ │ │ ├── comm_dialog_tips_with_check.xml.patch │ │ │ ├── comm_view_focusable_tab_layout_item.xml.patch │ │ │ ├── comm_view_top_bar.xml.patch │ │ │ ├── dialog_env_params_input_layout.xml.patch │ │ │ ├── dialog_fragment_guide_step_first.xml.patch │ │ │ ├── dialog_hid_model_popup.xml.patch │ │ │ ├── dialog_no_support_model_popup.xml.patch │ │ │ ├── edit_pro_file_name_dialog.xml.patch │ │ │ ├── env_params_input_dialog_layout.xml.patch │ │ │ ├── llauncher_activity_gamedetail.xml.patch │ │ │ ├── llauncher_activity_guide_button_a.xml.patch │ │ │ ├── llauncher_activity_guide_game_pad_cover_1.xml.patch │ │ │ ├── llauncher_activity_guide_game_pad_cover_2.xml.patch │ │ │ ├── llauncher_activity_guide_game_pad_promotional_1.xml.patch │ │ │ ├── llauncher_activity_guide_game_pad_promotional_2.xml.patch │ │ │ ├── llauncher_activity_guide_game_pad_promotional_3.xml.patch │ │ │ ├── llauncher_activity_guide_hight_light.xml.patch │ │ │ ├── llauncher_activity_guide_no_connected_dev.xml.patch │ │ │ ├── llauncher_activity_guide_not_connect_game_pad.xml.patch │ │ │ ├── llauncher_activity_guide_request_read_contacts_permission.xml.patch │ │ │ ├── llauncher_activity_guide_test_click_btn.xml.patch │ │ │ ├── llauncher_activity_guide_usb_request_permission.xml.patch │ │ │ ├── llauncher_activity_launcher_main.xml.patch │ │ │ ├── llauncher_activity_new_launcher_main.xml.patch │ │ │ ├── llauncher_dialog_compatible.xml.patch │ │ │ ├── llauncher_dialog_download_game_info.xml.patch │ │ │ ├── llauncher_dialog_fragment_apk_update.xml.patch │ │ │ ├── llauncher_dialog_fragment_button_mapping.xml.patch │ │ │ ├── llauncher_dialog_fragment_device_pop.xml.patch │ │ │ ├── llauncher_dialog_fragment_mapping_mode.xml.patch │ │ │ ├── llauncher_dialog_fragment_radiator_temp.xml.patch │ │ │ ├── llauncher_dialog_fragment_record_video.xml.patch │ │ │ ├── llauncher_dialog_fragment_requeest_ble_permission.xml.patch │ │ │ ├── llauncher_dialog_fragment_scan_device_pop.xml.patch │ │ │ ├── llauncher_dialog_news_detail.xml.patch │ │ │ ├── llauncher_dialog_select_import_game_type.xml.patch │ │ │ ├── llauncher_dialog_select_steam_client_version.xml.patch │ │ │ ├── llauncher_dialog_select_steam_launch_option.xml.patch │ │ │ ├── llauncher_game_sir_box_big_logo.xml.patch │ │ │ ├── llauncher_item_cardline_album.xml.patch │ │ │ ├── llauncher_popup_game_operation.xml.patch │ │ │ ├── llauncher_popup_home_common_focus.xml.patch │ │ │ ├── llauncher_promotional_dialog.xml.patch │ │ │ ├── llauncher_v4_search_activity.xml.patch │ │ │ ├── llauncher_view_my_top_platform_pc_emulator_info.xml.patch │ │ │ ├── map_key_oper_guide_layout.xml.patch │ │ │ ├── pay_popup_hint.xml.patch │ │ │ ├── pc_stream_desc_focus_dialog.xml.patch │ │ │ ├── pc_stream_list_title_menu_dialog.xml.patch │ │ │ ├── popup_common.xml.patch │ │ │ ├── popup_firmware_list.xml.patch │ │ │ ├── wiemu_dialog_game_pad_manager.xml.patch │ │ │ ├── winemu_dialog_confirm_dialog.xml.patch │ │ │ ├── winemu_dialog_game_circle_qr.xml.patch │ │ │ ├── winemu_promotional_dialog.xml.patch │ │ │ ├── winemu_reinstall_dep_dialog.xml.patch │ │ │ └── xja_dialog_advanced_features.xml.patch │ │ ├── values-ja │ │ │ └── strings.xml.patch │ │ ├── values │ │ │ ├── attrs.xml.patch │ │ │ ├── colors.xml.patch │ │ │ ├── ids.xml.patch │ │ │ ├── public.xml.patch │ │ │ ├── strings.xml.patch │ │ │ └── styles.xml.patch │ │ └── xml │ │ │ ├── locales_config.xml.patch │ │ │ └── network_security_config.xml.patch │ ├── smali │ │ └── androidx │ │ │ ├── appcompat │ │ │ └── widget │ │ │ │ └── VectorEnabledTintResources.smali.patch │ │ │ ├── core │ │ │ ├── graphics │ │ │ │ └── TypefaceCompatApi21Impl.smali.patch │ │ │ └── view │ │ │ │ ├── KeyEventDispatcher.smali.patch │ │ │ │ ├── ViewCompat.smali.patch │ │ │ │ ├── WindowInsetsCompat$BuilderImpl20.smali.patch │ │ │ │ └── WindowInsetsCompat$Impl20.smali.patch │ │ │ ├── loader │ │ │ └── app │ │ │ │ └── LoaderManagerImpl.smali.patch │ │ │ ├── media3 │ │ │ └── exoplayer │ │ │ │ └── audio │ │ │ │ └── DefaultAudioSink.smali.patch │ │ │ └── recyclerview │ │ │ └── widget │ │ │ ├── DefaultItemAnimator.smali.patch │ │ │ ├── RecyclerView.smali.patch │ │ │ └── ViewInfoStore.smali.patch │ ├── smali_classes2 │ │ ├── androidx │ │ │ └── viewpager │ │ │ │ └── widget │ │ │ │ └── ViewPager.smali.patch │ │ ├── cn │ │ │ ├── jiguang │ │ │ │ ├── ag │ │ │ │ │ ├── e.smali.patch │ │ │ │ │ ├── f.smali.patch │ │ │ │ │ ├── g.smali.patch │ │ │ │ │ ├── i.smali.patch │ │ │ │ │ ├── j.smali.patch │ │ │ │ │ ├── k.smali.patch │ │ │ │ │ ├── l.smali.patch │ │ │ │ │ ├── n.smali.patch │ │ │ │ │ ├── o.smali.patch │ │ │ │ │ ├── p.smali.patch │ │ │ │ │ └── q.smali.patch │ │ │ │ ├── aw │ │ │ │ │ └── k.smali.patch │ │ │ │ ├── ax │ │ │ │ │ └── m.smali.patch │ │ │ │ └── common │ │ │ │ │ └── app │ │ │ │ │ └── helper │ │ │ │ │ ├── d.smali.patch │ │ │ │ │ └── f.smali.patch │ │ │ └── jpush │ │ │ │ └── android │ │ │ │ ├── api │ │ │ │ ├── JPushInterface.smali.patch │ │ │ │ └── TagAliasCallback.smali.patch │ │ │ │ ├── data │ │ │ │ └── JPushConfig.smali.patch │ │ │ │ ├── helper │ │ │ │ └── Logger.smali.patch │ │ │ │ ├── local │ │ │ │ └── ActionHelper.smali.patch │ │ │ │ └── ui │ │ │ │ └── d.smali.patch │ │ └── com │ │ │ ├── arialyy │ │ │ └── aria │ │ │ │ └── orm │ │ │ │ ├── DBConfig.smali.patch │ │ │ │ └── SqlHelper.smali.patch │ │ │ ├── bumptech │ │ │ └── glide │ │ │ │ └── util │ │ │ │ └── pool │ │ │ │ ├── GlideTrace.smali.patch │ │ │ │ └── StateVerifier.smali.patch │ │ │ ├── cmic │ │ │ └── sso │ │ │ │ └── sdk │ │ │ │ └── view │ │ │ │ └── LoginAuthActivity.smali.patch │ │ │ ├── coder │ │ │ └── ffmpeg │ │ │ │ └── jni │ │ │ │ └── FFmpegConfig.smali.patch │ │ │ ├── drake │ │ │ └── net │ │ │ │ └── interceptor │ │ │ │ └── NetOkHttpInterceptor.smali.patch │ │ │ ├── google │ │ │ └── android │ │ │ │ └── gms │ │ │ │ └── common │ │ │ │ ├── GooglePlayServicesUtilLight.smali.patch │ │ │ │ └── internal │ │ │ │ └── GmsClientSupervisor.smali.patch │ │ │ └── mainli │ │ │ └── blur │ │ │ └── BitmapBlur.smali.patch │ ├── smali_classes3 │ │ └── com │ │ │ ├── google │ │ │ └── protobuf │ │ │ │ └── ExtensionRegistryLite.smali.patch │ │ │ └── jieli │ │ │ └── jl_bt_ota │ │ │ ├── impl │ │ │ └── RcspAuth.smali.patch │ │ │ └── util │ │ │ └── JL_Log.smali.patch │ ├── smali_classes4 │ │ └── com │ │ │ ├── nirvana │ │ │ └── tools │ │ │ │ └── logger │ │ │ │ └── UaidTracker.smali.patch │ │ │ ├── shuyu │ │ │ └── gsyvideoplayer │ │ │ │ └── utils │ │ │ │ └── GSYVideoType.smali.patch │ │ │ ├── streaming │ │ │ ├── binding │ │ │ │ └── input │ │ │ │ │ └── virtual_controller │ │ │ │ │ └── VirtualControllerElement.smali.patch │ │ │ └── nvstream │ │ │ │ └── http │ │ │ │ └── NvHTTP.smali.patch │ │ │ ├── uc │ │ │ └── crashsdk │ │ │ │ ├── a │ │ │ │ ├── d.smali.patch │ │ │ │ └── g.smali.patch │ │ │ │ ├── b.smali.patch │ │ │ │ └── export │ │ │ │ └── CrashApi.smali.patch │ │ │ ├── xiaoji │ │ │ ├── egggame │ │ │ │ └── wxapi │ │ │ │ │ └── WXEntryActivity$getWXUserInfo$1.smali.patch │ │ │ └── module │ │ │ │ └── operations │ │ │ │ ├── key │ │ │ │ └── ConfigData.smali.patch │ │ │ │ └── utility │ │ │ │ └── Log.smali.patch │ │ │ └── xj │ │ │ ├── adb │ │ │ └── wifiui │ │ │ │ ├── http │ │ │ │ └── HttpConfig.smali.patch │ │ │ │ └── net │ │ │ │ └── interceptor │ │ │ │ └── NetOkHttpInterceptor.smali.patch │ │ │ ├── app │ │ │ ├── App.smali.patch │ │ │ └── SplashActivity.smali.patch │ │ │ ├── base │ │ │ └── language │ │ │ │ └── GHLocaleManager.smali.patch │ │ │ ├── cloud │ │ │ └── DataBinderMapperImpl.smali.patch │ │ │ ├── common │ │ │ ├── R$id.smali.patch │ │ │ ├── data │ │ │ │ └── list │ │ │ │ │ └── CardLineData.smali.patch │ │ │ ├── http │ │ │ │ └── EggGameHttpConfig.smali.patch │ │ │ ├── preview │ │ │ │ ├── PreviewImageFragment.smali.patch │ │ │ │ └── PreviewVideoFragment.smali.patch │ │ │ ├── service │ │ │ │ └── IUmengService.smali.patch │ │ │ ├── user │ │ │ │ └── UserManager.smali.patch │ │ │ ├── utils │ │ │ │ ├── BatteryUtil.smali.patch │ │ │ │ └── PermissionUtils.smali.patch │ │ │ └── view │ │ │ │ ├── dialog │ │ │ │ └── permission │ │ │ │ │ └── RequestBlePermissionDialogFragment.smali.patch │ │ │ │ └── tab │ │ │ │ └── CommonTextTabLayout.smali.patch │ │ │ ├── game │ │ │ └── ui │ │ │ │ └── game_library │ │ │ │ └── GameLibraryActivity.smali.patch │ │ │ └── winemu │ │ │ ├── PcEmuSetupDialog.smali.patch │ │ │ ├── WineActivity.smali.patch │ │ │ └── settings │ │ │ └── models │ │ │ └── PcGameSettingsKt.smali.patch │ ├── smali_classes5 │ │ └── com │ │ │ ├── xj │ │ │ ├── landscape │ │ │ │ └── launcher │ │ │ │ │ ├── LandscapeLauncherApp.smali.patch │ │ │ │ │ ├── LandscapeLauncherAppKt.smali.patch │ │ │ │ │ ├── config │ │ │ │ │ └── EggGameApi.smali.patch │ │ │ │ │ ├── data │ │ │ │ │ └── mock │ │ │ │ │ │ └── MockUtilsKt.smali.patch │ │ │ │ │ ├── launcher │ │ │ │ │ ├── LauncherHelper.smali.patch │ │ │ │ │ └── strategy │ │ │ │ │ │ └── PsRemotePlayLaunchStrategy.smali.patch │ │ │ │ │ ├── router │ │ │ │ │ ├── RouterUtils$checkGuideStep$1.smali.patch │ │ │ │ │ └── RouterUtils.smali.patch │ │ │ │ │ ├── ui │ │ │ │ │ ├── MainPageFragment.smali.patch │ │ │ │ │ ├── compatible │ │ │ │ │ │ └── CompatibleDialog.smali.patch │ │ │ │ │ ├── device │ │ │ │ │ │ └── ScanDeviceActivity.smali.patch │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── NewsDetailDialog$init$5.smali.patch │ │ │ │ │ │ └── NewsDetailDialog.smali.patch │ │ │ │ │ ├── gamedetail │ │ │ │ │ │ ├── GameDetailActivity.smali.patch │ │ │ │ │ │ ├── GameVideoActivity$mPlayerListener$1.smali.patch │ │ │ │ │ │ └── GameVideoActivity.smali.patch │ │ │ │ │ ├── guide │ │ │ │ │ │ ├── GuideCreateAvatarActivity.smali.patch │ │ │ │ │ │ ├── GuideCreateInfoActivity.smali.patch │ │ │ │ │ │ ├── GuideKeypadOperationActivity.smali.patch │ │ │ │ │ │ └── GuideRequestNotificationPermissionActivity.smali.patch │ │ │ │ │ ├── main │ │ │ │ │ │ ├── LandscapeLauncherMainActivity.smali.patch │ │ │ │ │ │ ├── me │ │ │ │ │ │ │ ├── MyGamesItemData$Companion.smali.patch │ │ │ │ │ │ │ ├── MyGamesView.smali.patch │ │ │ │ │ │ │ └── childlist │ │ │ │ │ │ │ │ └── GameChildListView$loadData$1.smali.patch │ │ │ │ │ │ └── viewholders │ │ │ │ │ │ │ └── PcEmulatorInfoViewHolder.smali.patch │ │ │ │ │ ├── menu │ │ │ │ │ │ └── HomeLeftMenuDialog.smali.patch │ │ │ │ │ └── setting │ │ │ │ │ │ ├── SettingMainActivity.smali.patch │ │ │ │ │ │ └── tab │ │ │ │ │ │ ├── AboutSettingFragment.smali.patch │ │ │ │ │ │ └── HelpSettingFragment$initObserver$2.smali.patch │ │ │ │ │ ├── utils │ │ │ │ │ ├── HttpsUtils.smali.patch │ │ │ │ │ ├── OneKeyAliHelper.smali.patch │ │ │ │ │ └── share │ │ │ │ │ │ └── ShareLoginUtils$mBaseUiListener$1.smali.patch │ │ │ │ │ ├── view │ │ │ │ │ └── popup │ │ │ │ │ │ └── PromotionalDialogFragment.smali.patch │ │ │ │ │ └── vm │ │ │ │ │ ├── NewLandscapeLauncherMainVM$1.smali.patch │ │ │ │ │ └── SettingItemViewModel.smali.patch │ │ │ ├── mapping │ │ │ │ ├── interaction │ │ │ │ │ └── KeyboardEditService.smali.patch │ │ │ │ ├── keyconfig │ │ │ │ │ └── setting │ │ │ │ │ │ └── view │ │ │ │ │ │ └── MapGlobalSettingLayout.smali.patch │ │ │ │ ├── play │ │ │ │ │ └── dialog │ │ │ │ │ │ └── HidModelTipDialog.smali.patch │ │ │ │ ├── utils │ │ │ │ │ ├── ConfigUtil.smali.patch │ │ │ │ │ ├── EventConfigUtils.smali.patch │ │ │ │ │ └── touch │ │ │ │ │ │ └── gtouch │ │ │ │ │ │ └── GTouchUtils.smali.patch │ │ │ │ └── view │ │ │ │ │ ├── DialogAdvancedSettings$2.smali.patch │ │ │ │ │ ├── GestureView.smali.patch │ │ │ │ │ ├── KeyboardViewNew.smali.patch │ │ │ │ │ └── canvas │ │ │ │ │ └── ExShape.smali.patch │ │ │ ├── module_pcstream │ │ │ │ └── view │ │ │ │ │ └── PcStreamCheckNetDialog$onCreateDialog$3$1.smali.patch │ │ │ ├── ota │ │ │ │ └── data │ │ │ │ │ └── repository │ │ │ │ │ └── BaseOTARepository.smali.patch │ │ │ ├── standalone │ │ │ │ └── steam │ │ │ │ │ └── wrapper │ │ │ │ │ └── apis │ │ │ │ │ └── XjSteamPlayerApi.smali.patch │ │ │ ├── umeng │ │ │ │ ├── DataBinderMapperImpl.smali.patch │ │ │ │ └── soa │ │ │ │ │ └── IUmengServiceImpl.smali.patch │ │ │ └── winemu │ │ │ │ └── ui │ │ │ │ ├── dialog │ │ │ │ └── EditImportedGameInfoDialog.smali.patch │ │ │ │ └── env_setting │ │ │ │ └── WinEmuEnvListFragment.smali.patch │ │ │ └── zhpan │ │ │ └── bannerview │ │ │ └── utils │ │ │ └── BannerUtils.smali.patch │ ├── smali_classes6 │ │ └── kotlin │ │ │ └── time │ │ │ └── DurationJvmKt.smali.patch │ └── smali_classes7 │ │ ├── org │ │ ├── bouncycastle │ │ │ └── pqc │ │ │ │ ├── crypto │ │ │ │ └── newhope │ │ │ │ │ └── NewHope.smali.patch │ │ │ │ └── jcajce │ │ │ │ └── provider │ │ │ │ └── mceliece │ │ │ │ └── BCMcEliecePrivateKey.smali.patch │ │ ├── jcodec │ │ │ └── common │ │ │ │ └── tools │ │ │ │ └── Debug.smali.patch │ │ ├── repackage │ │ │ ├── a │ │ │ │ └── a │ │ │ │ │ └── a │ │ │ │ │ └── a │ │ │ │ │ └── a.smali.patch │ │ │ └── com │ │ │ │ ├── meizu │ │ │ │ └── flyme │ │ │ │ │ └── openidsdk │ │ │ │ │ └── b.smali.patch │ │ │ │ ├── vivo │ │ │ │ └── identifier │ │ │ │ │ └── IdentifierIdClient.smali.patch │ │ │ │ └── zui │ │ │ │ └── opendeviceidlibrary │ │ │ │ └── OpenDeviceId.smali.patch │ │ └── slf4j │ │ │ └── helpers │ │ │ └── Util.smali.patch │ │ └── tv │ │ └── danmaku │ │ └── ijk │ │ └── media │ │ └── exo2 │ │ ├── CacheHelper.smali.patch │ │ └── ExoSourceManager.smali.patch ├── files_to_add.txt ├── files_to_delete.txt ├── files_to_patch.txt └── new_files │ ├── original │ └── META-INF │ │ ├── GAMEHUB.RSA │ │ ├── GAMEHUB.SF │ │ └── MANIFEST.MF │ ├── res │ ├── drawable-en-xhdpi │ │ └── adjustment.webp │ ├── drawable-hdpi │ │ ├── abc_btn_check_to_on_mtrl_000.webp │ │ ├── abc_btn_check_to_on_mtrl_015.webp │ │ ├── abc_btn_radio_to_on_mtrl_000.webp │ │ ├── abc_btn_radio_to_on_mtrl_015.webp │ │ ├── abc_ic_commit_search_api_mtrl_alpha.webp │ │ ├── abc_scrubber_control_off_mtrl_alpha.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── abc_text_select_handle_left_mtrl.webp │ │ ├── abc_text_select_handle_middle_mtrl.webp │ │ ├── abc_text_select_handle_right_mtrl.webp │ │ ├── bar_arrows_left_black.webp │ │ ├── bar_arrows_left_white.webp │ │ ├── cast_abc_scrubber_control_off_mtrl_alpha.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── cast_ic_notification_0.webp │ │ ├── cast_ic_notification_1.webp │ │ ├── cast_ic_notification_2.webp │ │ ├── cast_ic_notification_on.webp │ │ ├── cast_ic_stop_circle_filled_grey600.webp │ │ ├── cast_ic_stop_circle_filled_white.webp │ │ ├── common_full_open_on_phone.webp │ │ ├── exo_edit_mode_logo.webp │ │ ├── exo_ic_audiotrack.webp │ │ ├── exo_ic_check.webp │ │ ├── exo_ic_chevron_left.webp │ │ ├── exo_ic_chevron_right.webp │ │ ├── exo_ic_default_album_image.webp │ │ ├── exo_ic_forward.webp │ │ ├── exo_ic_fullscreen_enter.webp │ │ ├── exo_ic_fullscreen_exit.webp │ │ ├── exo_ic_pause_circle_filled.webp │ │ ├── exo_ic_play_circle_filled.webp │ │ ├── exo_ic_rewind.webp │ │ ├── exo_ic_settings.webp │ │ ├── exo_ic_skip_next.webp │ │ ├── exo_ic_skip_previous.webp │ │ ├── exo_ic_speed.webp │ │ ├── exo_ic_subtitle_off.webp │ │ ├── exo_ic_subtitle_on.webp │ │ ├── exo_icon_circular_play.webp │ │ ├── exo_icon_fastforward.webp │ │ ├── exo_icon_fullscreen_enter.webp │ │ ├── exo_icon_fullscreen_exit.webp │ │ ├── exo_icon_next.webp │ │ ├── exo_icon_pause.webp │ │ ├── exo_icon_play.webp │ │ ├── exo_icon_previous.webp │ │ ├── exo_icon_repeat_all.webp │ │ ├── exo_icon_repeat_off.webp │ │ ├── exo_icon_repeat_one.webp │ │ ├── exo_icon_rewind.webp │ │ ├── exo_icon_shuffle_off.webp │ │ ├── exo_icon_shuffle_on.webp │ │ ├── exo_icon_stop.webp │ │ ├── exo_icon_vr.webp │ │ ├── googleg_disabled_color_18.webp │ │ ├── googleg_standard_color_18.webp │ │ ├── ic_audiotrack_dark.webp │ │ ├── ic_audiotrack_light.webp │ │ ├── ic_call_answer.webp │ │ ├── ic_call_answer_low.webp │ │ ├── ic_call_answer_video.webp │ │ ├── ic_call_answer_video_low.webp │ │ ├── ic_call_decline.webp │ │ ├── ic_call_decline_low.webp │ │ ├── ic_checked_checkbox.webp │ │ ├── ic_dialog_close_dark.webp │ │ ├── ic_dialog_close_light.webp │ │ ├── ic_eye.webp │ │ ├── ic_hdr.webp │ │ ├── ic_keyboard.webp │ │ ├── ic_limited_time.webp │ │ ├── ic_media_pause_dark.webp │ │ ├── ic_media_pause_light.webp │ │ ├── ic_media_play_dark.webp │ │ ├── ic_media_play_light.webp │ │ ├── ic_media_stop_dark.webp │ │ ├── ic_media_stop_light.webp │ │ ├── ic_mr_button_disabled_dark.webp │ │ ├── ic_mr_button_disabled_light.webp │ │ ├── ic_mr_button_disconnected_dark.webp │ │ ├── ic_mr_button_disconnected_light.webp │ │ ├── ic_mr_button_grey.webp │ │ ├── ic_rating_star_border.webp │ │ ├── ic_rating_star_solid.webp │ │ ├── ic_timing.webp │ │ ├── ic_unchecked_checkbox.webp │ │ ├── ic_vol_mute.webp │ │ ├── ic_vol_type_speaker_dark.webp │ │ ├── ic_vol_type_speaker_group_dark.webp │ │ ├── ic_vol_type_speaker_group_light.webp │ │ ├── ic_vol_type_speaker_light.webp │ │ ├── ic_vol_type_tv_dark.webp │ │ ├── ic_vol_type_tv_light.webp │ │ ├── ic_vol_unmute.webp │ │ ├── jpush_close.webp │ │ ├── jpush_ic_richpush_actionbar_back.webp │ │ ├── jpush_ic_richpush_actionbar_divider.webp │ │ ├── media3_icon_album.webp │ │ ├── media3_icon_artist.webp │ │ ├── media3_icon_block.webp │ │ ├── media3_icon_bookmark_filled.webp │ │ ├── media3_icon_bookmark_unfilled.webp │ │ ├── media3_icon_check_circle_filled.webp │ │ ├── media3_icon_check_circle_unfilled.webp │ │ ├── media3_icon_closed_captions.webp │ │ ├── media3_icon_closed_captions_off.webp │ │ ├── media3_icon_fast_forward.webp │ │ ├── media3_icon_feed.webp │ │ ├── media3_icon_flag_filled.webp │ │ ├── media3_icon_flag_unfilled.webp │ │ ├── media3_icon_heart_filled.webp │ │ ├── media3_icon_heart_unfilled.webp │ │ ├── media3_icon_minus.webp │ │ ├── media3_icon_minus_circle_filled.webp │ │ ├── media3_icon_minus_circle_unfilled.webp │ │ ├── media3_icon_next.webp │ │ ├── media3_icon_pause.webp │ │ ├── media3_icon_play.webp │ │ ├── media3_icon_playback_speed.webp │ │ ├── media3_icon_playback_speed_0_5.webp │ │ ├── media3_icon_playback_speed_0_8.webp │ │ ├── media3_icon_playback_speed_1_0.webp │ │ ├── media3_icon_playback_speed_1_2.webp │ │ ├── media3_icon_playback_speed_1_5.webp │ │ ├── media3_icon_playback_speed_1_8.webp │ │ ├── media3_icon_playback_speed_2_0.webp │ │ ├── media3_icon_playlist_add.webp │ │ ├── media3_icon_playlist_remove.webp │ │ ├── media3_icon_plus.webp │ │ ├── media3_icon_plus_circle_filled.webp │ │ ├── media3_icon_plus_circle_unfilled.webp │ │ ├── media3_icon_previous.webp │ │ ├── media3_icon_quality.webp │ │ ├── media3_icon_queue_add.webp │ │ ├── media3_icon_queue_next.webp │ │ ├── media3_icon_queue_remove.webp │ │ ├── media3_icon_radio.webp │ │ ├── media3_icon_repeat_all.webp │ │ ├── media3_icon_repeat_off.webp │ │ ├── media3_icon_repeat_one.webp │ │ ├── media3_icon_rewind.webp │ │ ├── media3_icon_settings.webp │ │ ├── media3_icon_share.webp │ │ ├── media3_icon_shuffle_off.webp │ │ ├── media3_icon_shuffle_on.webp │ │ ├── media3_icon_shuffle_star.webp │ │ ├── media3_icon_signal.webp │ │ ├── media3_icon_skip_back.webp │ │ ├── media3_icon_skip_back_10.webp │ │ ├── media3_icon_skip_back_15.webp │ │ ├── media3_icon_skip_back_30.webp │ │ ├── media3_icon_skip_back_5.webp │ │ ├── media3_icon_skip_forward.webp │ │ ├── media3_icon_skip_forward_10.webp │ │ ├── media3_icon_skip_forward_15.webp │ │ ├── media3_icon_skip_forward_30.webp │ │ ├── media3_icon_skip_forward_5.webp │ │ ├── media3_icon_star_filled.webp │ │ ├── media3_icon_star_unfilled.webp │ │ ├── media3_icon_stop.webp │ │ ├── media3_icon_subtitles.webp │ │ ├── media3_icon_subtitles_off.webp │ │ ├── media3_icon_sync.webp │ │ ├── media3_icon_thumb_down_filled.webp │ │ ├── media3_icon_thumb_down_unfilled.webp │ │ ├── media3_icon_thumb_up_filled.webp │ │ ├── media3_icon_thumb_up_unfilled.webp │ │ ├── media3_icon_volume_down.webp │ │ ├── media3_icon_volume_off.webp │ │ ├── media3_icon_volume_up.webp │ │ ├── media_session_service_notification_ic_music_note.webp │ │ ├── notification_oversize_large_icon_bg.webp │ │ ├── notify_panel_notification_icon_bg.webp │ │ ├── quantum_ic_art_track_grey600_48.webp │ │ ├── quantum_ic_bigtop_updates_white_24.webp │ │ ├── quantum_ic_cast_connected_white_24.webp │ │ ├── quantum_ic_cast_white_36.webp │ │ ├── quantum_ic_clear_white_24.webp │ │ ├── quantum_ic_closed_caption_grey600_36.webp │ │ ├── quantum_ic_closed_caption_white_36.webp │ │ ├── quantum_ic_forward_10_white_24.webp │ │ ├── quantum_ic_forward_30_grey600_36.webp │ │ ├── quantum_ic_forward_30_white_24.webp │ │ ├── quantum_ic_forward_30_white_36.webp │ │ ├── quantum_ic_keyboard_arrow_down_white_36.webp │ │ ├── quantum_ic_pause_circle_filled_grey600_36.webp │ │ ├── quantum_ic_pause_circle_filled_white_36.webp │ │ ├── quantum_ic_pause_grey600_36.webp │ │ ├── quantum_ic_pause_grey600_48.webp │ │ ├── quantum_ic_pause_white_24.webp │ │ ├── quantum_ic_play_arrow_grey600_36.webp │ │ ├── quantum_ic_play_arrow_grey600_48.webp │ │ ├── quantum_ic_play_arrow_white_24.webp │ │ ├── quantum_ic_play_circle_filled_grey600_36.webp │ │ ├── quantum_ic_play_circle_filled_white_36.webp │ │ ├── quantum_ic_refresh_white_24.webp │ │ ├── quantum_ic_replay_10_white_24.webp │ │ ├── quantum_ic_replay_30_grey600_36.webp │ │ ├── quantum_ic_replay_30_white_24.webp │ │ ├── quantum_ic_replay_30_white_36.webp │ │ ├── quantum_ic_replay_white_24.webp │ │ ├── quantum_ic_skip_next_grey600_36.webp │ │ ├── quantum_ic_skip_next_white_24.webp │ │ ├── quantum_ic_skip_next_white_36.webp │ │ ├── quantum_ic_skip_previous_grey600_36.webp │ │ ├── quantum_ic_skip_previous_white_24.webp │ │ ├── quantum_ic_skip_previous_white_36.webp │ │ ├── quantum_ic_stop_grey600_36.webp │ │ ├── quantum_ic_stop_grey600_48.webp │ │ ├── quantum_ic_stop_white_24.webp │ │ ├── quantum_ic_volume_off_grey600_36.webp │ │ ├── quantum_ic_volume_off_white_36.webp │ │ ├── quantum_ic_volume_up_grey600_36.webp │ │ ├── quantum_ic_volume_up_white_36.webp │ │ ├── ucrop_ic_angle.webp │ │ └── ucrop_ic_done.webp │ ├── drawable-ldpi │ │ ├── bar_arrows_left_black.webp │ │ ├── bar_arrows_left_white.webp │ │ ├── exo_edit_mode_logo.webp │ │ ├── exo_ic_audiotrack.webp │ │ ├── exo_ic_check.webp │ │ ├── exo_ic_chevron_left.webp │ │ ├── exo_ic_chevron_right.webp │ │ ├── exo_ic_default_album_image.webp │ │ ├── exo_ic_forward.webp │ │ ├── exo_ic_fullscreen_enter.webp │ │ ├── exo_ic_fullscreen_exit.webp │ │ ├── exo_ic_pause_circle_filled.webp │ │ ├── exo_ic_play_circle_filled.webp │ │ ├── exo_ic_rewind.webp │ │ ├── exo_ic_settings.webp │ │ ├── exo_ic_skip_next.webp │ │ ├── exo_ic_skip_previous.webp │ │ ├── exo_ic_speed.webp │ │ ├── exo_ic_subtitle_off.webp │ │ ├── exo_ic_subtitle_on.webp │ │ ├── exo_icon_circular_play.webp │ │ ├── exo_icon_fastforward.webp │ │ ├── exo_icon_fullscreen_enter.webp │ │ ├── exo_icon_fullscreen_exit.webp │ │ ├── exo_icon_next.webp │ │ ├── exo_icon_pause.webp │ │ ├── exo_icon_play.webp │ │ ├── exo_icon_previous.webp │ │ ├── exo_icon_repeat_all.webp │ │ ├── exo_icon_repeat_off.webp │ │ ├── exo_icon_repeat_one.webp │ │ ├── exo_icon_rewind.webp │ │ ├── exo_icon_shuffle_off.webp │ │ ├── exo_icon_shuffle_on.webp │ │ ├── exo_icon_stop.webp │ │ ├── exo_icon_vr.webp │ │ ├── ic_call_answer.webp │ │ ├── ic_call_answer_low.webp │ │ ├── ic_call_answer_video.webp │ │ ├── ic_call_answer_video_low.webp │ │ ├── ic_call_decline.webp │ │ ├── ic_call_decline_low.webp │ │ ├── ic_checked_checkbox.webp │ │ ├── ic_limited_time.webp │ │ ├── ic_rating_star_border.webp │ │ ├── ic_rating_star_solid.webp │ │ ├── ic_timing.webp │ │ ├── ic_unchecked_checkbox.webp │ │ ├── ic_vol_mute.webp │ │ ├── ic_vol_unmute.webp │ │ ├── jpush_close.webp │ │ ├── media3_icon_album.webp │ │ ├── media3_icon_artist.webp │ │ ├── media3_icon_block.webp │ │ ├── media3_icon_bookmark_filled.webp │ │ ├── media3_icon_bookmark_unfilled.webp │ │ ├── media3_icon_check_circle_filled.webp │ │ ├── media3_icon_check_circle_unfilled.webp │ │ ├── media3_icon_closed_captions.webp │ │ ├── media3_icon_closed_captions_off.webp │ │ ├── media3_icon_fast_forward.webp │ │ ├── media3_icon_feed.webp │ │ ├── media3_icon_flag_filled.webp │ │ ├── media3_icon_flag_unfilled.webp │ │ ├── media3_icon_heart_filled.webp │ │ ├── media3_icon_heart_unfilled.webp │ │ ├── media3_icon_minus.webp │ │ ├── media3_icon_minus_circle_filled.webp │ │ ├── media3_icon_minus_circle_unfilled.webp │ │ ├── media3_icon_next.webp │ │ ├── media3_icon_pause.webp │ │ ├── media3_icon_play.webp │ │ ├── media3_icon_playback_speed.webp │ │ ├── media3_icon_playback_speed_0_5.webp │ │ ├── media3_icon_playback_speed_0_8.webp │ │ ├── media3_icon_playback_speed_1_0.webp │ │ ├── media3_icon_playback_speed_1_2.webp │ │ ├── media3_icon_playback_speed_1_5.webp │ │ ├── media3_icon_playback_speed_1_8.webp │ │ ├── media3_icon_playback_speed_2_0.webp │ │ ├── media3_icon_playlist_add.webp │ │ ├── media3_icon_playlist_remove.webp │ │ ├── media3_icon_plus.webp │ │ ├── media3_icon_plus_circle_filled.webp │ │ ├── media3_icon_plus_circle_unfilled.webp │ │ ├── media3_icon_previous.webp │ │ ├── media3_icon_quality.webp │ │ ├── media3_icon_queue_add.webp │ │ ├── media3_icon_queue_next.webp │ │ ├── media3_icon_queue_remove.webp │ │ ├── media3_icon_radio.webp │ │ ├── media3_icon_repeat_all.webp │ │ ├── media3_icon_repeat_off.webp │ │ ├── media3_icon_repeat_one.webp │ │ ├── media3_icon_rewind.webp │ │ ├── media3_icon_settings.webp │ │ ├── media3_icon_share.webp │ │ ├── media3_icon_shuffle_off.webp │ │ ├── media3_icon_shuffle_on.webp │ │ ├── media3_icon_shuffle_star.webp │ │ ├── media3_icon_signal.webp │ │ ├── media3_icon_skip_back.webp │ │ ├── media3_icon_skip_back_10.webp │ │ ├── media3_icon_skip_back_15.webp │ │ ├── media3_icon_skip_back_30.webp │ │ ├── media3_icon_skip_back_5.webp │ │ ├── media3_icon_skip_forward.webp │ │ ├── media3_icon_skip_forward_10.webp │ │ ├── media3_icon_skip_forward_15.webp │ │ ├── media3_icon_skip_forward_30.webp │ │ ├── media3_icon_skip_forward_5.webp │ │ ├── media3_icon_star_filled.webp │ │ ├── media3_icon_star_unfilled.webp │ │ ├── media3_icon_stop.webp │ │ ├── media3_icon_subtitles.webp │ │ ├── media3_icon_subtitles_off.webp │ │ ├── media3_icon_sync.webp │ │ ├── media3_icon_thumb_down_filled.webp │ │ ├── media3_icon_thumb_down_unfilled.webp │ │ ├── media3_icon_thumb_up_filled.webp │ │ ├── media3_icon_thumb_up_unfilled.webp │ │ ├── media3_icon_volume_down.webp │ │ ├── media3_icon_volume_off.webp │ │ ├── media3_icon_volume_up.webp │ │ ├── media_session_service_notification_ic_music_note.webp │ │ ├── ucrop_ic_angle.webp │ │ └── ucrop_ic_done.webp │ ├── drawable-mdpi │ │ ├── abc_btn_check_to_on_mtrl_000.webp │ │ ├── abc_btn_check_to_on_mtrl_015.webp │ │ ├── abc_btn_radio_to_on_mtrl_000.webp │ │ ├── abc_btn_radio_to_on_mtrl_015.webp │ │ ├── abc_ic_commit_search_api_mtrl_alpha.webp │ │ ├── abc_scrubber_control_off_mtrl_alpha.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── abc_text_select_handle_left_mtrl.webp │ │ ├── abc_text_select_handle_middle_mtrl.webp │ │ ├── abc_text_select_handle_right_mtrl.webp │ │ ├── bar_arrows_left_black.webp │ │ ├── bar_arrows_left_white.webp │ │ ├── cast_abc_scrubber_control_off_mtrl_alpha.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── cast_ic_notification_0.webp │ │ ├── cast_ic_notification_1.webp │ │ ├── cast_ic_notification_2.webp │ │ ├── cast_ic_notification_on.webp │ │ ├── cast_ic_stop_circle_filled_grey600.webp │ │ ├── cast_ic_stop_circle_filled_white.webp │ │ ├── exo_edit_mode_logo.webp │ │ ├── exo_ic_audiotrack.webp │ │ ├── exo_ic_check.webp │ │ ├── exo_ic_chevron_left.webp │ │ ├── exo_ic_chevron_right.webp │ │ ├── exo_ic_default_album_image.webp │ │ ├── exo_ic_forward.webp │ │ ├── exo_ic_fullscreen_enter.webp │ │ ├── exo_ic_fullscreen_exit.webp │ │ ├── exo_ic_pause_circle_filled.webp │ │ ├── exo_ic_play_circle_filled.webp │ │ ├── exo_ic_rewind.webp │ │ ├── exo_ic_settings.webp │ │ ├── exo_ic_skip_next.webp │ │ ├── exo_ic_skip_previous.webp │ │ ├── exo_ic_speed.webp │ │ ├── exo_ic_subtitle_off.webp │ │ ├── exo_ic_subtitle_on.webp │ │ ├── exo_icon_circular_play.webp │ │ ├── exo_icon_fastforward.webp │ │ ├── exo_icon_fullscreen_enter.webp │ │ ├── exo_icon_fullscreen_exit.webp │ │ ├── exo_icon_next.webp │ │ ├── exo_icon_pause.webp │ │ ├── exo_icon_play.webp │ │ ├── exo_icon_previous.webp │ │ ├── exo_icon_repeat_all.webp │ │ ├── exo_icon_repeat_off.webp │ │ ├── exo_icon_repeat_one.webp │ │ ├── exo_icon_rewind.webp │ │ ├── exo_icon_shuffle_off.webp │ │ ├── exo_icon_shuffle_on.webp │ │ ├── exo_icon_stop.webp │ │ ├── exo_icon_vr.webp │ │ ├── googleg_disabled_color_18.webp │ │ ├── googleg_standard_color_18.webp │ │ ├── ic_audiotrack_dark.webp │ │ ├── ic_audiotrack_light.webp │ │ ├── ic_call_answer.webp │ │ ├── ic_call_answer_low.webp │ │ ├── ic_call_answer_video.webp │ │ ├── ic_call_answer_video_low.webp │ │ ├── ic_call_decline.webp │ │ ├── ic_call_decline_low.webp │ │ ├── ic_checked_checkbox.webp │ │ ├── ic_dialog_close_dark.webp │ │ ├── ic_dialog_close_light.webp │ │ ├── ic_limited_time.webp │ │ ├── ic_media_pause_dark.webp │ │ ├── ic_media_pause_light.webp │ │ ├── ic_media_play_dark.webp │ │ ├── ic_media_play_light.webp │ │ ├── ic_media_stop_dark.webp │ │ ├── ic_media_stop_light.webp │ │ ├── ic_mr_button_disabled_dark.webp │ │ ├── ic_mr_button_disabled_light.webp │ │ ├── ic_mr_button_disconnected_dark.webp │ │ ├── ic_mr_button_disconnected_light.webp │ │ ├── ic_mr_button_grey.webp │ │ ├── ic_rating_star_border.webp │ │ ├── ic_rating_star_solid.webp │ │ ├── ic_timing.webp │ │ ├── ic_unchecked_checkbox.webp │ │ ├── ic_vol_mute.webp │ │ ├── ic_vol_type_speaker_dark.webp │ │ ├── ic_vol_type_speaker_group_dark.webp │ │ ├── ic_vol_type_speaker_group_light.webp │ │ ├── ic_vol_type_speaker_light.webp │ │ ├── ic_vol_type_tv_dark.webp │ │ ├── ic_vol_type_tv_light.webp │ │ ├── ic_vol_unmute.webp │ │ ├── jpush_close.webp │ │ ├── media3_icon_album.webp │ │ ├── media3_icon_artist.webp │ │ ├── media3_icon_block.webp │ │ ├── media3_icon_bookmark_filled.webp │ │ ├── media3_icon_bookmark_unfilled.webp │ │ ├── media3_icon_check_circle_filled.webp │ │ ├── media3_icon_check_circle_unfilled.webp │ │ ├── media3_icon_closed_captions.webp │ │ ├── media3_icon_closed_captions_off.webp │ │ ├── media3_icon_fast_forward.webp │ │ ├── media3_icon_feed.webp │ │ ├── media3_icon_flag_filled.webp │ │ ├── media3_icon_flag_unfilled.webp │ │ ├── media3_icon_heart_filled.webp │ │ ├── media3_icon_heart_unfilled.webp │ │ ├── media3_icon_minus.webp │ │ ├── media3_icon_minus_circle_filled.webp │ │ ├── media3_icon_minus_circle_unfilled.webp │ │ ├── media3_icon_next.webp │ │ ├── media3_icon_pause.webp │ │ ├── media3_icon_play.webp │ │ ├── media3_icon_playback_speed.webp │ │ ├── media3_icon_playback_speed_0_5.webp │ │ ├── media3_icon_playback_speed_0_8.webp │ │ ├── media3_icon_playback_speed_1_0.webp │ │ ├── media3_icon_playback_speed_1_2.webp │ │ ├── media3_icon_playback_speed_1_5.webp │ │ ├── media3_icon_playback_speed_1_8.webp │ │ ├── media3_icon_playback_speed_2_0.webp │ │ ├── media3_icon_playlist_add.webp │ │ ├── media3_icon_playlist_remove.webp │ │ ├── media3_icon_plus.webp │ │ ├── media3_icon_plus_circle_filled.webp │ │ ├── media3_icon_plus_circle_unfilled.webp │ │ ├── media3_icon_previous.webp │ │ ├── media3_icon_quality.webp │ │ ├── media3_icon_queue_add.webp │ │ ├── media3_icon_queue_next.webp │ │ ├── media3_icon_queue_remove.webp │ │ ├── media3_icon_radio.webp │ │ ├── media3_icon_repeat_all.webp │ │ ├── media3_icon_repeat_off.webp │ │ ├── media3_icon_repeat_one.webp │ │ ├── media3_icon_rewind.webp │ │ ├── media3_icon_settings.webp │ │ ├── media3_icon_share.webp │ │ ├── media3_icon_shuffle_off.webp │ │ ├── media3_icon_shuffle_on.webp │ │ ├── media3_icon_shuffle_star.webp │ │ ├── media3_icon_signal.webp │ │ ├── media3_icon_skip_back.webp │ │ ├── media3_icon_skip_back_10.webp │ │ ├── media3_icon_skip_back_15.webp │ │ ├── media3_icon_skip_back_30.webp │ │ ├── media3_icon_skip_back_5.webp │ │ ├── media3_icon_skip_forward.webp │ │ ├── media3_icon_skip_forward_10.webp │ │ ├── media3_icon_skip_forward_15.webp │ │ ├── media3_icon_skip_forward_30.webp │ │ ├── media3_icon_skip_forward_5.webp │ │ ├── media3_icon_star_filled.webp │ │ ├── media3_icon_star_unfilled.webp │ │ ├── media3_icon_stop.webp │ │ ├── media3_icon_subtitles.webp │ │ ├── media3_icon_subtitles_off.webp │ │ ├── media3_icon_sync.webp │ │ ├── media3_icon_thumb_down_filled.webp │ │ ├── media3_icon_thumb_down_unfilled.webp │ │ ├── media3_icon_thumb_up_filled.webp │ │ ├── media3_icon_thumb_up_unfilled.webp │ │ ├── media3_icon_volume_down.webp │ │ ├── media3_icon_volume_off.webp │ │ ├── media3_icon_volume_up.webp │ │ ├── media_session_service_notification_ic_music_note.webp │ │ ├── notify_panel_notification_icon_bg.webp │ │ ├── quantum_ic_art_track_grey600_48.webp │ │ ├── quantum_ic_bigtop_updates_white_24.webp │ │ ├── quantum_ic_cast_connected_white_24.webp │ │ ├── quantum_ic_cast_white_36.webp │ │ ├── quantum_ic_clear_white_24.webp │ │ ├── quantum_ic_closed_caption_grey600_36.webp │ │ ├── quantum_ic_closed_caption_white_36.webp │ │ ├── quantum_ic_forward_10_white_24.webp │ │ ├── quantum_ic_forward_30_grey600_36.webp │ │ ├── quantum_ic_forward_30_white_24.webp │ │ ├── quantum_ic_forward_30_white_36.webp │ │ ├── quantum_ic_keyboard_arrow_down_white_36.webp │ │ ├── quantum_ic_pause_circle_filled_grey600_36.webp │ │ ├── quantum_ic_pause_circle_filled_white_36.webp │ │ ├── quantum_ic_pause_grey600_36.webp │ │ ├── quantum_ic_pause_grey600_48.webp │ │ ├── quantum_ic_pause_white_24.webp │ │ ├── quantum_ic_play_arrow_grey600_36.webp │ │ ├── quantum_ic_play_arrow_grey600_48.webp │ │ ├── quantum_ic_play_arrow_white_24.webp │ │ ├── quantum_ic_play_circle_filled_grey600_36.webp │ │ ├── quantum_ic_play_circle_filled_white_36.webp │ │ ├── quantum_ic_refresh_white_24.webp │ │ ├── quantum_ic_replay_10_white_24.webp │ │ ├── quantum_ic_replay_30_grey600_36.webp │ │ ├── quantum_ic_replay_30_white_24.webp │ │ ├── quantum_ic_replay_30_white_36.webp │ │ ├── quantum_ic_replay_white_24.webp │ │ ├── quantum_ic_skip_next_grey600_36.webp │ │ ├── quantum_ic_skip_next_white_24.webp │ │ ├── quantum_ic_skip_next_white_36.webp │ │ ├── quantum_ic_skip_previous_grey600_36.webp │ │ ├── quantum_ic_skip_previous_white_24.webp │ │ ├── quantum_ic_skip_previous_white_36.webp │ │ ├── quantum_ic_stop_grey600_36.webp │ │ ├── quantum_ic_stop_grey600_48.webp │ │ ├── quantum_ic_stop_white_24.webp │ │ ├── quantum_ic_volume_off_grey600_36.webp │ │ ├── quantum_ic_volume_off_white_36.webp │ │ ├── quantum_ic_volume_up_grey600_36.webp │ │ ├── quantum_ic_volume_up_white_36.webp │ │ ├── ucrop_ic_angle.webp │ │ └── ucrop_ic_done.webp │ ├── drawable-nodpi │ │ ├── cast_album_art_placeholder.webp │ │ └── cast_album_art_placeholder_large.webp │ ├── drawable-xhdpi │ │ ├── abc_btn_check_to_on_mtrl_000.webp │ │ ├── abc_btn_check_to_on_mtrl_015.webp │ │ ├── abc_btn_radio_to_on_mtrl_000.webp │ │ ├── abc_btn_radio_to_on_mtrl_015.webp │ │ ├── abc_ic_commit_search_api_mtrl_alpha.webp │ │ ├── abc_scrubber_control_off_mtrl_alpha.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── abc_text_select_handle_left_mtrl.webp │ │ ├── abc_text_select_handle_middle_mtrl.webp │ │ ├── abc_text_select_handle_right_mtrl.webp │ │ ├── add_nomal.webp │ │ ├── add_pressed.webp │ │ ├── adjustment.webp │ │ ├── all_icon_deploy.webp │ │ ├── all_icon_retract.webp │ │ ├── b_g5.webp │ │ ├── bar_arrows_left_black.webp │ │ ├── bar_arrows_left_white.webp │ │ ├── btn_ab.webp │ │ ├── btn_btn.webp │ │ ├── btn_delete.webp │ │ ├── btn_f.webp │ │ ├── btn_l.webp │ │ ├── btn_r.webp │ │ ├── btn_vbg.webp │ │ ├── bussiness_fw_icon.webp │ │ ├── bussiness_ic_click_mode_select.webp │ │ ├── bussiness_ic_click_mode_unselect.webp │ │ ├── card_icon_del.webp │ │ ├── card_icon_draw.webp │ │ ├── case_icon_add.webp │ │ ├── cast_abc_scrubber_control_off_mtrl_alpha.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── cast_ic_notification_0.webp │ │ ├── cast_ic_notification_1.webp │ │ ├── cast_ic_notification_2.webp │ │ ├── cast_ic_notification_on.webp │ │ ├── cast_ic_stop_circle_filled_grey600.webp │ │ ├── cast_ic_stop_circle_filled_white.webp │ │ ├── comm_ic_shortcut_logo.webp │ │ ├── common_full_open_on_phone.webp │ │ ├── default_itme_game_bg.webp │ │ ├── down_nomal.webp │ │ ├── down_pressed.webp │ │ ├── exo_edit_mode_logo.webp │ │ ├── exo_ic_audiotrack.webp │ │ ├── exo_ic_check.webp │ │ ├── exo_ic_chevron_left.webp │ │ ├── exo_ic_chevron_right.webp │ │ ├── exo_ic_default_album_image.webp │ │ ├── exo_ic_forward.webp │ │ ├── exo_ic_fullscreen_enter.webp │ │ ├── exo_ic_fullscreen_exit.webp │ │ ├── exo_ic_pause_circle_filled.webp │ │ ├── exo_ic_play_circle_filled.webp │ │ ├── exo_ic_rewind.webp │ │ ├── exo_ic_settings.webp │ │ ├── exo_ic_skip_next.webp │ │ ├── exo_ic_skip_previous.webp │ │ ├── exo_ic_speed.webp │ │ ├── exo_ic_subtitle_off.webp │ │ ├── exo_ic_subtitle_on.webp │ │ ├── exo_icon_circular_play.webp │ │ ├── exo_icon_fastforward.webp │ │ ├── exo_icon_fullscreen_enter.webp │ │ ├── exo_icon_fullscreen_exit.webp │ │ ├── exo_icon_next.webp │ │ ├── exo_icon_pause.webp │ │ ├── exo_icon_play.webp │ │ ├── exo_icon_previous.webp │ │ ├── exo_icon_repeat_all.webp │ │ ├── exo_icon_repeat_off.webp │ │ ├── exo_icon_repeat_one.webp │ │ ├── exo_icon_rewind.webp │ │ ├── exo_icon_shuffle_off.webp │ │ ├── exo_icon_shuffle_on.webp │ │ ├── exo_icon_stop.webp │ │ ├── exo_icon_vr.webp │ │ ├── gb.webp │ │ ├── googleg_disabled_color_18.webp │ │ ├── googleg_standard_color_18.webp │ │ ├── gtouch_title_bg.webp │ │ ├── ic_audiotrack_dark.webp │ │ ├── ic_audiotrack_light.webp │ │ ├── ic_call_answer.webp │ │ ├── ic_call_answer_low.webp │ │ ├── ic_call_answer_video.webp │ │ ├── ic_call_answer_video_low.webp │ │ ├── ic_call_decline.webp │ │ ├── ic_call_decline_low.webp │ │ ├── ic_checked_checkbox.webp │ │ ├── ic_dialog_close.webp │ │ ├── ic_dialog_close_dark.webp │ │ ├── ic_dialog_close_light.webp │ │ ├── ic_dislike.webp │ │ ├── ic_dislike_select.webp │ │ ├── ic_like.webp │ │ ├── ic_limited_time.webp │ │ ├── ic_media_pause_dark.webp │ │ ├── ic_media_pause_light.webp │ │ ├── ic_media_play_dark.webp │ │ ├── ic_media_play_light.webp │ │ ├── ic_media_stop_dark.webp │ │ ├── ic_media_stop_light.webp │ │ ├── ic_mr_button_connected_00_dark.webp │ │ ├── ic_mr_button_connected_00_light.webp │ │ ├── ic_mr_button_connected_01_dark.webp │ │ ├── ic_mr_button_connected_01_light.webp │ │ ├── ic_mr_button_connected_02_dark.webp │ │ ├── ic_mr_button_connected_02_light.webp │ │ ├── ic_mr_button_connected_03_dark.webp │ │ ├── ic_mr_button_connected_03_light.webp │ │ ├── ic_mr_button_connected_04_dark.webp │ │ ├── ic_mr_button_connected_04_light.webp │ │ ├── ic_mr_button_connected_05_dark.webp │ │ ├── ic_mr_button_connected_05_light.webp │ │ ├── ic_mr_button_connected_06_dark.webp │ │ ├── ic_mr_button_connected_06_light.webp │ │ ├── ic_mr_button_connected_07_dark.webp │ │ ├── ic_mr_button_connected_07_light.webp │ │ ├── ic_mr_button_connected_08_dark.webp │ │ ├── ic_mr_button_connected_08_light.webp │ │ ├── ic_mr_button_connected_09_dark.webp │ │ ├── ic_mr_button_connected_09_light.webp │ │ ├── ic_mr_button_connected_10_dark.webp │ │ ├── ic_mr_button_connected_10_light.webp │ │ ├── ic_mr_button_connected_11_dark.webp │ │ ├── ic_mr_button_connected_11_light.webp │ │ ├── ic_mr_button_connected_12_dark.webp │ │ ├── ic_mr_button_connected_12_light.webp │ │ ├── ic_mr_button_connected_13_dark.webp │ │ ├── ic_mr_button_connected_13_light.webp │ │ ├── ic_mr_button_connected_14_dark.webp │ │ ├── ic_mr_button_connected_14_light.webp │ │ ├── ic_mr_button_connected_15_dark.webp │ │ ├── ic_mr_button_connected_15_light.webp │ │ ├── ic_mr_button_connected_16_dark.webp │ │ ├── ic_mr_button_connected_16_light.webp │ │ ├── ic_mr_button_connected_17_dark.webp │ │ ├── ic_mr_button_connected_17_light.webp │ │ ├── ic_mr_button_connected_18_dark.webp │ │ ├── ic_mr_button_connected_18_light.webp │ │ ├── ic_mr_button_connected_19_dark.webp │ │ ├── ic_mr_button_connected_19_light.webp │ │ ├── ic_mr_button_connected_20_dark.webp │ │ ├── ic_mr_button_connected_20_light.webp │ │ ├── ic_mr_button_connected_21_dark.webp │ │ ├── ic_mr_button_connected_21_light.webp │ │ ├── ic_mr_button_connected_22_dark.webp │ │ ├── ic_mr_button_connected_22_light.webp │ │ ├── ic_mr_button_connected_23_dark.webp │ │ ├── ic_mr_button_connected_23_light.webp │ │ ├── ic_mr_button_connected_24_dark.webp │ │ ├── ic_mr_button_connected_24_light.webp │ │ ├── ic_mr_button_connected_25_dark.webp │ │ ├── ic_mr_button_connected_25_light.webp │ │ ├── ic_mr_button_connected_26_dark.webp │ │ ├── ic_mr_button_connected_26_light.webp │ │ ├── ic_mr_button_connected_27_dark.webp │ │ ├── ic_mr_button_connected_27_light.webp │ │ ├── ic_mr_button_connected_28_dark.webp │ │ ├── ic_mr_button_connected_28_light.webp │ │ ├── ic_mr_button_connected_29_dark.webp │ │ ├── ic_mr_button_connected_29_light.webp │ │ ├── ic_mr_button_connected_30_dark.webp │ │ ├── ic_mr_button_connected_30_light.webp │ │ ├── ic_mr_button_connecting_00_dark.webp │ │ ├── ic_mr_button_connecting_00_light.webp │ │ ├── ic_mr_button_connecting_01_dark.webp │ │ ├── ic_mr_button_connecting_01_light.webp │ │ ├── ic_mr_button_connecting_02_dark.webp │ │ ├── ic_mr_button_connecting_02_light.webp │ │ ├── ic_mr_button_connecting_03_dark.webp │ │ ├── ic_mr_button_connecting_03_light.webp │ │ ├── ic_mr_button_connecting_04_dark.webp │ │ ├── ic_mr_button_connecting_04_light.webp │ │ ├── ic_mr_button_connecting_05_dark.webp │ │ ├── ic_mr_button_connecting_05_light.webp │ │ ├── ic_mr_button_connecting_06_dark.webp │ │ ├── ic_mr_button_connecting_06_light.webp │ │ ├── ic_mr_button_connecting_07_dark.webp │ │ ├── ic_mr_button_connecting_07_light.webp │ │ ├── ic_mr_button_connecting_08_dark.webp │ │ ├── ic_mr_button_connecting_08_light.webp │ │ ├── ic_mr_button_connecting_09_dark.webp │ │ ├── ic_mr_button_connecting_09_light.webp │ │ ├── ic_mr_button_connecting_10_dark.webp │ │ ├── ic_mr_button_connecting_10_light.webp │ │ ├── ic_mr_button_connecting_11_dark.webp │ │ ├── ic_mr_button_connecting_11_light.webp │ │ ├── ic_mr_button_connecting_12_dark.webp │ │ ├── ic_mr_button_connecting_12_light.webp │ │ ├── ic_mr_button_connecting_13_dark.webp │ │ ├── ic_mr_button_connecting_13_light.webp │ │ ├── ic_mr_button_connecting_14_dark.webp │ │ ├── ic_mr_button_connecting_14_light.webp │ │ ├── ic_mr_button_connecting_15_dark.webp │ │ ├── ic_mr_button_connecting_15_light.webp │ │ ├── ic_mr_button_connecting_16_dark.webp │ │ ├── ic_mr_button_connecting_16_light.webp │ │ ├── ic_mr_button_connecting_17_dark.webp │ │ ├── ic_mr_button_connecting_17_light.webp │ │ ├── ic_mr_button_connecting_18_dark.webp │ │ ├── ic_mr_button_connecting_18_light.webp │ │ ├── ic_mr_button_connecting_19_dark.webp │ │ ├── ic_mr_button_connecting_19_light.webp │ │ ├── ic_mr_button_connecting_20_dark.webp │ │ ├── ic_mr_button_connecting_20_light.webp │ │ ├── ic_mr_button_connecting_21_dark.webp │ │ ├── ic_mr_button_connecting_21_light.webp │ │ ├── ic_mr_button_connecting_22_dark.webp │ │ ├── ic_mr_button_connecting_22_light.webp │ │ ├── ic_mr_button_connecting_23_dark.webp │ │ ├── ic_mr_button_connecting_23_light.webp │ │ ├── ic_mr_button_connecting_24_dark.webp │ │ ├── ic_mr_button_connecting_24_light.webp │ │ ├── ic_mr_button_connecting_25_dark.webp │ │ ├── ic_mr_button_connecting_25_light.webp │ │ ├── ic_mr_button_connecting_26_dark.webp │ │ ├── ic_mr_button_connecting_26_light.webp │ │ ├── ic_mr_button_connecting_27_dark.webp │ │ ├── ic_mr_button_connecting_27_light.webp │ │ ├── ic_mr_button_connecting_28_dark.webp │ │ ├── ic_mr_button_connecting_28_light.webp │ │ ├── ic_mr_button_connecting_29_dark.webp │ │ ├── ic_mr_button_connecting_29_light.webp │ │ ├── ic_mr_button_connecting_30_dark.webp │ │ ├── ic_mr_button_connecting_30_light.webp │ │ ├── ic_mr_button_disabled_dark.webp │ │ ├── ic_mr_button_disabled_light.webp │ │ ├── ic_mr_button_disconnected_dark.webp │ │ ├── ic_mr_button_disconnected_light.webp │ │ ├── ic_mr_button_grey.webp │ │ ├── ic_rating_star_border.webp │ │ ├── ic_rating_star_solid.webp │ │ ├── ic_spinner1.webp │ │ ├── ic_spinner2.webp │ │ ├── ic_spinner3.webp │ │ ├── ic_spinner4.webp │ │ ├── ic_spinner5.webp │ │ ├── ic_spinner6.webp │ │ ├── ic_spinner7.webp │ │ ├── ic_spinner8.webp │ │ ├── ic_timing.webp │ │ ├── ic_unchecked_checkbox.webp │ │ ├── ic_use_count.webp │ │ ├── ic_vol_mute.webp │ │ ├── ic_vol_type_speaker_dark.webp │ │ ├── ic_vol_type_speaker_group_dark.webp │ │ ├── ic_vol_type_speaker_group_light.webp │ │ ├── ic_vol_type_speaker_light.webp │ │ ├── ic_vol_type_tv_dark.webp │ │ ├── ic_vol_type_tv_light.webp │ │ ├── ic_vol_unmute.webp │ │ ├── icon_btn_edit.webp │ │ ├── icon_deploy_right.webp │ │ ├── information_icon_back.webp │ │ ├── item_9.webp │ │ ├── jpush_close.webp │ │ ├── kbv_icon_back.webp │ │ ├── kbv_icon_share.webp │ │ ├── kbv_menu_seek.webp │ │ ├── ledo_nomal.webp │ │ ├── ledo_pressed.webp │ │ ├── left_nomal.webp │ │ ├── left_pressed.webp │ │ ├── leto_nomal.webp │ │ ├── leto_pressed.webp │ │ ├── list_icon_linked.webp │ │ ├── list_icon_op_bg.webp │ │ ├── list_icon_op_pressed.webp │ │ ├── list_icon_used_nomal.webp │ │ ├── list_top_bg.webp │ │ ├── media3_icon_album.webp │ │ ├── media3_icon_artist.webp │ │ ├── media3_icon_block.webp │ │ ├── media3_icon_bookmark_filled.webp │ │ ├── media3_icon_bookmark_unfilled.webp │ │ ├── media3_icon_check_circle_filled.webp │ │ ├── media3_icon_check_circle_unfilled.webp │ │ ├── media3_icon_closed_captions.webp │ │ ├── media3_icon_closed_captions_off.webp │ │ ├── media3_icon_fast_forward.webp │ │ ├── media3_icon_feed.webp │ │ ├── media3_icon_flag_filled.webp │ │ ├── media3_icon_flag_unfilled.webp │ │ ├── media3_icon_heart_filled.webp │ │ ├── media3_icon_heart_unfilled.webp │ │ ├── media3_icon_minus.webp │ │ ├── media3_icon_minus_circle_filled.webp │ │ ├── media3_icon_minus_circle_unfilled.webp │ │ ├── media3_icon_next.webp │ │ ├── media3_icon_pause.webp │ │ ├── media3_icon_play.webp │ │ ├── media3_icon_playback_speed.webp │ │ ├── media3_icon_playback_speed_0_5.webp │ │ ├── media3_icon_playback_speed_0_8.webp │ │ ├── media3_icon_playback_speed_1_0.webp │ │ ├── media3_icon_playback_speed_1_2.webp │ │ ├── media3_icon_playback_speed_1_5.webp │ │ ├── media3_icon_playback_speed_1_8.webp │ │ ├── media3_icon_playback_speed_2_0.webp │ │ ├── media3_icon_playlist_add.webp │ │ ├── media3_icon_playlist_remove.webp │ │ ├── media3_icon_plus.webp │ │ ├── media3_icon_plus_circle_filled.webp │ │ ├── media3_icon_plus_circle_unfilled.webp │ │ ├── media3_icon_previous.webp │ │ ├── media3_icon_quality.webp │ │ ├── media3_icon_queue_add.webp │ │ ├── media3_icon_queue_next.webp │ │ ├── media3_icon_queue_remove.webp │ │ ├── media3_icon_radio.webp │ │ ├── media3_icon_repeat_all.webp │ │ ├── media3_icon_repeat_off.webp │ │ ├── media3_icon_repeat_one.webp │ │ ├── media3_icon_rewind.webp │ │ ├── media3_icon_settings.webp │ │ ├── media3_icon_share.webp │ │ ├── media3_icon_shuffle_off.webp │ │ ├── media3_icon_shuffle_on.webp │ │ ├── media3_icon_shuffle_star.webp │ │ ├── media3_icon_signal.webp │ │ ├── media3_icon_skip_back.webp │ │ ├── media3_icon_skip_back_10.webp │ │ ├── media3_icon_skip_back_15.webp │ │ ├── media3_icon_skip_back_30.webp │ │ ├── media3_icon_skip_back_5.webp │ │ ├── media3_icon_skip_forward.webp │ │ ├── media3_icon_skip_forward_10.webp │ │ ├── media3_icon_skip_forward_15.webp │ │ ├── media3_icon_skip_forward_30.webp │ │ ├── media3_icon_skip_forward_5.webp │ │ ├── media3_icon_star_filled.webp │ │ ├── media3_icon_star_unfilled.webp │ │ ├── media3_icon_stop.webp │ │ ├── media3_icon_subtitles.webp │ │ ├── media3_icon_subtitles_off.webp │ │ ├── media3_icon_sync.webp │ │ ├── media3_icon_thumb_down_filled.webp │ │ ├── media3_icon_thumb_down_unfilled.webp │ │ ├── media3_icon_thumb_up_filled.webp │ │ ├── media3_icon_thumb_up_unfilled.webp │ │ ├── media3_icon_volume_down.webp │ │ ├── media3_icon_volume_off.webp │ │ ├── media3_icon_volume_up.webp │ │ ├── media_session_service_notification_ic_music_note.webp │ │ ├── menu_bar_bg.webp │ │ ├── mobile_icon.webp │ │ ├── msg_choose.webp │ │ ├── naka.webp │ │ ├── no_app_image.webp │ │ ├── no_data_img.webp │ │ ├── no_notework.webp │ │ ├── notify_panel_notification_icon_bg.webp │ │ ├── pop_icon_cleanup.webp │ │ ├── pop_icon_close.webp │ │ ├── pop_icon_close11.webp │ │ ├── pop_icon_collapse.webp │ │ ├── pop_icon_foward.webp │ │ ├── pop_icon_foward_pressed.webp │ │ ├── pop_icon_help.webp │ │ ├── pop_icon_like_nomal.webp │ │ ├── pop_icon_like_pressed.webp │ │ ├── pop_icon_refresh.webp │ │ ├── pop_icon_text.webp │ │ ├── pop_teach.webp │ │ ├── pop_top_icon_help.webp │ │ ├── progress_loading1.webp │ │ ├── progress_loading2.webp │ │ ├── progress_loading3.webp │ │ ├── qq.webp │ │ ├── quantum_ic_art_track_grey600_48.webp │ │ ├── quantum_ic_bigtop_updates_white_24.webp │ │ ├── quantum_ic_cast_connected_white_24.webp │ │ ├── quantum_ic_cast_white_36.webp │ │ ├── quantum_ic_clear_white_24.webp │ │ ├── quantum_ic_closed_caption_grey600_36.webp │ │ ├── quantum_ic_closed_caption_white_36.webp │ │ ├── quantum_ic_forward_10_white_24.webp │ │ ├── quantum_ic_forward_30_grey600_36.webp │ │ ├── quantum_ic_forward_30_white_24.webp │ │ ├── quantum_ic_forward_30_white_36.webp │ │ ├── quantum_ic_keyboard_arrow_down_white_36.webp │ │ ├── quantum_ic_pause_circle_filled_grey600_36.webp │ │ ├── quantum_ic_pause_circle_filled_white_36.webp │ │ ├── quantum_ic_pause_grey600_36.webp │ │ ├── quantum_ic_pause_grey600_48.webp │ │ ├── quantum_ic_pause_white_24.webp │ │ ├── quantum_ic_play_arrow_grey600_36.webp │ │ ├── quantum_ic_play_arrow_grey600_48.webp │ │ ├── quantum_ic_play_arrow_white_24.webp │ │ ├── quantum_ic_play_circle_filled_grey600_36.webp │ │ ├── quantum_ic_play_circle_filled_white_36.webp │ │ ├── quantum_ic_refresh_white_24.webp │ │ ├── quantum_ic_replay_10_white_24.webp │ │ ├── quantum_ic_replay_30_grey600_36.webp │ │ ├── quantum_ic_replay_30_white_24.webp │ │ ├── quantum_ic_replay_30_white_36.webp │ │ ├── quantum_ic_replay_white_24.webp │ │ ├── quantum_ic_skip_next_grey600_36.webp │ │ ├── quantum_ic_skip_next_white_24.webp │ │ ├── quantum_ic_skip_next_white_36.webp │ │ ├── quantum_ic_skip_previous_grey600_36.webp │ │ ├── quantum_ic_skip_previous_white_24.webp │ │ ├── quantum_ic_skip_previous_white_36.webp │ │ ├── quantum_ic_stop_grey600_36.webp │ │ ├── quantum_ic_stop_grey600_48.webp │ │ ├── quantum_ic_stop_white_24.webp │ │ ├── quantum_ic_volume_off_grey600_36.webp │ │ ├── quantum_ic_volume_off_white_36.webp │ │ ├── quantum_ic_volume_up_grey600_36.webp │ │ ├── quantum_ic_volume_up_white_36.webp │ │ ├── register_icon_close.webp │ │ ├── resolutionsize_icon.webp │ │ ├── rido_nomal.webp │ │ ├── rido_pressed.webp │ │ ├── right_nomal.webp │ │ ├── right_pressed.webp │ │ ├── rito_nomal.webp │ │ ├── rito_pressed.webp │ │ ├── share_icon.webp │ │ ├── side_icon_advanced2_nomal.webp │ │ ├── side_icon_advanced2_pressed.webp │ │ ├── side_icon_key_nomal.webp │ │ ├── side_icon_key_pressed.webp │ │ ├── side_icon_plan_nomal.webp │ │ ├── side_icon_plan_pressed.webp │ │ ├── sp_select_m.webp │ │ ├── sub_nomal.webp │ │ ├── sub_pressed.webp │ │ ├── symble_op.webp │ │ ├── tab_bg.webp │ │ ├── tab_icon_remcommend.webp │ │ ├── top_icon_del.webp │ │ ├── top_nav_back.webp │ │ ├── top_nomal.webp │ │ ├── top_pressed.webp │ │ ├── ucrop_ic_angle.webp │ │ ├── ucrop_ic_done.webp │ │ ├── x1_rocker_left.webp │ │ ├── xiaz.webp │ │ ├── zan.webp │ │ └── zan1.webp │ ├── drawable-xxhdpi │ │ ├── a.webp │ │ ├── a_m.webp │ │ ├── abc_btn_check_to_on_mtrl_000.webp │ │ ├── abc_btn_check_to_on_mtrl_015.webp │ │ ├── abc_btn_radio_to_on_mtrl_000.webp │ │ ├── abc_btn_radio_to_on_mtrl_015.webp │ │ ├── abc_ic_commit_search_api_mtrl_alpha.webp │ │ ├── abc_scrubber_control_off_mtrl_alpha.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── abc_text_select_handle_left_mtrl.webp │ │ ├── abc_text_select_handle_middle_mtrl.webp │ │ ├── abc_text_select_handle_right_mtrl.webp │ │ ├── add_friend_search_icon.webp │ │ ├── add_mix.webp │ │ ├── add_x1.webp │ │ ├── add_x1_.webp │ │ ├── adjustment.webp │ │ ├── aim_min.webp │ │ ├── arrow_left_focus_click.webp │ │ ├── arrow_left_focus_unclick.webp │ │ ├── arrow_left_normal_click.webp │ │ ├── arrow_left_normal_unclick.webp │ │ ├── arrow_right_focus_click.webp │ │ ├── arrow_right_focus_unclick.webp │ │ ├── arrow_right_normal_click.webp │ │ ├── arrow_right_normal_unclick.webp │ │ ├── authsdk_checkbox_checked_bg.webp │ │ ├── authsdk_checkbox_uncheck_bg.webp │ │ ├── authsdk_load_dot_white.webp │ │ ├── authsdk_privacyclose_bg.webp │ │ ├── authsdk_return_bg.webp │ │ ├── authsdk_waiting_icon.webp │ │ ├── avator_big.webp │ │ ├── b.webp │ │ ├── b_m.webp │ │ ├── bar_arrows_left_black.webp │ │ ├── bar_arrows_left_white.webp │ │ ├── bn1.webp │ │ ├── bn10.webp │ │ ├── bn11.webp │ │ ├── bn12.webp │ │ ├── bn13.webp │ │ ├── bn14.webp │ │ ├── bn15.webp │ │ ├── bn16.webp │ │ ├── bn2.webp │ │ ├── bn3.webp │ │ ├── bn4.webp │ │ ├── bn5.webp │ │ ├── bn6.webp │ │ ├── bn7.webp │ │ ├── bn8.webp │ │ ├── bn9.webp │ │ ├── btn_ls_m.webp │ │ ├── btn_menu.webp │ │ ├── btn_menu_m.webp │ │ ├── btn_minus.webp │ │ ├── btn_plus.webp │ │ ├── btn_rs_m.webp │ │ ├── btn_ten.webp │ │ ├── btn_windows.webp │ │ ├── btn_windows_m.webp │ │ ├── btne1.webp │ │ ├── btne2.webp │ │ ├── btne3.webp │ │ ├── btne4.webp │ │ ├── btne5.webp │ │ ├── btne6.webp │ │ ├── button_mapping_a_focus.webp │ │ ├── button_mapping_a_norm.webp │ │ ├── button_mapping_a_select.webp │ │ ├── button_mapping_b_focus.webp │ │ ├── button_mapping_b_norm.webp │ │ ├── button_mapping_b_select.webp │ │ ├── button_mapping_down_focus.webp │ │ ├── button_mapping_down_norm.webp │ │ ├── button_mapping_down_select.webp │ │ ├── button_mapping_l3_focus.webp │ │ ├── button_mapping_l3_norm.webp │ │ ├── button_mapping_l3_select.webp │ │ ├── button_mapping_l4_focus.webp │ │ ├── button_mapping_l4_norm.webp │ │ ├── button_mapping_l4_select.webp │ │ ├── button_mapping_lb_focus.webp │ │ ├── button_mapping_lb_norm.webp │ │ ├── button_mapping_lb_select.webp │ │ ├── button_mapping_left_focus.webp │ │ ├── button_mapping_left_norm.webp │ │ ├── button_mapping_left_select.webp │ │ ├── button_mapping_lt_focus.webp │ │ ├── button_mapping_lt_norm.webp │ │ ├── button_mapping_lt_select.webp │ │ ├── button_mapping_m1_focus.webp │ │ ├── button_mapping_m1_norm.webp │ │ ├── button_mapping_m1_select.webp │ │ ├── button_mapping_m2_focus.webp │ │ ├── button_mapping_m2_norm.webp │ │ ├── button_mapping_m2_select.webp │ │ ├── button_mapping_m3_focus.webp │ │ ├── button_mapping_m3_norm.webp │ │ ├── button_mapping_m3_select.webp │ │ ├── button_mapping_m4_focus.webp │ │ ├── button_mapping_m4_norm.webp │ │ ├── button_mapping_m4_select.webp │ │ ├── button_mapping_macro_select_en.webp │ │ ├── button_mapping_macro_select_zh.webp │ │ ├── button_mapping_null_focus.webp │ │ ├── button_mapping_null_norm.webp │ │ ├── button_mapping_null_select.webp │ │ ├── button_mapping_r3_focus.webp │ │ ├── button_mapping_r3_norm.webp │ │ ├── button_mapping_r3_select.webp │ │ ├── button_mapping_r4_focus.webp │ │ ├── button_mapping_r4_norm.webp │ │ ├── button_mapping_r4_select.webp │ │ ├── button_mapping_rb_focus.webp │ │ ├── button_mapping_rb_norm.webp │ │ ├── button_mapping_rb_select.webp │ │ ├── button_mapping_right_focus.webp │ │ ├── button_mapping_right_norm.webp │ │ ├── button_mapping_right_select.webp │ │ ├── button_mapping_rt_focus.webp │ │ ├── button_mapping_rt_norm.webp │ │ ├── button_mapping_rt_select.webp │ │ ├── button_mapping_select_focus.webp │ │ ├── button_mapping_select_g_focus.webp │ │ ├── button_mapping_select_g_norm.webp │ │ ├── button_mapping_select_g_select.webp │ │ ├── button_mapping_select_minus_focus.webp │ │ ├── button_mapping_select_minus_norm.webp │ │ ├── button_mapping_select_minus_select.webp │ │ ├── button_mapping_select_norm.webp │ │ ├── button_mapping_select_select.webp │ │ ├── button_mapping_start_focus.webp │ │ ├── button_mapping_start_norm.webp │ │ ├── button_mapping_start_plus_focus.webp │ │ ├── button_mapping_start_plus_norm.webp │ │ ├── button_mapping_start_plus_select.webp │ │ ├── button_mapping_start_s_focus.webp │ │ ├── button_mapping_start_s_norm.webp │ │ ├── button_mapping_start_s_select.webp │ │ ├── button_mapping_start_select.webp │ │ ├── button_mapping_up_focus.webp │ │ ├── button_mapping_up_norm.webp │ │ ├── button_mapping_up_select.webp │ │ ├── button_mapping_x_focus.webp │ │ ├── button_mapping_x_norm.webp │ │ ├── button_mapping_x_select.webp │ │ ├── button_mapping_y_focus.webp │ │ ├── button_mapping_y_norm.webp │ │ ├── button_mapping_y_select.webp │ │ ├── card_icon_del.webp │ │ ├── card_icon_draw.webp │ │ ├── case_icon_add.webp │ │ ├── cast_abc_scrubber_control_off_mtrl_alpha.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── cast_ic_notification_0.webp │ │ ├── cast_ic_notification_1.webp │ │ ├── cast_ic_notification_2.webp │ │ ├── cast_ic_notification_on.webp │ │ ├── cast_ic_stop_circle_filled_grey600.webp │ │ ├── cast_ic_stop_circle_filled_white.webp │ │ ├── check_nor.webp │ │ ├── com_white_bg_btn_b.webp │ │ ├── com_white_bg_btn_x.webp │ │ ├── com_white_bg_btn_y.webp │ │ ├── comm_disable_drag_select_btn.webp │ │ ├── comm_download_del.webp │ │ ├── comm_download_select.webp │ │ ├── comm_download_select_all.webp │ │ ├── comm_download_select_all_un.webp │ │ ├── comm_download_select_un.webp │ │ ├── comm_download_start.webp │ │ ├── comm_download_stop.webp │ │ ├── comm_download_wait.webp │ │ ├── comm_drag_btn.webp │ │ ├── comm_drag_select_btn.webp │ │ ├── comm_drag_select_btn_red.webp │ │ ├── comm_drag_unselect_btn.webp │ │ ├── comm_floating_bottom_bg.webp │ │ ├── comm_floating_bottom_up_arrow.webp │ │ ├── comm_floating_close_btn.webp │ │ ├── comm_floating_drag_icon.webp │ │ ├── comm_ic_main_device_offline.webp │ │ ├── comm_ic_main_device_online.webp │ │ ├── comm_ic_progressbar_circle_pink.webp │ │ ├── comm_ic_topbar_back.webp │ │ ├── comm_icon_loading.webp │ │ ├── comm_icon_main_white_wifi.webp │ │ ├── comm_icon_quit_pip_logo.webp │ │ ├── comm_loading.webp │ │ ├── comm_loading_arrow.webp │ │ ├── comm_loading_blue.webp │ │ ├── comm_pic_selector_ic_add.webp │ │ ├── comm_pic_selector_ic_del.webp │ │ ├── comm_switch_disabled_off.webp │ │ ├── comm_switch_disabled_on.webp │ │ ├── comm_switch_off.webp │ │ ├── comm_switch_off_focus.webp │ │ ├── comm_switch_on.webp │ │ ├── comm_white_bg_btn_a.webp │ │ ├── comm_white_bg_btn_b.webp │ │ ├── comm_white_bg_btn_x.webp │ │ ├── comm_white_bg_btn_y.webp │ │ ├── common_back.webp │ │ ├── common_verify_dialog_close.webp │ │ ├── connection_tutorial_select.webp │ │ ├── connection_tutorial_unselect.webp │ │ ├── ct.webp │ │ ├── cursor_arrow.webp │ │ ├── cursor_icon.webp │ │ ├── device_axial_x_focus.webp │ │ ├── device_axial_x_normal.webp │ │ ├── device_axial_xy_focus.webp │ │ ├── device_axial_xy_normal.webp │ │ ├── device_axial_y_focus.webp │ │ ├── device_axial_y_normal.webp │ │ ├── device_ic_click_mode_select.webp │ │ ├── device_ic_click_mode_unselect.webp │ │ ├── device_ic_location.webp │ │ ├── device_ic_location_new.webp │ │ ├── devicesetting_white_bg_btn_b.webp │ │ ├── down.webp │ │ ├── down_l.webp │ │ ├── down_m.webp │ │ ├── down_nomal.webp │ │ ├── down_pressed.webp │ │ ├── down_r.webp │ │ ├── ds_arrow_withe_to_right.webp │ │ ├── ds_change_layout_switch.webp │ │ ├── ds_game_pad_defalut_pic.webp │ │ ├── edit_rect_icon_telescopic.webp │ │ ├── exo_edit_mode_logo.webp │ │ ├── exo_ic_audiotrack.webp │ │ ├── exo_ic_check.webp │ │ ├── exo_ic_chevron_left.webp │ │ ├── exo_ic_chevron_right.webp │ │ ├── exo_ic_default_album_image.webp │ │ ├── exo_ic_forward.webp │ │ ├── exo_ic_fullscreen_enter.webp │ │ ├── exo_ic_fullscreen_exit.webp │ │ ├── exo_ic_pause_circle_filled.webp │ │ ├── exo_ic_play_circle_filled.webp │ │ ├── exo_ic_rewind.webp │ │ ├── exo_ic_settings.webp │ │ ├── exo_ic_skip_next.webp │ │ ├── exo_ic_skip_previous.webp │ │ ├── exo_ic_speed.webp │ │ ├── exo_ic_subtitle_off.webp │ │ ├── exo_ic_subtitle_on.webp │ │ ├── exo_icon_circular_play.webp │ │ ├── exo_icon_fastforward.webp │ │ ├── exo_icon_fullscreen_enter.webp │ │ ├── exo_icon_fullscreen_exit.webp │ │ ├── exo_icon_next.webp │ │ ├── exo_icon_pause.webp │ │ ├── exo_icon_play.webp │ │ ├── exo_icon_previous.webp │ │ ├── exo_icon_repeat_all.webp │ │ ├── exo_icon_repeat_off.webp │ │ ├── exo_icon_repeat_one.webp │ │ ├── exo_icon_rewind.webp │ │ ├── exo_icon_shuffle_off.webp │ │ ├── exo_icon_shuffle_on.webp │ │ ├── exo_icon_stop.webp │ │ ├── exo_icon_vr.webp │ │ ├── firebase_lockup_400.webp │ │ ├── float_icon_cleanup.webp │ │ ├── float_icon_setting.webp │ │ ├── functions_setting_select.webp │ │ ├── functions_setting_unselect.webp │ │ ├── fw_icon_gh.webp │ │ ├── game_detail_top_shadow.webp │ │ ├── game_ic_steam.webp │ │ ├── gc_right_back_icon.webp │ │ ├── gj.webp │ │ ├── googleg_disabled_color_18.webp │ │ ├── googleg_standard_color_18.webp │ │ ├── gr.webp │ │ ├── gtouch_title_bg.webp │ │ ├── gyroscope_double_curvature.webp │ │ ├── gyroscope_double_curvature_focus.webp │ │ ├── gyroscope_linearity.webp │ │ ├── gyroscope_linearity_focus.webp │ │ ├── gyroscope_negative_curvature.webp │ │ ├── gyroscope_negative_curvature_focus.webp │ │ ├── gyroscope_positive_curvature.webp │ │ ├── gyroscope_positive_curvature_focus.webp │ │ ├── hc.webp │ │ ├── hf.webp │ │ ├── ic_arrow_right_gray.webp │ │ ├── ic_audiotrack_dark.webp │ │ ├── ic_audiotrack_light.webp │ │ ├── ic_bg_dead_zone_compensation.webp │ │ ├── ic_call_answer.webp │ │ ├── ic_call_answer_low.webp │ │ ├── ic_call_answer_video.webp │ │ ├── ic_call_answer_video_low.webp │ │ ├── ic_call_decline.webp │ │ ├── ic_call_decline_low.webp │ │ ├── ic_checked_checkbox.webp │ │ ├── ic_curve_bg.webp │ │ ├── ic_dialog_close_dark.webp │ │ ├── ic_dialog_close_light.webp │ │ ├── ic_dislike.webp │ │ ├── ic_dislike_select.webp │ │ ├── ic_like.webp │ │ ├── ic_limited_time.webp │ │ ├── ic_media_pause_dark.webp │ │ ├── ic_media_pause_light.webp │ │ ├── ic_media_play_dark.webp │ │ ├── ic_media_play_light.webp │ │ ├── ic_media_stop_dark.webp │ │ ├── ic_media_stop_light.webp │ │ ├── ic_mr_button_connected_00_dark.webp │ │ ├── ic_mr_button_connected_00_light.webp │ │ ├── ic_mr_button_connected_01_dark.webp │ │ ├── ic_mr_button_connected_01_light.webp │ │ ├── ic_mr_button_connected_02_dark.webp │ │ ├── ic_mr_button_connected_02_light.webp │ │ ├── ic_mr_button_connected_03_dark.webp │ │ ├── ic_mr_button_connected_03_light.webp │ │ ├── ic_mr_button_connected_04_dark.webp │ │ ├── ic_mr_button_connected_04_light.webp │ │ ├── ic_mr_button_connected_05_dark.webp │ │ ├── ic_mr_button_connected_05_light.webp │ │ ├── ic_mr_button_connected_06_dark.webp │ │ ├── ic_mr_button_connected_06_light.webp │ │ ├── ic_mr_button_connected_07_dark.webp │ │ ├── ic_mr_button_connected_07_light.webp │ │ ├── ic_mr_button_connected_08_dark.webp │ │ ├── ic_mr_button_connected_08_light.webp │ │ ├── ic_mr_button_connected_09_dark.webp │ │ ├── ic_mr_button_connected_09_light.webp │ │ ├── ic_mr_button_connected_10_dark.webp │ │ ├── ic_mr_button_connected_10_light.webp │ │ ├── ic_mr_button_connected_11_dark.webp │ │ ├── ic_mr_button_connected_11_light.webp │ │ ├── ic_mr_button_connected_12_dark.webp │ │ ├── ic_mr_button_connected_12_light.webp │ │ ├── ic_mr_button_connected_13_dark.webp │ │ ├── ic_mr_button_connected_13_light.webp │ │ ├── ic_mr_button_connected_14_dark.webp │ │ ├── ic_mr_button_connected_14_light.webp │ │ ├── ic_mr_button_connected_15_dark.webp │ │ ├── ic_mr_button_connected_15_light.webp │ │ ├── ic_mr_button_connected_16_dark.webp │ │ ├── ic_mr_button_connected_16_light.webp │ │ ├── ic_mr_button_connected_17_dark.webp │ │ ├── ic_mr_button_connected_17_light.webp │ │ ├── ic_mr_button_connected_18_dark.webp │ │ ├── ic_mr_button_connected_18_light.webp │ │ ├── ic_mr_button_connected_19_dark.webp │ │ ├── ic_mr_button_connected_19_light.webp │ │ ├── ic_mr_button_connected_20_dark.webp │ │ ├── ic_mr_button_connected_20_light.webp │ │ ├── ic_mr_button_connected_21_dark.webp │ │ ├── ic_mr_button_connected_21_light.webp │ │ ├── ic_mr_button_connected_22_dark.webp │ │ ├── ic_mr_button_connected_22_light.webp │ │ ├── ic_mr_button_connected_23_dark.webp │ │ ├── ic_mr_button_connected_23_light.webp │ │ ├── ic_mr_button_connected_24_dark.webp │ │ ├── ic_mr_button_connected_24_light.webp │ │ ├── ic_mr_button_connected_25_dark.webp │ │ ├── ic_mr_button_connected_25_light.webp │ │ ├── ic_mr_button_connected_26_dark.webp │ │ ├── ic_mr_button_connected_26_light.webp │ │ ├── ic_mr_button_connected_27_dark.webp │ │ ├── ic_mr_button_connected_27_light.webp │ │ ├── ic_mr_button_connected_28_dark.webp │ │ ├── ic_mr_button_connected_28_light.webp │ │ ├── ic_mr_button_connected_29_dark.webp │ │ ├── ic_mr_button_connected_29_light.webp │ │ ├── ic_mr_button_connected_30_dark.webp │ │ ├── ic_mr_button_connected_30_light.webp │ │ ├── ic_mr_button_connecting_00_dark.webp │ │ ├── ic_mr_button_connecting_00_light.webp │ │ ├── ic_mr_button_connecting_01_dark.webp │ │ ├── ic_mr_button_connecting_01_light.webp │ │ ├── ic_mr_button_connecting_02_dark.webp │ │ ├── ic_mr_button_connecting_02_light.webp │ │ ├── ic_mr_button_connecting_03_dark.webp │ │ ├── ic_mr_button_connecting_03_light.webp │ │ ├── ic_mr_button_connecting_04_dark.webp │ │ ├── ic_mr_button_connecting_04_light.webp │ │ ├── ic_mr_button_connecting_05_dark.webp │ │ ├── ic_mr_button_connecting_05_light.webp │ │ ├── ic_mr_button_connecting_06_dark.webp │ │ ├── ic_mr_button_connecting_06_light.webp │ │ ├── ic_mr_button_connecting_07_dark.webp │ │ ├── ic_mr_button_connecting_07_light.webp │ │ ├── ic_mr_button_connecting_08_dark.webp │ │ ├── ic_mr_button_connecting_08_light.webp │ │ ├── ic_mr_button_connecting_09_dark.webp │ │ ├── ic_mr_button_connecting_09_light.webp │ │ ├── ic_mr_button_connecting_10_dark.webp │ │ ├── ic_mr_button_connecting_10_light.webp │ │ ├── ic_mr_button_connecting_11_dark.webp │ │ ├── ic_mr_button_connecting_11_light.webp │ │ ├── ic_mr_button_connecting_12_dark.webp │ │ ├── ic_mr_button_connecting_12_light.webp │ │ ├── ic_mr_button_connecting_13_dark.webp │ │ ├── ic_mr_button_connecting_13_light.webp │ │ ├── ic_mr_button_connecting_14_dark.webp │ │ ├── ic_mr_button_connecting_14_light.webp │ │ ├── ic_mr_button_connecting_15_dark.webp │ │ ├── ic_mr_button_connecting_15_light.webp │ │ ├── ic_mr_button_connecting_16_dark.webp │ │ ├── ic_mr_button_connecting_16_light.webp │ │ ├── ic_mr_button_connecting_17_dark.webp │ │ ├── ic_mr_button_connecting_17_light.webp │ │ ├── ic_mr_button_connecting_18_dark.webp │ │ ├── ic_mr_button_connecting_18_light.webp │ │ ├── ic_mr_button_connecting_19_dark.webp │ │ ├── ic_mr_button_connecting_19_light.webp │ │ ├── ic_mr_button_connecting_20_dark.webp │ │ ├── ic_mr_button_connecting_20_light.webp │ │ ├── ic_mr_button_connecting_21_dark.webp │ │ ├── ic_mr_button_connecting_21_light.webp │ │ ├── ic_mr_button_connecting_22_dark.webp │ │ ├── ic_mr_button_connecting_22_light.webp │ │ ├── ic_mr_button_connecting_23_dark.webp │ │ ├── ic_mr_button_connecting_23_light.webp │ │ ├── ic_mr_button_connecting_24_dark.webp │ │ ├── ic_mr_button_connecting_24_light.webp │ │ ├── ic_mr_button_connecting_25_dark.webp │ │ ├── ic_mr_button_connecting_25_light.webp │ │ ├── ic_mr_button_connecting_26_dark.webp │ │ ├── ic_mr_button_connecting_26_light.webp │ │ ├── ic_mr_button_connecting_27_dark.webp │ │ ├── ic_mr_button_connecting_27_light.webp │ │ ├── ic_mr_button_connecting_28_dark.webp │ │ ├── ic_mr_button_connecting_28_light.webp │ │ ├── ic_mr_button_connecting_29_dark.webp │ │ ├── ic_mr_button_connecting_29_light.webp │ │ ├── ic_mr_button_connecting_30_dark.webp │ │ ├── ic_mr_button_connecting_30_light.webp │ │ ├── ic_mr_button_disabled_dark.webp │ │ ├── ic_mr_button_disabled_light.webp │ │ ├── ic_mr_button_disconnected_dark.webp │ │ ├── ic_mr_button_disconnected_light.webp │ │ ├── ic_mr_button_grey.webp │ │ ├── ic_new_back2.webp │ │ ├── ic_new_gamepad_logo.webp │ │ ├── ic_new_red_warning.webp │ │ ├── ic_new_right_back.webp │ │ ├── ic_new_scan_bg.webp │ │ ├── ic_plus_gray.webp │ │ ├── ic_rating_star_border.webp │ │ ├── ic_rating_star_solid.webp │ │ ├── ic_streaming.webp │ │ ├── ic_switch_mode_choosed.webp │ │ ├── ic_timing.webp │ │ ├── ic_unchecked_checkbox.webp │ │ ├── ic_use_count.webp │ │ ├── ic_vol_mute.webp │ │ ├── ic_vol_type_speaker_dark.webp │ │ ├── ic_vol_type_speaker_group_dark.webp │ │ ├── ic_vol_type_speaker_group_light.webp │ │ ├── ic_vol_type_speaker_light.webp │ │ ├── ic_vol_type_tv_dark.webp │ │ ├── ic_vol_type_tv_light.webp │ │ ├── ic_vol_unmute.webp │ │ ├── icon_action_bar_add.webp │ │ ├── icon_action_bar_back.webp │ │ ├── icon_action_bar_menu.webp │ │ ├── icon_add.webp │ │ ├── icon_add_profile.webp │ │ ├── icon_check_profile.webp │ │ ├── icon_close_white.webp │ │ ├── icon_import_profile.webp │ │ ├── icon_popup_menu_bring_to_front.webp │ │ ├── icon_popup_menu_cpu.webp │ │ ├── icon_popup_menu_download.webp │ │ ├── icon_popup_menu_duplicate.webp │ │ ├── icon_popup_menu_edit.webp │ │ ├── icon_popup_menu_info.webp │ │ ├── icon_popup_menu_open.webp │ │ ├── icon_popup_menu_remove.webp │ │ ├── icon_popup_menu_run.webp │ │ ├── icon_popup_menu_settings.webp │ │ ├── icon_remove.webp │ │ ├── icon_settings.webp │ │ ├── icon_un_check_profile.webp │ │ ├── icon_undo.webp │ │ ├── img_default.webp │ │ ├── information_icon_back.webp │ │ ├── j1.webp │ │ ├── j11.webp │ │ ├── j2.webp │ │ ├── j21.webp │ │ ├── j3.webp │ │ ├── j31.webp │ │ ├── j4.webp │ │ ├── j41.webp │ │ ├── jh.webp │ │ ├── joystick_select.webp │ │ ├── joystick_unselect.webp │ │ ├── jpush_close.webp │ │ ├── js.webp │ │ ├── k0.webp │ │ ├── k1.webp │ │ ├── k2.webp │ │ ├── k3.webp │ │ ├── k4.webp │ │ ├── k5.webp │ │ ├── k6.webp │ │ ├── k7.webp │ │ ├── k8.webp │ │ ├── k9.webp │ │ ├── ka.webp │ │ ├── kadd.webp │ │ ├── kalt.webp │ │ ├── kapo.webp │ │ ├── kb.webp │ │ ├── kbackslash.webp │ │ ├── kbackspace.webp │ │ ├── kc.webp │ │ ├── kcapslock.webp │ │ ├── kcom.webp │ │ ├── kctrl.webp │ │ ├── kd.webp │ │ ├── kdelete.webp │ │ ├── kdivide.webp │ │ ├── kdot.webp │ │ ├── kdown.webp │ │ ├── ke.webp │ │ ├── kend.webp │ │ ├── kenter.webp │ │ ├── kequal.webp │ │ ├── kesc.webp │ │ ├── kf.webp │ │ ├── kf1.webp │ │ ├── kf10.webp │ │ ├── kf11.webp │ │ ├── kf12.webp │ │ ├── kf2.webp │ │ ├── kf3.webp │ │ ├── kf4.webp │ │ ├── kf5.webp │ │ ├── kf6.webp │ │ ├── kf7.webp │ │ ├── kf8.webp │ │ ├── kf9.webp │ │ ├── kg.webp │ │ ├── kgrave.webp │ │ ├── kh.webp │ │ ├── khome.webp │ │ ├── khome_m.webp │ │ ├── ki.webp │ │ ├── kinsert.webp │ │ ├── kj.webp │ │ ├── kk.webp │ │ ├── kl.webp │ │ ├── klbracket.webp │ │ ├── kleft.webp │ │ ├── kleftmouse.webp │ │ ├── kleftmouse_m.webp │ │ ├── km.webp │ │ ├── km1.webp │ │ ├── km1_m.webp │ │ ├── km2.webp │ │ ├── km2_m.webp │ │ ├── km3.webp │ │ ├── km3_m.webp │ │ ├── km4.webp │ │ ├── km4_m.webp │ │ ├── km5.webp │ │ ├── km5_m.webp │ │ ├── km6.webp │ │ ├── km6_m.webp │ │ ├── km7.webp │ │ ├── km7_m.webp │ │ ├── km8.webp │ │ ├── km8_m.webp │ │ ├── kmenu.webp │ │ ├── kminus.webp │ │ ├── kmultiply.webp │ │ ├── kmwheel.webp │ │ ├── kn.webp │ │ ├── ko.webp │ │ ├── kp.webp │ │ ├── kpause.webp │ │ ├── kper.webp │ │ ├── kpgdn.webp │ │ ├── kpgup.webp │ │ ├── kprint.webp │ │ ├── kq.webp │ │ ├── kr.webp │ │ ├── krbracket.webp │ │ ├── kright.webp │ │ ├── krightmouse.webp │ │ ├── krightmouse_m.webp │ │ ├── ks.webp │ │ ├── kscroll.webp │ │ ├── ksem.webp │ │ ├── kshift.webp │ │ ├── kslash.webp │ │ ├── kspace.webp │ │ ├── ksub.webp │ │ ├── kt.webp │ │ ├── ktab.webp │ │ ├── kten.webp │ │ ├── ku.webp │ │ ├── kup.webp │ │ ├── kv.webp │ │ ├── kw.webp │ │ ├── kwin.webp │ │ ├── kx.webp │ │ ├── ky.webp │ │ ├── kz.webp │ │ ├── l1.webp │ │ ├── l1_m.webp │ │ ├── l2.webp │ │ ├── l2_m.webp │ │ ├── l3.webp │ │ ├── l3_m.webp │ │ ├── lb.webp │ │ ├── lb_m.webp │ │ ├── ledo_nomal.webp │ │ ├── ledo_pressed.webp │ │ ├── left.webp │ │ ├── left_close_btn.webp │ │ ├── left_l.webp │ │ ├── left_m.webp │ │ ├── left_nomal.webp │ │ ├── left_pressed.webp │ │ ├── left_r.webp │ │ ├── leto_nomal.webp │ │ ├── leto_pressed.webp │ │ ├── light_select.webp │ │ ├── light_unselect.webp │ │ ├── list_item_select.webp │ │ ├── llanuncher_bg_my_games.webp │ │ ├── llanuncher_ble_icon_iv.webp │ │ ├── llanuncher_device_connection.webp │ │ ├── llanuncher_dialog_news_details_ic_close.webp │ │ ├── llanuncher_ic_close_full_share_screen.webp │ │ ├── llanuncher_ic_game_detail_setting_default.webp │ │ ├── llanuncher_ic_game_detail_setting_focus.webp │ │ ├── llanuncher_ic_main_device_offline.webp │ │ ├── llanuncher_ic_main_device_online.webp │ │ ├── llanuncher_ic_main_search.webp │ │ ├── llanuncher_ic_main_search_select.webp │ │ ├── llanuncher_ic_menu_button_a.webp │ │ ├── llanuncher_ic_menu_button_lb_rb.webp │ │ ├── llanuncher_ic_menu_button_menu.webp │ │ ├── llanuncher_ic_menu_button_y.webp │ │ ├── llanuncher_ic_mygames_operation.webp │ │ ├── llanuncher_ic_play_in_seconds.webp │ │ ├── llanuncher_icon_app_sotre.webp │ │ ├── llanuncher_icon_black_add_friend.webp │ │ ├── llanuncher_icon_black_add_game.webp │ │ ├── llanuncher_icon_black_message.webp │ │ ├── llanuncher_icon_black_video_cut.webp │ │ ├── llanuncher_icon_btn_drag.webp │ │ ├── llanuncher_icon_circle_emulator_game.webp │ │ ├── llanuncher_icon_circle_google_play.webp │ │ ├── llanuncher_icon_circle_hid.webp │ │ ├── llanuncher_icon_circle_mobie_game.webp │ │ ├── llanuncher_icon_circle_pc.webp │ │ ├── llanuncher_icon_circle_play_station.webp │ │ ├── llanuncher_icon_circle_ps_remote_play.webp │ │ ├── llanuncher_icon_close.webp │ │ ├── llanuncher_icon_close_x.webp │ │ ├── llanuncher_icon_device_radiator_temp.webp │ │ ├── llanuncher_icon_device_radiator_temp_back.webp │ │ ├── llanuncher_icon_device_radiator_temp_black.webp │ │ ├── llanuncher_icon_device_scan_back.webp │ │ ├── llanuncher_icon_drag_left_activi_bar.webp │ │ ├── llanuncher_icon_drag_left_activi_bar_gray.webp │ │ ├── llanuncher_icon_drag_left_bar.webp │ │ ├── llanuncher_icon_drag_left_defult_bar.webp │ │ ├── llanuncher_icon_drag_left_defult_bar_gray.webp │ │ ├── llanuncher_icon_drag_right_activi_bar.webp │ │ ├── llanuncher_icon_drag_right_activi_bar_gray.webp │ │ ├── llanuncher_icon_drag_right_bar.webp │ │ ├── llanuncher_icon_drag_right_defult_bar.webp │ │ ├── llanuncher_icon_drag_right_defult_bar_gray.webp │ │ ├── llanuncher_icon_empty.webp │ │ ├── llanuncher_icon_emulator_play.webp │ │ ├── llanuncher_icon_frame_select.webp │ │ ├── llanuncher_icon_google_play.webp │ │ ├── llanuncher_icon_gray_circle_setting.webp │ │ ├── llanuncher_icon_gray_circle_share.webp │ │ ├── llanuncher_icon_gray_circle_video.webp │ │ ├── llanuncher_icon_hid_play.webp │ │ ├── llanuncher_icon_in_game.webp │ │ ├── llanuncher_icon_long_emulator_play.webp │ │ ├── llanuncher_icon_long_google_play.webp │ │ ├── llanuncher_icon_long_hid_play_zh.webp │ │ ├── llanuncher_icon_long_pc_play.webp │ │ ├── llanuncher_icon_long_ps_station.webp │ │ ├── llanuncher_icon_long_ps_store.webp │ │ ├── llanuncher_icon_main_device_empty.webp │ │ ├── llanuncher_icon_main_device_empty_black.webp │ │ ├── llanuncher_icon_main_device_empty_white.webp │ │ ├── llanuncher_icon_main_device_normal.webp │ │ ├── llanuncher_icon_main_device_select.webp │ │ ├── llanuncher_icon_main_top_all_game.webp │ │ ├── llanuncher_icon_main_top_cry.webp │ │ ├── llanuncher_icon_main_top_menu_normal.webp │ │ ├── llanuncher_icon_main_top_menu_select.webp │ │ ├── llanuncher_icon_main_top_notice_normal.webp │ │ ├── llanuncher_icon_main_top_notice_select.webp │ │ ├── llanuncher_icon_main_top_search_normal.webp │ │ ├── llanuncher_icon_main_top_search_select.webp │ │ ├── llanuncher_icon_main_top_steam.webp │ │ ├── llanuncher_icon_main_white_no_network.webp │ │ ├── llanuncher_icon_main_white_signal.webp │ │ ├── llanuncher_icon_main_white_wifi.webp │ │ ├── llanuncher_icon_menu_about_grey.webp │ │ ├── llanuncher_icon_menu_account_black.webp │ │ ├── llanuncher_icon_menu_account_grey.webp │ │ ├── llanuncher_icon_menu_connect_grey.webp │ │ ├── llanuncher_icon_menu_device_center_black.webp │ │ ├── llanuncher_icon_menu_device_center_grey.webp │ │ ├── llanuncher_icon_menu_gamepad_black.webp │ │ ├── llanuncher_icon_menu_help_grey.webp │ │ ├── llanuncher_icon_menu_highlights_black.webp │ │ ├── llanuncher_icon_menu_highlights_grey.webp │ │ ├── llanuncher_icon_menu_mine_device_black.webp │ │ ├── llanuncher_icon_menu_mine_device_grey.webp │ │ ├── llanuncher_icon_menu_notification_grey.webp │ │ ├── llanuncher_icon_menu_photographs_black.webp │ │ ├── llanuncher_icon_menu_photographs_black2.webp │ │ ├── llanuncher_icon_menu_photographs_grey.webp │ │ ├── llanuncher_icon_menu_photographs_white.webp │ │ ├── llanuncher_icon_menu_product_black.webp │ │ ├── llanuncher_icon_menu_product_grey.webp │ │ ├── llanuncher_icon_menu_record_black.webp │ │ ├── llanuncher_icon_menu_record_grey.webp │ │ ├── llanuncher_icon_menu_simulator_black.webp │ │ ├── llanuncher_icon_menu_simulator_grey.webp │ │ ├── llanuncher_icon_mute_click_btn_bg.webp │ │ ├── llanuncher_icon_orange_point.webp │ │ ├── llanuncher_icon_pc_play.webp │ │ ├── llanuncher_icon_photographs_grey.webp │ │ ├── llanuncher_icon_playstation.webp │ │ ├── llanuncher_icon_premier_model.webp │ │ ├── llanuncher_icon_ps_remote_play.webp │ │ ├── llanuncher_icon_ps_station.webp │ │ ├── llanuncher_icon_recordvideo_black.webp │ │ ├── llanuncher_icon_recordvideo_white.webp │ │ ├── llanuncher_icon_report.webp │ │ ├── llanuncher_icon_safety_green.webp │ │ ├── llanuncher_icon_screens_record_black2.webp │ │ ├── llanuncher_icon_screens_record_black3.webp │ │ ├── llanuncher_icon_screens_record_black4.webp │ │ ├── llanuncher_icon_screens_record_black5.webp │ │ ├── llanuncher_icon_screenshot_black.webp │ │ ├── llanuncher_icon_screenshot_orange.webp │ │ ├── llanuncher_icon_select_record.webp │ │ ├── llanuncher_icon_select_usb_start.webp │ │ ├── llanuncher_icon_setting_black.webp │ │ ├── llanuncher_icon_setting_white.webp │ │ ├── llanuncher_icon_steam.webp │ │ ├── llanuncher_icon_un_select_record.webp │ │ ├── llanuncher_icon_un_select_usb_start.webp │ │ ├── llanuncher_icon_withe_add_friend.webp │ │ ├── llanuncher_icon_withe_add_game.webp │ │ ├── llanuncher_icon_withe_age_rating.webp │ │ ├── llanuncher_icon_withe_age_rating_black.webp │ │ ├── llanuncher_icon_withe_battery_level1.webp │ │ ├── llanuncher_icon_withe_battery_level2.webp │ │ ├── llanuncher_icon_withe_battery_level3.webp │ │ ├── llanuncher_icon_withe_battery_level4.webp │ │ ├── llanuncher_icon_withe_battery_level5.webp │ │ ├── llanuncher_icon_withe_game_language.webp │ │ ├── llanuncher_icon_withe_game_mode.webp │ │ ├── llanuncher_icon_withe_game_type.webp │ │ ├── llanuncher_icon_withe_message.webp │ │ ├── llanuncher_icon_withe_release_date.webp │ │ ├── llanuncher_icon_withe_video_cut.webp │ │ ├── llanuncher_iconz_mobile_game_play.webp │ │ ├── llanuncher_location_icon_iv.webp │ │ ├── llanuncher_norification_permission_bg.webp │ │ ├── llanuncher_one_login_logo_bg.webp │ │ ├── llanuncher_pc_stream_type.webp │ │ ├── llanuncher_promotional_dialog_bg_en.webp │ │ ├── llanuncher_promotional_dialog_bg_ja.webp │ │ ├── llanuncher_promotional_dialog_bg_ru.webp │ │ ├── llanuncher_promotional_dialog_bg_zh.webp │ │ ├── llanuncher_steam_start_icon_round.webp │ │ ├── llanuncher_storage_permission_en_bg.webp │ │ ├── llanuncher_storage_permission_zh_bg.webp │ │ ├── llauncher_arrow_withe_to_left.webp │ │ ├── llauncher_arrow_withe_to_right.webp │ │ ├── llauncher_back.webp │ │ ├── llauncher_black_bg_btn_a.webp │ │ ├── llauncher_black_bg_btn_b.webp │ │ ├── llauncher_black_bg_btn_x.webp │ │ ├── llauncher_black_icon_add.webp │ │ ├── llauncher_black_icon_apple.webp │ │ ├── llauncher_black_icon_google.webp │ │ ├── llauncher_black_icon_phone.webp │ │ ├── llauncher_black_icon_qq.webp │ │ ├── llauncher_black_icon_select_float.webp │ │ ├── llauncher_black_icon_wx.webp │ │ ├── llauncher_blue_select_check.webp │ │ ├── llauncher_blue_un_select_check.webp │ │ ├── llauncher_bublu_select_check.webp │ │ ├── llauncher_dialog_device_connect_request_permission.webp │ │ ├── llauncher_dialog_news_detail_btn_share.webp │ │ ├── llauncher_filter_btn.webp │ │ ├── llauncher_filter_btn_select.webp │ │ ├── llauncher_game_detail_setting.webp │ │ ├── llauncher_game_detail_setting_select.webp │ │ ├── llauncher_game_icon_gray.webp │ │ ├── llauncher_gamepad_button_mapping_switch.webp │ │ ├── llauncher_gamepad_test_border.webp │ │ ├── llauncher_gamepad_test_btn_check_down.webp │ │ ├── llauncher_gamepad_test_btn_check_left.webp │ │ ├── llauncher_gamepad_test_btn_check_right.webp │ │ ├── llauncher_gamepad_test_btn_check_up.webp │ │ ├── llauncher_gamepad_test_btn_uncheck_lb.webp │ │ ├── llauncher_gamepad_test_btn_uncheck_lb_main.webp │ │ ├── llauncher_gamepad_test_btn_uncheck_lt.webp │ │ ├── llauncher_gamepad_test_btn_uncheck_lt_main.webp │ │ ├── llauncher_gamepad_test_btn_uncheck_rb.webp │ │ ├── llauncher_gamepad_test_btn_uncheck_rb_main.webp │ │ ├── llauncher_gamepad_test_btn_uncheck_rt.webp │ │ ├── llauncher_gamepad_test_btn_uncheck_rt_main.webp │ │ ├── llauncher_gamepad_test_calibration_1.webp │ │ ├── llauncher_gamepad_test_calibration_2.webp │ │ ├── llauncher_gamepad_test_calibration_3.webp │ │ ├── llauncher_gamepad_test_check_a.webp │ │ ├── llauncher_gamepad_test_check_b.webp │ │ ├── llauncher_gamepad_test_check_home.webp │ │ ├── llauncher_gamepad_test_check_joystick.webp │ │ ├── llauncher_gamepad_test_check_lb.webp │ │ ├── llauncher_gamepad_test_check_lb_main.webp │ │ ├── llauncher_gamepad_test_check_lt.webp │ │ ├── llauncher_gamepad_test_check_lt_main.webp │ │ ├── llauncher_gamepad_test_check_m.webp │ │ ├── llauncher_gamepad_test_check_rb.webp │ │ ├── llauncher_gamepad_test_check_rb_main.webp │ │ ├── llauncher_gamepad_test_check_rt.webp │ │ ├── llauncher_gamepad_test_check_rt_main.webp │ │ ├── llauncher_gamepad_test_check_select.webp │ │ ├── llauncher_gamepad_test_check_start.webp │ │ ├── llauncher_gamepad_test_check_x.webp │ │ ├── llauncher_gamepad_test_check_y.webp │ │ ├── llauncher_gamepad_test_gray_cross.webp │ │ ├── llauncher_gamepad_test_red_cross.webp │ │ ├── llauncher_gamepad_test_uncheck_a.webp │ │ ├── llauncher_gamepad_test_uncheck_b.webp │ │ ├── llauncher_gamepad_test_uncheck_cross_key.webp │ │ ├── llauncher_gamepad_test_uncheck_home.webp │ │ ├── llauncher_gamepad_test_uncheck_joystick.webp │ │ ├── llauncher_gamepad_test_uncheck_l.webp │ │ ├── llauncher_gamepad_test_uncheck_lb.webp │ │ ├── llauncher_gamepad_test_uncheck_lb_lt_bg.webp │ │ ├── llauncher_gamepad_test_uncheck_lb_lt_bg_main.webp │ │ ├── llauncher_gamepad_test_uncheck_lt.webp │ │ ├── llauncher_gamepad_test_uncheck_m.webp │ │ ├── llauncher_gamepad_test_uncheck_r.webp │ │ ├── llauncher_gamepad_test_uncheck_rb.webp │ │ ├── llauncher_gamepad_test_uncheck_rb_rt_bg.webp │ │ ├── llauncher_gamepad_test_uncheck_rb_rt_bg_main.webp │ │ ├── llauncher_gamepad_test_uncheck_rt.webp │ │ ├── llauncher_gamepad_test_uncheck_select.webp │ │ ├── llauncher_gamepad_test_uncheck_start.webp │ │ ├── llauncher_gamepad_test_uncheck_x.webp │ │ ├── llauncher_gamepad_test_uncheck_y.webp │ │ ├── llauncher_gray_btn_search.webp │ │ ├── llauncher_green_select_add_brank.webp │ │ ├── llauncher_green_select_add_write.webp │ │ ├── llauncher_green_select_check.webp │ │ ├── llauncher_ic_back.webp │ │ ├── llauncher_ic_download_tag.webp │ │ ├── llauncher_ic_import_mobile_game_logo.webp │ │ ├── llauncher_ic_import_pc_game_logo.webp │ │ ├── llauncher_ic_launch_type_apple_arcade.webp │ │ ├── llauncher_ic_launch_type_appstore.webp │ │ ├── llauncher_ic_launch_type_cloud.webp │ │ ├── llauncher_ic_launch_type_emulator.webp │ │ ├── llauncher_ic_launch_type_geforce.webp │ │ ├── llauncher_ic_launch_type_googleplay.webp │ │ ├── llauncher_ic_launch_type_hid.webp │ │ ├── llauncher_ic_launch_type_mobile.webp │ │ ├── llauncher_ic_launch_type_mobile_black.webp │ │ ├── llauncher_ic_launch_type_pc.webp │ │ ├── llauncher_ic_launch_type_pc_black.webp │ │ ├── llauncher_ic_launch_type_pc_link.webp │ │ ├── llauncher_ic_launch_type_pc_link_black.webp │ │ ├── llauncher_ic_launch_type_ps.webp │ │ ├── llauncher_ic_launch_type_ps_link.webp │ │ ├── llauncher_ic_launch_type_ps_remote_play.webp │ │ ├── llauncher_ic_launch_type_steam.webp │ │ ├── llauncher_ic_launch_type_steam_black.webp │ │ ├── llauncher_ic_launcher_main_nav_focused.webp │ │ ├── llauncher_ic_launcher_main_nav_normal.webp │ │ ├── llauncher_ic_login_alpha_bg.webp │ │ ├── llauncher_ic_no_search_result.webp │ │ ├── llauncher_ic_option_checked.webp │ │ ├── llauncher_ic_play_in_seond_btn_shadow.webp │ │ ├── llauncher_ic_play_in_seond_btn_shadow_large.webp │ │ ├── llauncher_icon_battery_level_1.webp │ │ ├── llauncher_icon_battery_level_2.webp │ │ ├── llauncher_icon_battery_level_3.webp │ │ ├── llauncher_icon_battery_level_4.webp │ │ ├── llauncher_icon_battery_level_5.webp │ │ ├── llauncher_icon_battery_level_dark_1.webp │ │ ├── llauncher_icon_battery_level_dark_2.webp │ │ ├── llauncher_icon_battery_level_dark_3.webp │ │ ├── llauncher_icon_battery_level_dark_4.webp │ │ ├── llauncher_icon_battery_level_dark_5.webp │ │ ├── llauncher_icon_details_start_game_type.webp │ │ ├── llauncher_icon_details_start_game_type_focus.webp │ │ ├── llauncher_icon_video_cut.webp │ │ ├── llauncher_icon_video_del.webp │ │ ├── llauncher_icon_video_download.webp │ │ ├── llauncher_icon_video_moments.webp │ │ ├── llauncher_icon_video_pause.webp │ │ ├── llauncher_icon_video_resume.webp │ │ ├── llauncher_icon_video_share.webp │ │ ├── llauncher_like_nums.webp │ │ ├── llauncher_order_empty.webp │ │ ├── llauncher_platform_top_shadow.webp │ │ ├── llauncher_question.webp │ │ ├── llauncher_radio_select.webp │ │ ├── llauncher_red_select_check.webp │ │ ├── llauncher_red_un_select_check.webp │ │ ├── llauncher_screen_record_icon.webp │ │ ├── llauncher_search_clear.webp │ │ ├── llauncher_search_icon.webp │ │ ├── llauncher_single_back.webp │ │ ├── llauncher_splash_bg.webp │ │ ├── llauncher_steam_icon_gray.webp │ │ ├── llauncher_stretch_handle_test_border.webp │ │ ├── llauncher_sub_logo.webp │ │ ├── llauncher_white_back_right.webp │ │ ├── llauncher_white_bg_btn_black_a.webp │ │ ├── llauncher_white_bg_btn_bottom.webp │ │ ├── llauncher_white_bg_btn_g.webp │ │ ├── llauncher_white_bg_btn_lbrb.webp │ │ ├── llauncher_white_bg_btn_left.webp │ │ ├── llauncher_white_bg_btn_like.webp │ │ ├── llauncher_white_bg_btn_record_highights.webp │ │ ├── llauncher_white_bg_btn_record_screen.webp │ │ ├── llauncher_white_bg_btn_right.webp │ │ ├── llauncher_white_bg_btn_select.webp │ │ ├── llauncher_white_bg_btn_top.webp │ │ ├── llauncher_white_bg_btn_touch_play.webp │ │ ├── llauncher_white_bg_btn_unlike.webp │ │ ├── llauncher_white_bg_btn_x3pro_menu.webp │ │ ├── llauncher_white_icon_apple.webp │ │ ├── llauncher_white_icon_gamesir_logo.webp │ │ ├── llauncher_white_icon_google.webp │ │ ├── llauncher_white_icon_phone.webp │ │ ├── llauncher_white_icon_qq.webp │ │ ├── llauncher_white_icon_wx.webp │ │ ├── llauncher_white_un_select_check.webp │ │ ├── llauncher_white_un_select_check2.webp │ │ ├── llauncher_withe_bg_btn_left.webp │ │ ├── llauncher_withe_bg_btn_right.webp │ │ ├── lock.webp │ │ ├── lt.webp │ │ ├── lt_m.webp │ │ ├── map_clear_config_btn.webp │ │ ├── map_close_btn.webp │ │ ├── map_config_create_new_btn.webp │ │ ├── map_config_save_btn.webp │ │ ├── map_config_test_btn.webp │ │ ├── map_key_bg.webp │ │ ├── map_question_tips_btn.webp │ │ ├── map_switch_off.webp │ │ ├── map_switch_on.webp │ │ ├── mapping_beauty_thumb.webp │ │ ├── mapping_comm_loading.webp │ │ ├── mapping_floating_titile_s_bg.webp │ │ ├── mapping_ic_back_gray.webp │ │ ├── mapping_ic_button_setting_edit_white.webp │ │ ├── mapping_ic_click_mode_help_white.webp │ │ ├── mapping_list_icon_les.webp │ │ ├── mapping_list_icon_more.webp │ │ ├── mapping_pop_icon_foward_pressed.webp │ │ ├── media3_icon_album.webp │ │ ├── media3_icon_artist.webp │ │ ├── media3_icon_block.webp │ │ ├── media3_icon_bookmark_filled.webp │ │ ├── media3_icon_bookmark_unfilled.webp │ │ ├── media3_icon_check_circle_filled.webp │ │ ├── media3_icon_check_circle_unfilled.webp │ │ ├── media3_icon_closed_captions.webp │ │ ├── media3_icon_closed_captions_off.webp │ │ ├── media3_icon_fast_forward.webp │ │ ├── media3_icon_feed.webp │ │ ├── media3_icon_flag_filled.webp │ │ ├── media3_icon_flag_unfilled.webp │ │ ├── media3_icon_heart_filled.webp │ │ ├── media3_icon_heart_unfilled.webp │ │ ├── media3_icon_minus.webp │ │ ├── media3_icon_minus_circle_filled.webp │ │ ├── media3_icon_minus_circle_unfilled.webp │ │ ├── media3_icon_next.webp │ │ ├── media3_icon_pause.webp │ │ ├── media3_icon_play.webp │ │ ├── media3_icon_playback_speed.webp │ │ ├── media3_icon_playback_speed_0_5.webp │ │ ├── media3_icon_playback_speed_0_8.webp │ │ ├── media3_icon_playback_speed_1_0.webp │ │ ├── media3_icon_playback_speed_1_2.webp │ │ ├── media3_icon_playback_speed_1_5.webp │ │ ├── media3_icon_playback_speed_1_8.webp │ │ ├── media3_icon_playback_speed_2_0.webp │ │ ├── media3_icon_playlist_add.webp │ │ ├── media3_icon_playlist_remove.webp │ │ ├── media3_icon_plus.webp │ │ ├── media3_icon_plus_circle_filled.webp │ │ ├── media3_icon_plus_circle_unfilled.webp │ │ ├── media3_icon_previous.webp │ │ ├── media3_icon_quality.webp │ │ ├── media3_icon_queue_add.webp │ │ ├── media3_icon_queue_next.webp │ │ ├── media3_icon_queue_remove.webp │ │ ├── media3_icon_radio.webp │ │ ├── media3_icon_repeat_all.webp │ │ ├── media3_icon_repeat_off.webp │ │ ├── media3_icon_repeat_one.webp │ │ ├── media3_icon_rewind.webp │ │ ├── media3_icon_settings.webp │ │ ├── media3_icon_share.webp │ │ ├── media3_icon_shuffle_off.webp │ │ ├── media3_icon_shuffle_on.webp │ │ ├── media3_icon_shuffle_star.webp │ │ ├── media3_icon_signal.webp │ │ ├── media3_icon_skip_back.webp │ │ ├── media3_icon_skip_back_10.webp │ │ ├── media3_icon_skip_back_15.webp │ │ ├── media3_icon_skip_back_30.webp │ │ ├── media3_icon_skip_back_5.webp │ │ ├── media3_icon_skip_forward.webp │ │ ├── media3_icon_skip_forward_10.webp │ │ ├── media3_icon_skip_forward_15.webp │ │ ├── media3_icon_skip_forward_30.webp │ │ ├── media3_icon_skip_forward_5.webp │ │ ├── media3_icon_star_filled.webp │ │ ├── media3_icon_star_unfilled.webp │ │ ├── media3_icon_stop.webp │ │ ├── media3_icon_subtitles.webp │ │ ├── media3_icon_subtitles_off.webp │ │ ├── media3_icon_sync.webp │ │ ├── media3_icon_thumb_down_filled.webp │ │ ├── media3_icon_thumb_down_unfilled.webp │ │ ├── media3_icon_thumb_up_filled.webp │ │ ├── media3_icon_thumb_up_unfilled.webp │ │ ├── media3_icon_volume_down.webp │ │ ├── media3_icon_volume_off.webp │ │ ├── media3_icon_volume_up.webp │ │ ├── media_session_service_notification_ic_music_note.webp │ │ ├── menu_device_normal.webp │ │ ├── menu_download_normal.webp │ │ ├── menu_game_normal.webp │ │ ├── menu_home_normal.webp │ │ ├── menu_media_normal.webp │ │ ├── menu_setting_normal.webp │ │ ├── menu_social_normal.webp │ │ ├── menu_user_center_normal.webp │ │ ├── motion_control_select.webp │ │ ├── motion_control_unselect.webp │ │ ├── mp_config_del.webp │ │ ├── mp_config_share.webp │ │ ├── msg_choose.webp │ │ ├── naka.webp │ │ ├── number_picker_decrement.webp │ │ ├── number_picker_increment.webp │ │ ├── order_sort.webp │ │ ├── order_sort_reverse.webp │ │ ├── pay_icon_loading.webp │ │ ├── pay_white_bg_btn_b.webp │ │ ├── pay_white_bg_btn_menu.webp │ │ ├── pay_white_bg_btn_x.webp │ │ ├── pc_add_game_focus.webp │ │ ├── pc_add_game_norm.webp │ │ ├── pc_all_windows.webp │ │ ├── pc_arrow_right_focus_click.webp │ │ ├── pc_back_icon.webp │ │ ├── pc_back_left_white.webp │ │ ├── pc_desktop_focus.webp │ │ ├── pc_desktop_norm.webp │ │ ├── pc_details_bg.webp │ │ ├── pc_details_main_icon.webp │ │ ├── pc_focus_add_dev_icon.webp │ │ ├── pc_focus_back_icon.webp │ │ ├── pc_focus_connected_icon.webp │ │ ├── pc_focus_connecting_icon.webp │ │ ├── pc_focus_dekstop_icon.webp │ │ ├── pc_focus_desktop_dev_icon.webp │ │ ├── pc_focus_directory_icon.webp │ │ ├── pc_focus_link_icon.webp │ │ ├── pc_focus_offline_icon.webp │ │ ├── pc_focus_question_icon.webp │ │ ├── pc_focus_scan_icon.webp │ │ ├── pc_focus_scan_main_icon.webp │ │ ├── pc_focus_setting_icon.webp │ │ ├── pc_focus_share_icon.webp │ │ ├── pc_focus_unconnected_icon.webp │ │ ├── pc_game_detail_setting.webp │ │ ├── pc_ic_loading.webp │ │ ├── pc_ic_options.webp │ │ ├── pc_keypad.webp │ │ ├── pc_mapping.webp │ │ ├── pc_norm_add_dev_icon.webp │ │ ├── pc_norm_back_icon.webp │ │ ├── pc_norm_connected_icon.webp │ │ ├── pc_norm_connecting_icon.webp │ │ ├── pc_norm_dekstop_icon.webp │ │ ├── pc_norm_desktop_dev_icon.webp │ │ ├── pc_norm_directory_icon.webp │ │ ├── pc_norm_link_icon.webp │ │ ├── pc_norm_offline_icon.webp │ │ ├── pc_norm_question_icon.webp │ │ ├── pc_norm_scan_icon.webp │ │ ├── pc_norm_scan_main_icon.webp │ │ ├── pc_norm_setting_icon.webp │ │ ├── pc_norm_share_icon.webp │ │ ├── pc_norm_unconnected_icon.webp │ │ ├── pc_ps_norm_add_dev_icon.webp │ │ ├── pc_setup_shadow.webp │ │ ├── pc_show_desktop.webp │ │ ├── pc_stream_dir_icon.webp │ │ ├── pc_stream_menu_icon.webp │ │ ├── pc_stream_play_icon.webp │ │ ├── pc_stream_right_arr.webp │ │ ├── pc_stream_switch_off.webp │ │ ├── pc_stream_switch_off_disabled.webp │ │ ├── pc_stream_switch_off_focus.webp │ │ ├── pc_stream_switch_on.webp │ │ ├── pc_stream_switch_on_disabled.webp │ │ ├── pg.webp │ │ ├── point_icon_max.webp │ │ ├── product_manual_select.webp │ │ ├── product_manual_unselect.webp │ │ ├── profile_icon_set.webp │ │ ├── ps_arr_left.webp │ │ ├── ps_arr_right.webp │ │ ├── ps_arrow_left_focus_click.webp │ │ ├── ps_arrow_left_focus_unclick.webp │ │ ├── ps_arrow_left_normal_click.webp │ │ ├── ps_arrow_left_normal_unclick.webp │ │ ├── ps_arrow_right_focus_click.webp │ │ ├── ps_arrow_right_focus_unclick.webp │ │ ├── ps_arrow_right_normal_click.webp │ │ ├── ps_arrow_right_normal_unclick.webp │ │ ├── ps_back.webp │ │ ├── ps_connecting.webp │ │ ├── ps_ic_audio.webp │ │ ├── ps_ic_audio_placeholder.webp │ │ ├── ps_ic_audio_play.webp │ │ ├── ps_ic_audio_play_cover.webp │ │ ├── ps_ic_audio_stop.webp │ │ ├── ps_ic_back.webp │ │ ├── ps_ic_black_back.webp │ │ ├── ps_ic_camera.webp │ │ ├── ps_ic_default_arrow.webp │ │ ├── ps_ic_delete.webp │ │ ├── ps_ic_editor.webp │ │ ├── ps_ic_fast_play.webp │ │ ├── ps_ic_grey_arrow.webp │ │ ├── ps_ic_loading.webp │ │ ├── ps_ic_main_add.webp │ │ ├── ps_ic_no_data.webp │ │ ├── ps_ic_normal.webp │ │ ├── ps_ic_normal_back.webp │ │ ├── ps_ic_placeholder.webp │ │ ├── ps_ic_preview_selected.webp │ │ ├── ps_ic_progress.webp │ │ ├── ps_ic_ps4.webp │ │ ├── ps_ic_ps5.webp │ │ ├── ps_ic_refresh_select.webp │ │ ├── ps_ic_rollback_select.webp │ │ ├── ps_ic_seek_bar_thumb.webp │ │ ├── ps_ic_selected.webp │ │ ├── ps_ic_shadow_bg.webp │ │ ├── ps_ic_slow_audio.webp │ │ ├── ps_ic_video.webp │ │ ├── ps_ic_video_play.webp │ │ ├── ps_round.webp │ │ ├── ps_round_sp.webp │ │ ├── ps_square.webp │ │ ├── ps_square_sp.webp │ │ ├── ps_triangle.webp │ │ ├── ps_triangle_sp.webp │ │ ├── ps_x.webp │ │ ├── ps_x_sp.webp │ │ ├── psstream_ic_checked.webp │ │ ├── quantum_ic_art_track_grey600_48.webp │ │ ├── quantum_ic_bigtop_updates_white_24.webp │ │ ├── quantum_ic_cast_connected_white_24.webp │ │ ├── quantum_ic_cast_white_36.webp │ │ ├── quantum_ic_clear_white_24.webp │ │ ├── quantum_ic_closed_caption_grey600_36.webp │ │ ├── quantum_ic_closed_caption_white_36.webp │ │ ├── quantum_ic_forward_10_white_24.webp │ │ ├── quantum_ic_forward_30_grey600_36.webp │ │ ├── quantum_ic_forward_30_white_24.webp │ │ ├── quantum_ic_forward_30_white_36.webp │ │ ├── quantum_ic_keyboard_arrow_down_white_36.webp │ │ ├── quantum_ic_pause_circle_filled_grey600_36.webp │ │ ├── quantum_ic_pause_circle_filled_white_36.webp │ │ ├── quantum_ic_pause_grey600_36.webp │ │ ├── quantum_ic_pause_grey600_48.webp │ │ ├── quantum_ic_pause_white_24.webp │ │ ├── quantum_ic_play_arrow_grey600_36.webp │ │ ├── quantum_ic_play_arrow_grey600_48.webp │ │ ├── quantum_ic_play_arrow_white_24.webp │ │ ├── quantum_ic_play_circle_filled_grey600_36.webp │ │ ├── quantum_ic_play_circle_filled_white_36.webp │ │ ├── quantum_ic_refresh_white_24.webp │ │ ├── quantum_ic_replay_10_white_24.webp │ │ ├── quantum_ic_replay_30_grey600_36.webp │ │ ├── quantum_ic_replay_30_white_24.webp │ │ ├── quantum_ic_replay_30_white_36.webp │ │ ├── quantum_ic_replay_white_24.webp │ │ ├── quantum_ic_skip_next_grey600_36.webp │ │ ├── quantum_ic_skip_next_white_24.webp │ │ ├── quantum_ic_skip_next_white_36.webp │ │ ├── quantum_ic_skip_previous_grey600_36.webp │ │ ├── quantum_ic_skip_previous_white_24.webp │ │ ├── quantum_ic_skip_previous_white_36.webp │ │ ├── quantum_ic_stop_grey600_36.webp │ │ ├── quantum_ic_stop_grey600_48.webp │ │ ├── quantum_ic_stop_white_24.webp │ │ ├── quantum_ic_volume_off_grey600_36.webp │ │ ├── quantum_ic_volume_off_white_36.webp │ │ ├── quantum_ic_volume_up_grey600_36.webp │ │ ├── quantum_ic_volume_up_white_36.webp │ │ ├── qx.webp │ │ ├── r1.webp │ │ ├── r1_m.webp │ │ ├── r2.webp │ │ ├── r2_m.webp │ │ ├── r3.webp │ │ ├── r3_m.webp │ │ ├── radiator_select.webp │ │ ├── radiator_unselect.webp │ │ ├── rb.webp │ │ ├── resource_del.webp │ │ ├── rido_nomal.webp │ │ ├── rido_pressed.webp │ │ ├── right.webp │ │ ├── right_l.webp │ │ ├── right_m.webp │ │ ├── right_nomal.webp │ │ ├── right_pressed.webp │ │ ├── right_r.webp │ │ ├── rito_nomal.webp │ │ ├── rito_pressed.webp │ │ ├── rocker_left.webp │ │ ├── rocker_left_m.webp │ │ ├── rocker_right.webp │ │ ├── rt.webp │ │ ├── s1.webp │ │ ├── s2.webp │ │ ├── sd.webp │ │ ├── select.webp │ │ ├── select_m.webp │ │ ├── select_media_default_pic.webp │ │ ├── separate_down_state_arrow.webp │ │ ├── separate_down_state_arrow_m.webp │ │ ├── separate_up_state_arrow.webp │ │ ├── separate_up_state_arrow_m.webp │ │ ├── setting.webp │ │ ├── setting_icon.webp │ │ ├── shoubing_a_1_t.webp │ │ ├── shoubing_a_t.webp │ │ ├── shoubing_b_1_t.webp │ │ ├── shoubing_b_t.webp │ │ ├── shoubing_back_1_t.webp │ │ ├── shoubing_back_t.webp │ │ ├── shoubing_fangxiang_dizuo_t.webp │ │ ├── shoubing_fangxiang_shang_1_t.webp │ │ ├── shoubing_fangxiang_shang_t.webp │ │ ├── shoubing_fangxiang_xia_1_t.webp │ │ ├── shoubing_fangxiang_xia_t.webp │ │ ├── shoubing_fangxiang_you_1_t.webp │ │ ├── shoubing_fangxiang_you_t.webp │ │ ├── shoubing_fangxiang_zuo_1_t.webp │ │ ├── shoubing_fangxiang_zuo_t.webp │ │ ├── shoubing_lb_1_t.webp │ │ ├── shoubing_lb_t.webp │ │ ├── shoubing_lt_1_t.webp │ │ ├── shoubing_lt_t.webp │ │ ├── shoubing_rb_1_t.webp │ │ ├── shoubing_rb_t.webp │ │ ├── shoubing_rt_1_t.webp │ │ ├── shoubing_rt_t.webp │ │ ├── shoubing_start_1_t.webp │ │ ├── shoubing_start_t.webp │ │ ├── shoubing_x_1_t.webp │ │ ├── shoubing_x_t.webp │ │ ├── shoubing_y_1_t.webp │ │ ├── shoubing_y_t.webp │ │ ├── shoubing_yaogan_dizuo_t.webp │ │ ├── shoubing_yaogan_t.webp │ │ ├── sidebar_click_item_checkbox_normal_icon.webp │ │ ├── sidebar_click_item_checkbox_selected_icon.webp │ │ ├── sidebar_click_item_icon.webp │ │ ├── sidebar_keyboard.webp │ │ ├── sidebar_operator.webp │ │ ├── sidebar_performance.webp │ │ ├── sidebar_settings.webp │ │ ├── sidebar_switch_close.webp │ │ ├── sidebar_switch_open.webp │ │ ├── sp_a.webp │ │ ├── sp_add.webp │ │ ├── sp_add_m.webp │ │ ├── sp_b.webp │ │ ├── sp_bn13.webp │ │ ├── sp_bn14.webp │ │ ├── sp_bn15.webp │ │ ├── sp_bn16.webp │ │ ├── sp_down.webp │ │ ├── sp_k0.webp │ │ ├── sp_k1.webp │ │ ├── sp_k2.webp │ │ ├── sp_k3.webp │ │ ├── sp_k4.webp │ │ ├── sp_k5.webp │ │ ├── sp_k6.webp │ │ ├── sp_k7.webp │ │ ├── sp_k8.webp │ │ ├── sp_k9.webp │ │ ├── sp_ka.webp │ │ ├── sp_kadd.webp │ │ ├── sp_kalt.webp │ │ ├── sp_kapo.webp │ │ ├── sp_kb.webp │ │ ├── sp_kbackslash.webp │ │ ├── sp_kbackspace.webp │ │ ├── sp_kc.webp │ │ ├── sp_kcapslock.webp │ │ ├── sp_kcom.webp │ │ ├── sp_kctrl.webp │ │ ├── sp_kd.webp │ │ ├── sp_kdelete.webp │ │ ├── sp_kdivide.webp │ │ ├── sp_kdot.webp │ │ ├── sp_kdown.webp │ │ ├── sp_ke.webp │ │ ├── sp_kend.webp │ │ ├── sp_kenter.webp │ │ ├── sp_kequal.webp │ │ ├── sp_kesc.webp │ │ ├── sp_kf.webp │ │ ├── sp_kf1.webp │ │ ├── sp_kf10.webp │ │ ├── sp_kf11.webp │ │ ├── sp_kf12.webp │ │ ├── sp_kf2.webp │ │ ├── sp_kf3.webp │ │ ├── sp_kf4.webp │ │ ├── sp_kf5.webp │ │ ├── sp_kf6.webp │ │ ├── sp_kf7.webp │ │ ├── sp_kf8.webp │ │ ├── sp_kf9.webp │ │ ├── sp_kg.webp │ │ ├── sp_kg1.webp │ │ ├── sp_kg2.webp │ │ ├── sp_kg3.webp │ │ ├── sp_kg4.webp │ │ ├── sp_kgrave.webp │ │ ├── sp_kh.webp │ │ ├── sp_khome.webp │ │ ├── sp_ki.webp │ │ ├── sp_kinsert.webp │ │ ├── sp_kj.webp │ │ ├── sp_kk.webp │ │ ├── sp_kl.webp │ │ ├── sp_klbracket.webp │ │ ├── sp_kleft.webp │ │ ├── sp_km.webp │ │ ├── sp_kmenu.webp │ │ ├── sp_kminus.webp │ │ ├── sp_kmultiply.webp │ │ ├── sp_kn.webp │ │ ├── sp_ko.webp │ │ ├── sp_kp.webp │ │ ├── sp_kpause.webp │ │ ├── sp_kper.webp │ │ ├── sp_kpgdn.webp │ │ ├── sp_kpgup.webp │ │ ├── sp_kprint.webp │ │ ├── sp_kq.webp │ │ ├── sp_kr.webp │ │ ├── sp_krbracket.webp │ │ ├── sp_kright.webp │ │ ├── sp_ks.webp │ │ ├── sp_kscroll.webp │ │ ├── sp_ksem.webp │ │ ├── sp_kshift.webp │ │ ├── sp_kslash.webp │ │ ├── sp_kspace.webp │ │ ├── sp_ksub.webp │ │ ├── sp_kt.webp │ │ ├── sp_ktab.webp │ │ ├── sp_ku.webp │ │ ├── sp_kup.webp │ │ ├── sp_kv.webp │ │ ├── sp_kw.webp │ │ ├── sp_kwin.webp │ │ ├── sp_kx.webp │ │ ├── sp_ky.webp │ │ ├── sp_kz.webp │ │ ├── sp_lb.webp │ │ ├── sp_left.webp │ │ ├── sp_lt.webp │ │ ├── sp_mixbtnbg_m.webp │ │ ├── sp_right.webp │ │ ├── sp_select_m.webp │ │ ├── sp_start_m.webp │ │ ├── sp_up.webp │ │ ├── sp_x.webp │ │ ├── sp_y.webp │ │ ├── start.webp │ │ ├── start_m.webp │ │ ├── steam_add_account.webp │ │ ├── steam_add_account_focus.webp │ │ ├── steam_device_confirmation.webp │ │ ├── steam_icon.webp │ │ ├── steam_level_bg.webp │ │ ├── steam_phone_icon.webp │ │ ├── steam_remember_me.webp │ │ ├── steam_remember_me_select.webp │ │ ├── switch_off.webp │ │ ├── switch_off_focus.webp │ │ ├── switch_on.webp │ │ ├── sy.webp │ │ ├── sz.webp │ │ ├── tab_bg.webp │ │ ├── tab_icon_add_menu.webp │ │ ├── tab_icon_close.webp │ │ ├── tab_icon_game_menu.webp │ │ ├── tab_icon_help_menu.webp │ │ ├── tab_icon_home_select.webp │ │ ├── tab_icon_home_unselect.webp │ │ ├── tab_icon_key.webp │ │ ├── tab_icon_mine.webp │ │ ├── tab_icon_plan_menu.webp │ │ ├── tab_icon_setting_menu.webp │ │ ├── tab_icon_switch.webp │ │ ├── td.webp │ │ ├── test_bg.webp │ │ ├── tj.webp │ │ ├── top_nomal.webp │ │ ├── top_pressed.webp │ │ ├── trigger_select.webp │ │ ├── trigger_unselect.webp │ │ ├── tt.webp │ │ ├── ucrop_ic_angle.webp │ │ ├── ucrop_ic_done.webp │ │ ├── unlock.webp │ │ ├── up.webp │ │ ├── up_l.webp │ │ ├── up_m.webp │ │ ├── up_r.webp │ │ ├── vibration_select.webp │ │ ├── vibration_unselect.webp │ │ ├── video_back.webp │ │ ├── video_backward_icon.webp │ │ ├── video_brightness_6_white_36dp.webp │ │ ├── video_enlarge.webp │ │ ├── video_error_normal.webp │ │ ├── video_error_pressed.webp │ │ ├── video_forward_icon.webp │ │ ├── video_loading_bg.webp │ │ ├── video_pause_normal.webp │ │ ├── video_pause_pressed.webp │ │ ├── video_play_normal.webp │ │ ├── video_play_pressed.webp │ │ ├── video_shrink.webp │ │ ├── video_small_close.webp │ │ ├── video_volume_icon.webp │ │ ├── virtual_btn_ic_circle_shadow_bg.webp │ │ ├── virtual_btn_ic_rectangle_shadow_bg.webp │ │ ├── virtual_btn_profile_game_pad.webp │ │ ├── virtual_btn_profile_pc.webp │ │ ├── white_icon_gamesir_logo.webp │ │ ├── win_blue_check.webp │ │ ├── win_blue_disabled_check.webp │ │ ├── win_blue_uncheck.webp │ │ ├── win_hud_left_bottom.webp │ │ ├── win_hud_left_top.webp │ │ ├── win_hud_right_bottom.webp │ │ ├── win_hud_right_top.webp │ │ ├── wine_default_exe_icon.webp │ │ ├── wine_game_pad_bg.webp │ │ ├── wine_game_pad_disconnect_bg.webp │ │ ├── wine_loading_round_light.png.webp │ │ ├── wine_loading_round_light.webp │ │ ├── wine_logo.webp │ │ ├── wine_not_steam_loading_pic.webp │ │ ├── wine_roboto_logo.webp │ │ ├── wine_steam_loading_pic.webp │ │ ├── winemu_game_pad.webp │ │ ├── winemu_game_pad_forbidden.webp │ │ ├── winemu_ic_delete_env.webp │ │ ├── winemu_ic_dir_normal.webp │ │ ├── winemu_ic_file_normal.webp │ │ ├── winemu_ic_file_zip.webp │ │ ├── winemu_ic_local_game_cover_bg_blue.webp │ │ ├── winemu_ic_local_game_cover_bg_purple.webp │ │ ├── winemu_ic_local_game_cover_bg_yellow.webp │ │ ├── winemu_open_container_desktop.webp │ │ ├── winemu_pc_game.webp │ │ ├── winemu_pc_stream.webp │ │ ├── winemu_ready_start_loading.webp │ │ ├── x.webp │ │ ├── x1_rocker_left.webp │ │ ├── x_m.webp │ │ ├── xb.webp │ │ ├── xja_back_icon.webp │ │ ├── xja_check_icon.webp │ │ ├── xja_customize_icon.webp │ │ ├── xja_del_num_icon.webp │ │ ├── xja_del_wh_icon.webp │ │ ├── xja_gestures_icon.webp │ │ ├── xja_macro_record_icon.webp │ │ ├── xja_one_click_skills_icon.webp │ │ ├── xja_open_usb_message.webp │ │ ├── xja_pc_norm_question_icon.webp │ │ ├── xja_phone_dev_message_icon.webp │ │ ├── xja_step1_1_icon.webp │ │ ├── xja_step1_2_icon.webp │ │ ├── xja_step2_1_icon.webp │ │ ├── xja_step2_2_icon.webp │ │ ├── xja_step3_1_icon.webp │ │ ├── xja_step3_2_icon.webp │ │ ├── xja_step4_1_icon.webp │ │ ├── xja_step4_2_icon.webp │ │ ├── xja_step5_2_icon.webp │ │ ├── xja_success_state_icon.webp │ │ ├── xja_white_bg_btn_b.webp │ │ ├── xja_white_bg_btn_y.webp │ │ ├── xz_xz.webp │ │ ├── y.webp │ │ ├── y1.webp │ │ ├── y_m.webp │ │ ├── z1_g1.webp │ │ ├── z1_g2.webp │ │ ├── z1_g3.webp │ │ ├── z1_g4.webp │ │ ├── zb1.webp │ │ └── zb2.webp │ ├── drawable-xxxhdpi │ │ ├── abc_btn_check_to_on_mtrl_000.webp │ │ ├── abc_btn_check_to_on_mtrl_015.webp │ │ ├── abc_btn_radio_to_on_mtrl_000.webp │ │ ├── abc_btn_radio_to_on_mtrl_015.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── abc_text_select_handle_left_mtrl.webp │ │ ├── abc_text_select_handle_right_mtrl.webp │ │ ├── bar_arrows_left_black.webp │ │ ├── bar_arrows_left_white.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_000.webp │ │ ├── cast_abc_scrubber_control_to_pressed_mtrl_005.webp │ │ ├── cast_ic_stop_circle_filled_grey600.webp │ │ ├── cast_ic_stop_circle_filled_white.webp │ │ ├── exo_edit_mode_logo.webp │ │ ├── exo_ic_audiotrack.webp │ │ ├── exo_ic_check.webp │ │ ├── exo_ic_chevron_left.webp │ │ ├── exo_ic_chevron_right.webp │ │ ├── exo_ic_default_album_image.webp │ │ ├── exo_ic_forward.webp │ │ ├── exo_ic_fullscreen_enter.webp │ │ ├── exo_ic_fullscreen_exit.webp │ │ ├── exo_ic_pause_circle_filled.webp │ │ ├── exo_ic_play_circle_filled.webp │ │ ├── exo_ic_rewind.webp │ │ ├── exo_ic_settings.webp │ │ ├── exo_ic_skip_next.webp │ │ ├── exo_ic_skip_previous.webp │ │ ├── exo_ic_speed.webp │ │ ├── exo_ic_subtitle_off.webp │ │ ├── exo_ic_subtitle_on.webp │ │ ├── exo_icon_circular_play.webp │ │ ├── exo_icon_fastforward.webp │ │ ├── exo_icon_fullscreen_enter.webp │ │ ├── exo_icon_fullscreen_exit.webp │ │ ├── exo_icon_next.webp │ │ ├── exo_icon_pause.webp │ │ ├── exo_icon_play.webp │ │ ├── exo_icon_previous.webp │ │ ├── exo_icon_repeat_all.webp │ │ ├── exo_icon_repeat_off.webp │ │ ├── exo_icon_repeat_one.webp │ │ ├── exo_icon_rewind.webp │ │ ├── exo_icon_shuffle_off.webp │ │ ├── exo_icon_shuffle_on.webp │ │ ├── exo_icon_stop.webp │ │ ├── ic_call_answer.webp │ │ ├── ic_call_answer_low.webp │ │ ├── ic_call_answer_video.webp │ │ ├── ic_call_answer_video_low.webp │ │ ├── ic_call_decline.webp │ │ ├── ic_call_decline_low.webp │ │ ├── ic_checked_checkbox.webp │ │ ├── ic_group_collapse_00.webp │ │ ├── ic_group_collapse_01.webp │ │ ├── ic_group_collapse_02.webp │ │ ├── ic_group_collapse_03.webp │ │ ├── ic_group_collapse_04.webp │ │ ├── ic_group_collapse_05.webp │ │ ├── ic_group_collapse_06.webp │ │ ├── ic_group_collapse_07.webp │ │ ├── ic_group_collapse_08.webp │ │ ├── ic_group_collapse_09.webp │ │ ├── ic_group_collapse_10.webp │ │ ├── ic_group_collapse_11.webp │ │ ├── ic_group_collapse_12.webp │ │ ├── ic_group_collapse_13.webp │ │ ├── ic_group_collapse_14.webp │ │ ├── ic_group_collapse_15.webp │ │ ├── ic_group_expand_00.webp │ │ ├── ic_group_expand_01.webp │ │ ├── ic_group_expand_02.webp │ │ ├── ic_group_expand_03.webp │ │ ├── ic_group_expand_04.webp │ │ ├── ic_group_expand_05.webp │ │ ├── ic_group_expand_06.webp │ │ ├── ic_group_expand_07.webp │ │ ├── ic_group_expand_08.webp │ │ ├── ic_group_expand_09.webp │ │ ├── ic_group_expand_10.webp │ │ ├── ic_group_expand_11.webp │ │ ├── ic_group_expand_12.webp │ │ ├── ic_group_expand_13.webp │ │ ├── ic_group_expand_14.webp │ │ ├── ic_group_expand_15.webp │ │ ├── ic_limited_time.webp │ │ ├── ic_mr_button_grey.webp │ │ ├── ic_rating_star_border.webp │ │ ├── ic_rating_star_solid.webp │ │ ├── ic_timing.webp │ │ ├── ic_unchecked_checkbox.webp │ │ ├── ic_vol_mute.webp │ │ ├── ic_vol_unmute.webp │ │ ├── jpush_close.webp │ │ ├── media3_icon_album.webp │ │ ├── media3_icon_artist.webp │ │ ├── media3_icon_block.webp │ │ ├── media3_icon_bookmark_filled.webp │ │ ├── media3_icon_bookmark_unfilled.webp │ │ ├── media3_icon_check_circle_filled.webp │ │ ├── media3_icon_check_circle_unfilled.webp │ │ ├── media3_icon_closed_captions.webp │ │ ├── media3_icon_closed_captions_off.webp │ │ ├── media3_icon_fast_forward.webp │ │ ├── media3_icon_feed.webp │ │ ├── media3_icon_flag_filled.webp │ │ ├── media3_icon_flag_unfilled.webp │ │ ├── media3_icon_heart_filled.webp │ │ ├── media3_icon_heart_unfilled.webp │ │ ├── media3_icon_minus.webp │ │ ├── media3_icon_minus_circle_filled.webp │ │ ├── media3_icon_minus_circle_unfilled.webp │ │ ├── media3_icon_next.webp │ │ ├── media3_icon_pause.webp │ │ ├── media3_icon_play.webp │ │ ├── media3_icon_playback_speed.webp │ │ ├── media3_icon_playback_speed_0_5.webp │ │ ├── media3_icon_playback_speed_0_8.webp │ │ ├── media3_icon_playback_speed_1_0.webp │ │ ├── media3_icon_playback_speed_1_2.webp │ │ ├── media3_icon_playback_speed_1_5.webp │ │ ├── media3_icon_playback_speed_1_8.webp │ │ ├── media3_icon_playback_speed_2_0.webp │ │ ├── media3_icon_playlist_add.webp │ │ ├── media3_icon_playlist_remove.webp │ │ ├── media3_icon_plus.webp │ │ ├── media3_icon_plus_circle_filled.webp │ │ ├── media3_icon_plus_circle_unfilled.webp │ │ ├── media3_icon_previous.webp │ │ ├── media3_icon_quality.webp │ │ ├── media3_icon_queue_add.webp │ │ ├── media3_icon_queue_next.webp │ │ ├── media3_icon_queue_remove.webp │ │ ├── media3_icon_radio.webp │ │ ├── media3_icon_repeat_all.webp │ │ ├── media3_icon_repeat_off.webp │ │ ├── media3_icon_repeat_one.webp │ │ ├── media3_icon_rewind.webp │ │ ├── media3_icon_settings.webp │ │ ├── media3_icon_share.webp │ │ ├── media3_icon_shuffle_off.webp │ │ ├── media3_icon_shuffle_on.webp │ │ ├── media3_icon_shuffle_star.webp │ │ ├── media3_icon_signal.webp │ │ ├── media3_icon_skip_back.webp │ │ ├── media3_icon_skip_back_10.webp │ │ ├── media3_icon_skip_back_15.webp │ │ ├── media3_icon_skip_back_30.webp │ │ ├── media3_icon_skip_back_5.webp │ │ ├── media3_icon_skip_forward.webp │ │ ├── media3_icon_skip_forward_10.webp │ │ ├── media3_icon_skip_forward_15.webp │ │ ├── media3_icon_skip_forward_30.webp │ │ ├── media3_icon_skip_forward_5.webp │ │ ├── media3_icon_star_filled.webp │ │ ├── media3_icon_star_unfilled.webp │ │ ├── media3_icon_stop.webp │ │ ├── media3_icon_subtitles.webp │ │ ├── media3_icon_subtitles_off.webp │ │ ├── media3_icon_sync.webp │ │ ├── media3_icon_thumb_down_filled.webp │ │ ├── media3_icon_thumb_down_unfilled.webp │ │ ├── media3_icon_thumb_up_filled.webp │ │ ├── media3_icon_thumb_up_unfilled.webp │ │ ├── media3_icon_volume_down.webp │ │ ├── media3_icon_volume_off.webp │ │ ├── media3_icon_volume_up.webp │ │ ├── media_session_service_notification_ic_music_note.webp │ │ ├── quantum_ic_art_track_grey600_48.webp │ │ ├── quantum_ic_bigtop_updates_white_24.webp │ │ ├── quantum_ic_cast_connected_white_24.webp │ │ ├── quantum_ic_cast_white_36.webp │ │ ├── quantum_ic_clear_white_24.webp │ │ ├── quantum_ic_closed_caption_grey600_36.webp │ │ ├── quantum_ic_closed_caption_white_36.webp │ │ ├── quantum_ic_forward_10_white_24.webp │ │ ├── quantum_ic_forward_30_grey600_36.webp │ │ ├── quantum_ic_forward_30_white_24.webp │ │ ├── quantum_ic_forward_30_white_36.webp │ │ ├── quantum_ic_keyboard_arrow_down_white_36.webp │ │ ├── quantum_ic_pause_circle_filled_grey600_36.webp │ │ ├── quantum_ic_pause_circle_filled_white_36.webp │ │ ├── quantum_ic_pause_grey600_36.webp │ │ ├── quantum_ic_pause_grey600_48.webp │ │ ├── quantum_ic_pause_white_24.webp │ │ ├── quantum_ic_play_arrow_grey600_36.webp │ │ ├── quantum_ic_play_arrow_grey600_48.webp │ │ ├── quantum_ic_play_arrow_white_24.webp │ │ ├── quantum_ic_play_circle_filled_grey600_36.webp │ │ ├── quantum_ic_play_circle_filled_white_36.webp │ │ ├── quantum_ic_refresh_white_24.webp │ │ ├── quantum_ic_replay_10_white_24.webp │ │ ├── quantum_ic_replay_30_grey600_36.webp │ │ ├── quantum_ic_replay_30_white_24.webp │ │ ├── quantum_ic_replay_30_white_36.webp │ │ ├── quantum_ic_replay_white_24.webp │ │ ├── quantum_ic_skip_next_grey600_36.webp │ │ ├── quantum_ic_skip_next_white_24.webp │ │ ├── quantum_ic_skip_next_white_36.webp │ │ ├── quantum_ic_skip_previous_grey600_36.webp │ │ ├── quantum_ic_skip_previous_white_24.webp │ │ ├── quantum_ic_skip_previous_white_36.webp │ │ ├── quantum_ic_stop_grey600_36.webp │ │ ├── quantum_ic_stop_grey600_48.webp │ │ ├── quantum_ic_stop_white_24.webp │ │ ├── quantum_ic_volume_off_grey600_36.webp │ │ ├── quantum_ic_volume_off_white_36.webp │ │ ├── quantum_ic_volume_up_grey600_36.webp │ │ ├── quantum_ic_volume_up_white_36.webp │ │ ├── ucrop_ic_angle.webp │ │ └── ucrop_ic_done.webp │ ├── drawable │ │ ├── app_update_dialog_close.webp │ │ ├── app_update_dialog_default.webp │ │ ├── close_game.webp │ │ ├── comm_icon_loading_blue.webp │ │ ├── emuready_logo.png │ │ ├── ic_fullscreen.webp │ │ ├── ic_launcher_mono.xml │ │ ├── ic_system_icon.webp │ │ ├── information_icon_back.webp │ │ ├── list_icon_les.webp │ │ ├── list_icon_more.webp │ │ ├── llanuncher_ic_notification_default.webp │ │ ├── llanuncher_ic_notification_selected.webp │ │ ├── media3_icon_circular_play.webp │ │ ├── transparent.webp │ │ ├── winemu_ic_circle_share_default.webp │ │ └── winemu_ic_circle_share_selected.webp │ ├── mipmap-anydpi-v33 │ │ └── ic_launcher.xml │ ├── mipmap-anydpi │ │ └── ic_launcher.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_bg.png │ │ ├── ic_launcher_fg.png │ │ ├── ic_pc_scut.webp │ │ └── ic_pc_scut_foreground.webp │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_bg.png │ │ ├── ic_launcher_fg.png │ │ ├── ic_pc_scut.webp │ │ └── ic_pc_scut_foreground.webp │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_bg.png │ │ ├── ic_launcher_fg.png │ │ ├── ic_pc_scut.webp │ │ └── ic_pc_scut_foreground.webp │ ├── mipmap-xxhdpi │ │ ├── comm_arrow_left_blank.webp │ │ ├── comm_arrow_right_black_ic.webp │ │ ├── comm_bell_ic_black.webp │ │ ├── comm_cancel_ic.webp │ │ ├── comm_comment_ic_gray.webp │ │ ├── comm_comment_ic_white.webp │ │ ├── comm_download_black_ic.webp │ │ ├── comm_download_black_ic_with_point.webp │ │ ├── comm_handheld_console_ic.webp │ │ ├── comm_home_library_categorize_ic.webp │ │ ├── comm_like_ic_checked.webp │ │ ├── comm_like_ic_gray_normal.webp │ │ ├── comm_pic_selector_ic_add.webp │ │ ├── comm_pic_selector_ic_del.webp │ │ ├── comm_placeholder_bg.webp │ │ ├── comm_share_ic_gray.webp │ │ ├── ic_cb_checked.webp │ │ ├── ic_cb_normal.webp │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_bg.png │ │ ├── ic_launcher_fg.png │ │ ├── ic_pc_scut.webp │ │ ├── ic_pc_scut_foreground.webp │ │ ├── ic_reply_add.webp │ │ ├── ic_reply_post.webp │ │ ├── llauncher_icon_battery_level_1.webp │ │ ├── llauncher_icon_battery_level_2.webp │ │ ├── llauncher_icon_battery_level_3.webp │ │ ├── llauncher_icon_battery_level_4.webp │ │ ├── llauncher_icon_battery_level_5.webp │ │ ├── pay_back_icon_xo_white.webp │ │ ├── pay_goods_icon_ali.webp │ │ ├── pay_goods_icon_popup_select.webp │ │ ├── pay_goods_icon_popup_unselect.webp │ │ ├── pay_goods_icon_select_green.webp │ │ ├── pay_goods_icon_wechat.webp │ │ ├── pay_goods_icon_zan.webp │ │ ├── pay_ic_back.webp │ │ ├── pay_popup_close_gry.webp │ │ ├── pay_wx.webp │ │ └── pay_zfb.webp │ └── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_bg.png │ │ ├── ic_launcher_fg.png │ │ ├── ic_pc_scut.webp │ │ └── ic_pc_scut_foreground.webp │ ├── smali_classes10 │ └── bin │ │ └── mt │ │ └── file │ │ └── content │ │ ├── MTDataFilesProvider.smali │ │ └── MTDataFilesWakeUpActivity.smali │ ├── smali_classes4 │ └── com │ │ └── xj │ │ ├── app │ │ └── SplashActivity$IntroVideoTimer.smali │ │ └── winemu │ │ └── PcEmuSetupDialog$1.smali │ └── smali_classes5 │ └── com │ └── xj │ ├── cloud │ └── ui │ │ └── setting │ │ └── CloudGameSettingDataHelper.smali │ └── landscape │ └── launcher │ └── ui │ └── gamedetail │ ├── GameDetailActivity$CopyLocalGameIdClickListener.smali │ └── GameVideoActivity$$ExternalSyntheticLambda0.smali └── revanced ├── .gitignore ├── README.md ├── apply-patches.sh ├── extensions └── extension │ └── src │ └── main │ └── kotlin │ └── app │ └── revanced │ └── extension │ └── gamehub │ └── .gitkeep ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ └── gradle-wrapper.properties ├── patches ├── build.gradle.kts └── src │ └── main │ └── kotlin │ └── app │ └── revanced │ └── patches │ └── gamehub │ ├── misc │ ├── GameHubLitePatch.kt │ └── RemoveTrackingResourcesPatch.kt │ ├── shared │ └── Fingerprints.kt │ └── telemetry │ ├── DisableAllTelemetryPatch.kt │ └── DisableTelemetryPatch.kt └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/README.md -------------------------------------------------------------------------------- /generate-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/generate-patches.sh -------------------------------------------------------------------------------- /patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patch.sh -------------------------------------------------------------------------------- /patches/binary_replacements/original/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/binary_replacements/original/AndroidManifest.xml -------------------------------------------------------------------------------- /patches/binary_replacements/res/raw/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/binary_replacements/res/raw/click.mp3 -------------------------------------------------------------------------------- /patches/binary_replacements/res/raw/ps_click_music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/binary_replacements/res/raw/ps_click_music.wav -------------------------------------------------------------------------------- /patches/binary_replacements/res/raw/scroll.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/binary_replacements/res/raw/scroll.wav -------------------------------------------------------------------------------- /patches/binary_replacements/res/raw/tab_switch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/binary_replacements/res/raw/tab_switch.wav -------------------------------------------------------------------------------- /patches/diffs/AndroidManifest.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/AndroidManifest.xml.patch -------------------------------------------------------------------------------- /patches/diffs/apktool.yml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/apktool.yml.patch -------------------------------------------------------------------------------- /patches/diffs/res/layout/activity_button_setting.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/layout/activity_button_setting.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/layout/comm_dialog_fragment.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/layout/comm_dialog_fragment.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/layout/comm_view_top_bar.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/layout/comm_view_top_bar.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/layout/dialog_hid_model_popup.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/layout/dialog_hid_model_popup.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/layout/pay_popup_hint.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/layout/pay_popup_hint.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/layout/popup_common.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/layout/popup_common.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/layout/popup_firmware_list.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/layout/popup_firmware_list.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/values-ja/strings.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/values-ja/strings.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/values/attrs.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/values/attrs.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/values/colors.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/values/colors.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/values/ids.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/values/ids.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/values/public.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/values/public.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/values/strings.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/values/strings.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/values/styles.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/values/styles.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/xml/locales_config.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/xml/locales_config.xml.patch -------------------------------------------------------------------------------- /patches/diffs/res/xml/network_security_config.xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/res/xml/network_security_config.xml.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/e.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/e.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/f.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/f.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/g.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/g.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/i.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/i.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/j.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/j.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/k.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/k.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/l.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/l.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/n.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/n.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/o.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/o.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/p.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/p.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ag/q.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ag/q.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/aw/k.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/aw/k.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes2/cn/jiguang/ax/m.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes2/cn/jiguang/ax/m.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes4/com/uc/crashsdk/b.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes4/com/uc/crashsdk/b.smali.patch -------------------------------------------------------------------------------- /patches/diffs/smali_classes4/com/xj/app/App.smali.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/diffs/smali_classes4/com/xj/app/App.smali.patch -------------------------------------------------------------------------------- /patches/files_to_add.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/files_to_add.txt -------------------------------------------------------------------------------- /patches/files_to_delete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/files_to_delete.txt -------------------------------------------------------------------------------- /patches/files_to_patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/files_to_patch.txt -------------------------------------------------------------------------------- /patches/new_files/original/META-INF/GAMEHUB.RSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/original/META-INF/GAMEHUB.RSA -------------------------------------------------------------------------------- /patches/new_files/original/META-INF/GAMEHUB.SF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/original/META-INF/GAMEHUB.SF -------------------------------------------------------------------------------- /patches/new_files/original/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/original/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /patches/new_files/res/drawable-en-xhdpi/adjustment.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-en-xhdpi/adjustment.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_ic_audiotrack.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_ic_audiotrack.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_ic_check.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_ic_check.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_ic_forward.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_ic_forward.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_ic_rewind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_ic_rewind.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_ic_settings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_ic_settings.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_ic_skip_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_ic_skip_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_ic_speed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_ic_speed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_icon_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_icon_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_icon_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_icon_pause.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_icon_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_icon_play.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_icon_previous.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_icon_previous.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_icon_rewind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_icon_rewind.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_icon_stop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_icon_stop.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/exo_icon_vr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/exo_icon_vr.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_call_answer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_call_answer.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_call_decline.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_call_decline.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_eye.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_eye.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_hdr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_hdr.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_keyboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_keyboard.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_limited_time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_limited_time.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_mr_button_grey.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_mr_button_grey.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_timing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_timing.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_vol_mute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_vol_mute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ic_vol_unmute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ic_vol_unmute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/jpush_close.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/jpush_close.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_album.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_album.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_block.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_block.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_feed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_feed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_minus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_minus.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_pause.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_play.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_plus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_plus.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_radio.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_radio.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_share.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_share.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_stop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_stop.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/media3_icon_sync.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/media3_icon_sync.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ucrop_ic_angle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ucrop_ic_angle.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-hdpi/ucrop_ic_done.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-hdpi/ucrop_ic_done.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_ic_audiotrack.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_ic_audiotrack.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_ic_check.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_ic_check.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_ic_forward.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_ic_forward.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_ic_rewind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_ic_rewind.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_ic_settings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_ic_settings.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_ic_skip_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_ic_skip_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_ic_speed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_ic_speed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_icon_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_icon_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_icon_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_icon_pause.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_icon_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_icon_play.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_icon_previous.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_icon_previous.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_icon_rewind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_icon_rewind.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_icon_stop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_icon_stop.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/exo_icon_vr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/exo_icon_vr.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/ic_call_answer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/ic_call_answer.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/ic_call_decline.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/ic_call_decline.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/ic_limited_time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/ic_limited_time.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/ic_timing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/ic_timing.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/ic_vol_mute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/ic_vol_mute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/ic_vol_unmute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/ic_vol_unmute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/jpush_close.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/jpush_close.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_album.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_album.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_block.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_block.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_feed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_feed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_minus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_minus.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_pause.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_play.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_plus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_plus.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_radio.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_radio.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_share.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_share.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_stop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_stop.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/media3_icon_sync.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/media3_icon_sync.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/ucrop_ic_angle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/ucrop_ic_angle.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-ldpi/ucrop_ic_done.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-ldpi/ucrop_ic_done.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_ic_audiotrack.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_ic_audiotrack.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_ic_check.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_ic_check.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_ic_forward.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_ic_forward.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_ic_rewind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_ic_rewind.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_ic_settings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_ic_settings.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_ic_skip_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_ic_skip_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_ic_speed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_ic_speed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_icon_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_icon_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_icon_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_icon_pause.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_icon_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_icon_play.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_icon_previous.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_icon_previous.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_icon_rewind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_icon_rewind.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_icon_stop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_icon_stop.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/exo_icon_vr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/exo_icon_vr.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/ic_call_answer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/ic_call_answer.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/ic_call_decline.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/ic_call_decline.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/ic_limited_time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/ic_limited_time.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/ic_mr_button_grey.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/ic_mr_button_grey.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/ic_timing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/ic_timing.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/ic_vol_mute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/ic_vol_mute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/ic_vol_unmute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/ic_vol_unmute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/jpush_close.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/jpush_close.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/media3_icon_album.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/media3_icon_album.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/media3_icon_block.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/media3_icon_block.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/media3_icon_feed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/media3_icon_feed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/media3_icon_minus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/media3_icon_minus.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/media3_icon_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/media3_icon_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/ucrop_ic_angle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/ucrop_ic_angle.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-mdpi/ucrop_ic_done.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-mdpi/ucrop_ic_done.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/add_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/add_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/add_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/add_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/adjustment.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/adjustment.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/b_g5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/b_g5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/btn_ab.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/btn_ab.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/btn_btn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/btn_btn.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/btn_delete.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/btn_delete.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/btn_f.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/btn_f.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/btn_l.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/btn_l.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/btn_r.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/btn_r.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/btn_vbg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/btn_vbg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/card_icon_del.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/card_icon_del.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/card_icon_draw.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/card_icon_draw.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/case_icon_add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/case_icon_add.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/down_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/down_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/down_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/down_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/exo_ic_check.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/exo_ic_check.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/exo_ic_forward.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/exo_ic_forward.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/exo_ic_rewind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/exo_ic_rewind.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/exo_ic_speed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/exo_ic_speed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/exo_icon_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/exo_icon_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/exo_icon_pause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/exo_icon_pause.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/exo_icon_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/exo_icon_play.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/exo_icon_stop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/exo_icon_stop.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/exo_icon_vr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/exo_icon_vr.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/gb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/gb.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_call_answer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_call_answer.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_dislike.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_dislike.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_like.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_like.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_spinner1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_spinner1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_spinner2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_spinner2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_spinner3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_spinner3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_spinner4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_spinner4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_spinner5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_spinner5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_spinner6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_spinner6.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_spinner7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_spinner7.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_spinner8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_spinner8.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_timing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_timing.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_use_count.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_use_count.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_vol_mute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_vol_mute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ic_vol_unmute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ic_vol_unmute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/icon_btn_edit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/icon_btn_edit.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/item_9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/item_9.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/jpush_close.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/jpush_close.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/kbv_icon_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/kbv_icon_back.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/kbv_icon_share.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/kbv_icon_share.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/kbv_menu_seek.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/kbv_menu_seek.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ledo_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ledo_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ledo_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ledo_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/left_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/left_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/left_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/left_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/leto_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/leto_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/leto_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/leto_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/list_top_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/list_top_bg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/menu_bar_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/menu_bar_bg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/mobile_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/mobile_icon.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/msg_choose.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/msg_choose.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/naka.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/naka.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/no_app_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/no_app_image.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/no_data_img.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/no_data_img.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/no_notework.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/no_notework.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/pop_icon_close.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/pop_icon_close.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/pop_icon_help.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/pop_icon_help.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/pop_icon_text.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/pop_icon_text.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/pop_teach.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/pop_teach.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/qq.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/qq.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/rido_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/rido_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/rido_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/rido_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/right_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/right_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/right_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/right_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/rito_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/rito_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/rito_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/rito_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/share_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/share_icon.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/sp_select_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/sp_select_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/sub_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/sub_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/sub_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/sub_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/symble_op.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/symble_op.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/tab_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/tab_bg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/top_icon_del.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/top_icon_del.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/top_nav_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/top_nav_back.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/top_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/top_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/top_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/top_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ucrop_ic_angle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ucrop_ic_angle.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/ucrop_ic_done.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/ucrop_ic_done.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/x1_rocker_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/x1_rocker_left.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/xiaz.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/xiaz.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/zan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/zan.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xhdpi/zan1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xhdpi/zan1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/a.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/a_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/a_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/add_mix.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/add_mix.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/add_x1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/add_x1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/add_x1_.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/add_x1_.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/adjustment.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/adjustment.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/aim_min.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/aim_min.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/avator_big.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/avator_big.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/b.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/b.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/b_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/b_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn10.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn11.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn12.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn13.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn14.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn15.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn16.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn6.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn7.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn8.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/bn9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/bn9.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btn_ls_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btn_ls_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btn_menu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btn_menu.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btn_menu_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btn_menu_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btn_minus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btn_minus.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btn_plus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btn_plus.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btn_rs_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btn_rs_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btn_ten.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btn_ten.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btn_windows.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btn_windows.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btn_windows_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btn_windows_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btne1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btne1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btne2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btne2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btne3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btne3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btne4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btne4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btne5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btne5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/btne6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/btne6.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/card_icon_del.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/card_icon_del.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/case_icon_add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/case_icon_add.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/check_nor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/check_nor.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/comm_drag_btn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/comm_drag_btn.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/comm_loading.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/comm_loading.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/common_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/common_back.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ct.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ct.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/cursor_arrow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/cursor_arrow.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/cursor_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/cursor_icon.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/down.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/down.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/down_l.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/down_l.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/down_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/down_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/down_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/down_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/down_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/down_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/down_r.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/down_r.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/exo_ic_check.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/exo_ic_check.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/exo_ic_rewind.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/exo_ic_rewind.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/exo_ic_speed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/exo_ic_speed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/exo_icon_next.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/exo_icon_next.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/exo_icon_play.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/exo_icon_play.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/exo_icon_stop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/exo_icon_stop.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/exo_icon_vr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/exo_icon_vr.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/fw_icon_gh.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/fw_icon_gh.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/game_ic_steam.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/game_ic_steam.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/gj.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/gj.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/gr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/gr.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/hc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/hc.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/hf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/hf.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_curve_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_curve_bg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_dislike.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_dislike.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_like.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_like.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_new_back2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_new_back2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_plus_gray.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_plus_gray.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_streaming.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_streaming.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_timing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_timing.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_use_count.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_use_count.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_vol_mute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_vol_mute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ic_vol_unmute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ic_vol_unmute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/icon_add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/icon_add.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/icon_remove.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/icon_remove.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/icon_settings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/icon_settings.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/icon_undo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/icon_undo.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/img_default.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/img_default.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/j1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/j1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/j11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/j11.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/j2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/j2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/j21.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/j21.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/j3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/j3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/j31.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/j31.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/j4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/j4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/j41.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/j41.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/jh.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/jh.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/jpush_close.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/jpush_close.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/js.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/js.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k0.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k6.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k7.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k8.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/k9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/k9.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ka.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ka.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kadd.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kadd.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kalt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kalt.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kapo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kapo.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kb.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kbackslash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kbackslash.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kbackspace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kbackspace.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kc.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kcapslock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kcapslock.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kcom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kcom.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kctrl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kctrl.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kd.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kd.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kdelete.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kdelete.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kdivide.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kdivide.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kdot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kdot.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kdown.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kdown.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ke.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ke.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kend.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kend.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kenter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kenter.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kequal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kequal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kesc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kesc.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf10.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf11.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf12.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf6.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf7.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf8.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kf9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kf9.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kgrave.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kgrave.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kh.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kh.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/khome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/khome.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/khome_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/khome_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ki.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ki.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kinsert.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kinsert.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kj.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kj.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kk.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kk.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kl.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/klbracket.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/klbracket.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kleft.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kleft.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kleftmouse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kleftmouse.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kleftmouse_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kleftmouse_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km1_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km1_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km2_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km2_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km3_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km3_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km4_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km4_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km5_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km5_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km6.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km6_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km6_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km7.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km7_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km7_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km8.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/km8_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/km8_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kmenu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kmenu.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kminus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kminus.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kmultiply.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kmultiply.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kmwheel.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kmwheel.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kn.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ko.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ko.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kp.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kpause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kpause.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kper.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kper.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kpgdn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kpgdn.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kpgup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kpgup.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kprint.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kprint.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kq.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kq.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kr.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/krbracket.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/krbracket.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kright.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kright.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/krightmouse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/krightmouse.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/krightmouse_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/krightmouse_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ks.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ks.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kscroll.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kscroll.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ksem.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ksem.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kshift.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kshift.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kslash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kslash.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kspace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kspace.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ksub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ksub.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kt.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ktab.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ktab.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kten.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kten.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ku.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ku.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kup.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kv.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kv.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kw.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kw.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kwin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kwin.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kx.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ky.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ky.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/kz.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/kz.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/l1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/l1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/l1_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/l1_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/l2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/l2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/l2_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/l2_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/l3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/l3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/l3_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/l3_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/lb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/lb.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/lb_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/lb_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ledo_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ledo_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ledo_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ledo_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/left.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/left_l.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/left_l.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/left_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/left_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/left_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/left_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/left_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/left_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/left_r.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/left_r.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/leto_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/leto_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/leto_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/leto_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/light_select.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/light_select.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/lock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/lock.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/lt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/lt.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/lt_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/lt_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/map_close_btn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/map_close_btn.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/map_key_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/map_key_bg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/map_switch_on.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/map_switch_on.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/mp_config_del.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/mp_config_del.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/msg_choose.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/msg_choose.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/naka.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/naka.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/order_sort.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/order_sort.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/pc_back_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/pc_back_icon.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/pc_details_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/pc_details_bg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/pc_ic_loading.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/pc_ic_loading.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/pc_ic_options.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/pc_ic_options.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/pc_keypad.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/pc_keypad.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/pc_mapping.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/pc_mapping.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/pg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/pg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_arr_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_arr_left.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_arr_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_arr_right.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_back.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_connecting.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_connecting.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_audio.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_audio.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_back.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_camera.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_camera.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_delete.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_delete.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_editor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_editor.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_loading.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_loading.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_no_data.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_no_data.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_normal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_ps4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_ps4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_ps5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_ps5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_ic_video.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_ic_video.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_round.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_round_sp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_round_sp.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_square.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_square.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_square_sp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_square_sp.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_triangle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_triangle.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_x.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ps_x_sp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ps_x_sp.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/qx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/qx.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/r1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/r1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/r1_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/r1_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/r2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/r2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/r2_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/r2_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/r3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/r3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/r3_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/r3_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/rb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/rb.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/resource_del.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/resource_del.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/rido_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/rido_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/rido_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/rido_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/right.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/right_l.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/right_l.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/right_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/right_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/right_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/right_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/right_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/right_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/right_r.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/right_r.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/rito_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/rito_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/rito_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/rito_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/rocker_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/rocker_left.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/rocker_left_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/rocker_left_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/rocker_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/rocker_right.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/rt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/rt.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/s1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/s1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/s2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/s2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sd.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sd.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/select.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/select.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/select_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/select_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/setting.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/setting.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/setting_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/setting_icon.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/shoubing_a_t.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/shoubing_a_t.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/shoubing_b_t.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/shoubing_b_t.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/shoubing_lb_t.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/shoubing_lb_t.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/shoubing_lt_t.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/shoubing_lt_t.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/shoubing_rb_t.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/shoubing_rb_t.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/shoubing_rt_t.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/shoubing_rt_t.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/shoubing_x_t.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/shoubing_x_t.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/shoubing_y_t.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/shoubing_y_t.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_a.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_add.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_add_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_add_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_b.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_b.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_bn13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_bn13.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_bn14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_bn14.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_bn15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_bn15.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_bn16.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_bn16.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_down.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_down.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k0.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k6.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k7.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k8.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_k9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_k9.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ka.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ka.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kadd.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kadd.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kalt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kalt.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kapo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kapo.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kb.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kbackslash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kbackslash.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kbackspace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kbackspace.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kc.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kcapslock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kcapslock.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kcom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kcom.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kctrl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kctrl.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kd.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kd.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kdelete.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kdelete.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kdivide.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kdivide.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kdot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kdot.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kdown.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kdown.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ke.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ke.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kend.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kend.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kenter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kenter.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kequal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kequal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kesc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kesc.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf10.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf11.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf12.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf5.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf6.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf7.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf8.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kf9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kf9.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kg1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kg1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kg2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kg2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kg3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kg3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kg4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kg4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kgrave.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kgrave.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kh.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kh.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_khome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_khome.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ki.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ki.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kinsert.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kinsert.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kj.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kj.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kk.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kk.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kl.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_klbracket.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_klbracket.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kleft.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kleft.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_km.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_km.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kmenu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kmenu.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kminus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kminus.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kmultiply.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kmultiply.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kn.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ko.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ko.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kp.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kpause.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kpause.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kper.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kper.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kpgdn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kpgdn.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kpgup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kpgup.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kprint.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kprint.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kq.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kq.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kr.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_krbracket.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_krbracket.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kright.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kright.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ks.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ks.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kscroll.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kscroll.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ksem.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ksem.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kshift.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kshift.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kslash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kslash.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kspace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kspace.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ksub.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ksub.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kt.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ktab.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ktab.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ku.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ku.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kup.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kv.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kv.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kw.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kw.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kwin.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kwin.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kx.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_ky.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_ky.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_kz.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_kz.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_lb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_lb.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_left.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_lt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_lt.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_mixbtnbg_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_mixbtnbg_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_right.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_select_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_select_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_start_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_start_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_up.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_up.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_x.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sp_y.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sp_y.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/start.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/start.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/start_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/start_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/steam_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/steam_icon.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/switch_off.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/switch_off.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/switch_on.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/switch_on.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sy.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/sz.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/sz.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/tab_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/tab_bg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/tab_icon_key.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/tab_icon_key.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/tab_icon_mine.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/tab_icon_mine.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/td.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/td.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/test_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/test_bg.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/tj.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/tj.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/top_nomal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/top_nomal.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/top_pressed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/top_pressed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/tt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/tt.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/ucrop_ic_done.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/ucrop_ic_done.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/unlock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/unlock.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/up.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/up.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/up_l.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/up_l.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/up_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/up_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/up_r.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/up_r.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/video_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/video_back.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/video_enlarge.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/video_enlarge.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/video_shrink.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/video_shrink.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/wine_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/wine_logo.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/x.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/x_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/x_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/xb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/xb.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/xja_back_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/xja_back_icon.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/xz_xz.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/xz_xz.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/y.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/y.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/y1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/y1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/y_m.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/y_m.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/z1_g1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/z1_g1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/z1_g2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/z1_g2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/z1_g3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/z1_g3.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/z1_g4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/z1_g4.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/zb1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/zb1.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxhdpi/zb2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxhdpi/zb2.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxxhdpi/exo_ic_check.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxxhdpi/exo_ic_check.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxxhdpi/exo_ic_speed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxxhdpi/exo_ic_speed.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxxhdpi/ic_timing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxxhdpi/ic_timing.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxxhdpi/ic_vol_mute.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxxhdpi/ic_vol_mute.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable-xxxhdpi/jpush_close.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable-xxxhdpi/jpush_close.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable/close_game.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable/close_game.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable/emuready_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable/emuready_logo.png -------------------------------------------------------------------------------- /patches/new_files/res/drawable/ic_fullscreen.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable/ic_fullscreen.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable/ic_launcher_mono.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable/ic_launcher_mono.xml -------------------------------------------------------------------------------- /patches/new_files/res/drawable/ic_system_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable/ic_system_icon.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable/list_icon_les.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable/list_icon_les.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable/list_icon_more.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable/list_icon_more.webp -------------------------------------------------------------------------------- /patches/new_files/res/drawable/transparent.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/drawable/transparent.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-anydpi-v33/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-anydpi-v33/ic_launcher.xml -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-hdpi/ic_launcher_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-hdpi/ic_launcher_bg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-hdpi/ic_launcher_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-hdpi/ic_launcher_fg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-hdpi/ic_pc_scut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-hdpi/ic_pc_scut.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-mdpi/ic_launcher_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-mdpi/ic_launcher_bg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-mdpi/ic_launcher_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-mdpi/ic_launcher_fg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-mdpi/ic_pc_scut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-mdpi/ic_pc_scut.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xhdpi/ic_launcher_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xhdpi/ic_launcher_bg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xhdpi/ic_launcher_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xhdpi/ic_launcher_fg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xhdpi/ic_pc_scut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xhdpi/ic_pc_scut.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/comm_cancel_ic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/comm_cancel_ic.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/ic_cb_checked.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/ic_cb_checked.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/ic_cb_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/ic_cb_normal.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/ic_launcher_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/ic_launcher_bg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/ic_launcher_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/ic_launcher_fg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/ic_pc_scut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/ic_pc_scut.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/ic_reply_add.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/ic_reply_add.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/ic_reply_post.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/ic_reply_post.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/pay_ic_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/pay_ic_back.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/pay_wx.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/pay_wx.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxhdpi/pay_zfb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxhdpi/pay_zfb.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxxhdpi/ic_launcher_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxxhdpi/ic_launcher_bg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxxhdpi/ic_launcher_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxxhdpi/ic_launcher_fg.png -------------------------------------------------------------------------------- /patches/new_files/res/mipmap-xxxhdpi/ic_pc_scut.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/patches/new_files/res/mipmap-xxxhdpi/ic_pc_scut.webp -------------------------------------------------------------------------------- /revanced/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/revanced/.gitignore -------------------------------------------------------------------------------- /revanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/revanced/README.md -------------------------------------------------------------------------------- /revanced/apply-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/revanced/apply-patches.sh -------------------------------------------------------------------------------- /revanced/extensions/extension/src/main/kotlin/app/revanced/extension/gamehub/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /revanced/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/revanced/gradle.properties -------------------------------------------------------------------------------- /revanced/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/revanced/gradle/libs.versions.toml -------------------------------------------------------------------------------- /revanced/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/revanced/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /revanced/patches/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/revanced/patches/build.gradle.kts -------------------------------------------------------------------------------- /revanced/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Producdevity/gamehub-lite/HEAD/revanced/settings.gradle.kts --------------------------------------------------------------------------------