├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── resources │ ├── banner.png │ ├── bmc-button.png │ └── features.png └── workflows │ ├── build_debug.yml │ ├── crowdin.yml │ ├── crowdin_download.yml │ └── fetch_contributors.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-android-optimize.txt ├── proguard-rules.pro ├── proguard.pro ├── schemas │ └── com.drdisagree.iconify.data.database.DynamicResourceDatabase │ │ └── 2.json └── src │ ├── foss │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── drdisagree │ │ └── iconify │ │ ├── SplashActivity.kt │ │ ├── services │ │ └── RootProviderProxy.kt │ │ ├── ui │ │ └── fragments │ │ │ └── xposed │ │ │ └── DepthWallpaper.kt │ │ └── xposed │ │ └── modules │ │ └── lockscreen │ │ └── depthwallpaper │ │ ├── DepthWallpaperA14.kt │ │ └── DepthWallpaperA15.kt │ ├── main │ ├── AndroidManifest.xml │ ├── aidl │ │ └── com │ │ │ └── drdisagree │ │ │ └── iconify │ │ │ ├── IExtractSubjectCallback.aidl │ │ │ └── IRootProviderProxy.aidl │ ├── assets │ │ ├── CompileOnDemand │ │ │ ├── android │ │ │ │ ├── PGB1 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ ├── PGB10 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ ├── PGB11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ ├── seekbar_track_material.xml │ │ │ │ │ │ └── seekbar_track_material_iconify.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ ├── seekbar_track_material.xml │ │ │ │ │ │ └── seekbar_track_material_iconify.xml │ │ │ │ ├── PGB2 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ ├── PGB3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── PGB4 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ ├── PGB5 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ ├── PGB6 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ ├── PGB7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── PGB8 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ ├── PGB9 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── progress_indeterminate_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ ├── SIS1 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS10 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS11 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS12 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS13 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS14 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS15 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS16 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS17 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS18 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS2 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS3 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS4 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS5 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS6 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS7 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS8 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SIS9 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── TSTFRM1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ ├── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM12 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ ├── toast_frame_material.xml │ │ │ │ │ │ └── toast_frame_material.xml~ │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── TSTFRM9 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── toast_frame.xml │ │ │ │ │ │ └── toast_frame_material.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ └── cheatsheet │ │ │ ├── com.android.settings │ │ │ │ ├── SIP1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_force_stop.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_open.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_force_stop.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_open.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_force_stop.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_open.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_force_stop.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_open.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_force_stop.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_open.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_force_stop.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_open.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_force_stop.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_open.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_force_stop.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_open.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ ├── SIP6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ia_settings_communal.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_filled.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_devices_other_filled.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_help_filled.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_about.xml │ │ │ │ │ │ ├── ic_homepage_accessibility.xml │ │ │ │ │ │ ├── ic_homepage_accounts.xml │ │ │ │ │ │ ├── ic_homepage_apps.xml │ │ │ │ │ │ ├── ic_homepage_battery.xml │ │ │ │ │ │ ├── ic_homepage_connected_device.xml │ │ │ │ │ │ ├── ic_homepage_crdroid.xml │ │ │ │ │ │ ├── ic_homepage_display.xml │ │ │ │ │ │ ├── ic_homepage_location.xml │ │ │ │ │ │ ├── ic_homepage_network.xml │ │ │ │ │ │ ├── ic_homepage_notification.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_homepage_security.xml │ │ │ │ │ │ ├── ic_homepage_sound.xml │ │ │ │ │ │ ├── ic_homepage_storage.xml │ │ │ │ │ │ ├── ic_homepage_system_dashboard.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_notifications_filled.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_about_device_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_filled.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_filled.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_cogs_filled.xml │ │ │ │ │ │ ├── ic_settings_crdroid.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_display_filled.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_filled.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_filled.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_passwords_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_filled.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_safety_center_filled.xml │ │ │ │ │ │ ├── ic_settings_security_filled.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_filled.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_filled.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_settings_wireless_filled.xml │ │ │ │ │ │ ├── ic_storage_filled.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_suggestion_dnd.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_volume_up_filled.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ ├── SWITCH1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ ├── settingslib_track_on_background.xml │ │ │ │ │ │ ├── switch_foggy_thumb_off.png │ │ │ │ │ │ └── switch_foggy_thumb_on.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ ├── settingslib_track_on_background.xml │ │ │ │ │ │ ├── switch_checkmark_thumb_off.png │ │ │ │ │ │ └── switch_checkmark_thumb_on.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-ldrtl │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ └── settingslib_switch_track.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ └── settingslib_switch_track.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── SWITCH3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-ldrtl │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ └── settingslib_switch_track.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ └── settingslib_switch_track.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_switch_thumb_power_off.xml │ │ │ │ │ │ ├── ic_switch_thumb_power_on.xml │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── SWITCH6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ ├── settingslib_track_on_background.xml │ │ │ │ │ │ ├── switch_emoji_thumb_off.png │ │ │ │ │ │ └── switch_emoji_thumb_on.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-ldrtl-v24 │ │ │ │ │ │ └── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ └── settingslib_switch_track.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── SWITCH9 │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ └── cheatsheet │ │ │ ├── com.android.systemui │ │ │ │ ├── SWITCH1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ ├── settingslib_track_on_background.xml │ │ │ │ │ │ ├── switch_foggy_thumb_off.png │ │ │ │ │ │ └── switch_foggy_thumb_on.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ ├── settingslib_track_on_background.xml │ │ │ │ │ │ ├── switch_checkmark_thumb_off.png │ │ │ │ │ │ └── switch_checkmark_thumb_on.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-ldrtl │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_selector.xml │ │ │ │ │ │ └── settingslib_track_selector.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_selector.xml │ │ │ │ │ │ └── settingslib_track_selector.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── SWITCH3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-ldrtl │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_selector.xml │ │ │ │ │ │ └── settingslib_track_selector.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_selector.xml │ │ │ │ │ │ └── settingslib_track_selector.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_switch_thumb_power_off.xml │ │ │ │ │ │ ├── ic_switch_thumb_power_on.xml │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── SWITCH6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ │ ├── settingslib_track_on_background.xml │ │ │ │ │ │ ├── switch_emoji_thumb_off.png │ │ │ │ │ │ └── switch_emoji_thumb_on.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── SWITCH8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-ldrtl-v24 │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ └── settingslib_thumb_selector.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ │ ├── settingslib_thumb_selector.xml │ │ │ │ │ │ └── settingslib_track_selector.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ └── SWITCH9 │ │ │ │ │ └── res │ │ │ │ │ ├── color │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ │ ├── drawable │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ ├── settingslib_switch_track.xml │ │ │ │ │ ├── settingslib_thumb_disabled.xml │ │ │ │ │ ├── settingslib_thumb_off.xml │ │ │ │ │ ├── settingslib_thumb_on.xml │ │ │ │ │ ├── settingslib_track_disabled_background.xml │ │ │ │ │ ├── settingslib_track_off_background.xml │ │ │ │ │ └── settingslib_track_on_background.xml │ │ │ │ │ ├── values-night │ │ │ │ │ └── config.xml │ │ │ │ │ └── values │ │ │ │ │ └── config.xml │ │ │ ├── com.google.android.apps.wellbeing │ │ │ │ ├── SIP1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ ├── SIP6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ └── cheatsheet │ │ │ └── com.google.android.gms │ │ │ │ ├── SIP1 │ │ │ │ └── res │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ ├── drawable-night │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ └── values │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP2 │ │ │ │ └── res │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ ├── drawable-night │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ └── values │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP3 │ │ │ │ └── res │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ ├── drawable-night │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ └── values │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP4 │ │ │ │ └── res │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ ├── drawable-night │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── icon_bg.xml │ │ │ │ │ └── values │ │ │ │ │ └── Iconify.xml │ │ │ │ ├── SIP5 │ │ │ │ └── res │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ ├── SIP6 │ │ │ │ └── res │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ └── cheatsheet │ │ ├── Fonts │ │ │ ├── SFUIText-Bold.otf │ │ │ ├── SFUITextCondensed-Bold.otf │ │ │ └── SanFranciscoText-Semibold.otf │ │ ├── Keystore │ │ │ ├── testkey.pk8 │ │ │ └── testkey.x509.pem │ │ ├── Misc │ │ │ ├── contributors.json │ │ │ └── translators.json │ │ ├── Overlays │ │ │ ├── android │ │ │ │ ├── AMAC │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── ripple_material_light.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── AMGC │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── ripple_material_light.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── CR1 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── Dynamic1 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── IPAS1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── perm_group_network.png │ │ │ │ │ │ └── perm_group_shortrange_network.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_ab_back_material.xml │ │ │ │ │ │ ├── ic_ab_back_material_dark.xml │ │ │ │ │ │ ├── ic_ab_back_material_light.xml │ │ │ │ │ │ ├── ic_ab_back_material_settings.xml │ │ │ │ │ │ ├── ic_accessibility_reduce_bright_colors_foreground.xml │ │ │ │ │ │ ├── ic_account_circle.xml │ │ │ │ │ │ ├── ic_action_open.xml │ │ │ │ │ │ ├── ic_app_volume.xml │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_audio_media.xml │ │ │ │ │ │ ├── ic_audio_media_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_vibrate.xml │ │ │ │ │ │ ├── ic_audio_vol.xml │ │ │ │ │ │ ├── ic_audio_vol_mute.xml │ │ │ │ │ │ ├── ic_battery.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_brightness_full.xml │ │ │ │ │ │ ├── ic_brightness_low.xml │ │ │ │ │ │ ├── ic_brightness_medium.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_camera_allowed.xml │ │ │ │ │ │ ├── ic_camera_blocked.xml │ │ │ │ │ │ ├── ic_chevron_end.xml │ │ │ │ │ │ ├── ic_chevron_start.xml │ │ │ │ │ │ ├── ic_clear.xml │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_collapse_bundle.xml │ │ │ │ │ │ ├── ic_collapse_notification.xml │ │ │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ │ │ ├── ic_doc_audio.xml │ │ │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ │ │ ├── ic_expand_bundle.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_expand_more_48dp.xml │ │ │ │ │ │ ├── ic_expand_notification.xml │ │ │ │ │ │ ├── ic_feedback.xml │ │ │ │ │ │ ├── ic_gaming_notif.xml │ │ │ │ │ │ ├── ic_go_search_api_material.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_link.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_lockdown.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_media_seamless.xml │ │ │ │ │ │ ├── ic_menu.xml │ │ │ │ │ │ ├── ic_menu_moreoverflow_material.xml │ │ │ │ │ │ ├── ic_mic.xml │ │ │ │ │ │ ├── ic_mic_allowed.xml │ │ │ │ │ │ ├── ic_mic_blocked.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notification_block.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml │ │ │ │ │ │ ├── ic_qs_heads_up.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_one_handed_mode.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_qs_usb_tether.xml │ │ │ │ │ │ ├── ic_refresh.xml │ │ │ │ │ │ ├── ic_reply_notification.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_schedule.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_sd_card_48dp.xml │ │ │ │ │ │ ├── ic_search_api_material.xml │ │ │ │ │ │ ├── ic_settings_24dp.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_sleep.xml │ │ │ │ │ │ ├── ic_slice_send.xml │ │ │ │ │ │ ├── ic_usb_48dp.xml │ │ │ │ │ │ ├── ic_voice_search_api_material.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_nearby_devices.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ ├── perm_group_visual.xml │ │ │ │ │ │ ├── stat_notify_call_mute.xml │ │ │ │ │ │ ├── stat_notify_missed_call.xml │ │ │ │ │ │ ├── stat_sys_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_usb.xml │ │ │ │ │ │ ├── stat_sys_speakerphone.xml │ │ │ │ │ │ ├── stat_sys_tether_wifi.xml │ │ │ │ │ │ └── status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── IPAS10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── emergency_icon.xml │ │ │ │ │ │ ├── ic_ab_back_material.xml │ │ │ │ │ │ ├── ic_account_circle.xml │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_audio_media.xml │ │ │ │ │ │ ├── ic_audio_media_mute.xml │ │ │ │ │ │ ├── ic_audio_notification_mute_new.xml │ │ │ │ │ │ ├── ic_audio_notification_new.xml │ │ │ │ │ │ ├── ic_audio_ring_notif.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_vibrate.xml │ │ │ │ │ │ ├── ic_camera_alt_24dp.xml │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_dnd.xml │ │ │ │ │ │ ├── ic_dnd_total_silence.xml │ │ │ │ │ │ ├── ic_doc_apk.xml │ │ │ │ │ │ ├── ic_doc_audio.xml │ │ │ │ │ │ ├── ic_doc_certificate.xml │ │ │ │ │ │ ├── ic_doc_codes.xml │ │ │ │ │ │ ├── ic_doc_compressed.xml │ │ │ │ │ │ ├── ic_doc_contact.xml │ │ │ │ │ │ ├── ic_doc_event.xml │ │ │ │ │ │ ├── ic_doc_excel.xml │ │ │ │ │ │ ├── ic_doc_generic.xml │ │ │ │ │ │ ├── ic_doc_image.xml │ │ │ │ │ │ ├── ic_doc_pdf.xml │ │ │ │ │ │ ├── ic_doc_powerpoint.xml │ │ │ │ │ │ ├── ic_doc_presentation.xml │ │ │ │ │ │ ├── ic_doc_spreadsheet.xml │ │ │ │ │ │ ├── ic_doc_text.xml │ │ │ │ │ │ ├── ic_doc_video.xml │ │ │ │ │ │ ├── ic_doc_word.xml │ │ │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ │ │ ├── ic_feedback.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock_airplane_mode.xml │ │ │ │ │ │ ├── ic_lock_airplane_mode_off.xml │ │ │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ │ │ ├── ic_lock_lockdown.xml │ │ │ │ │ │ ├── ic_lock_onthego.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lock_screenrecord.xml │ │ │ │ │ │ ├── ic_menu_add.xml │ │ │ │ │ │ ├── ic_menu_agenda.xml │ │ │ │ │ │ ├── ic_menu_always_landscape_portrait.xml │ │ │ │ │ │ ├── ic_menu_archive.xml │ │ │ │ │ │ ├── ic_menu_attachment.xml │ │ │ │ │ │ ├── ic_menu_block.xml │ │ │ │ │ │ ├── ic_menu_blocked_user.xml │ │ │ │ │ │ ├── ic_menu_call.xml │ │ │ │ │ │ ├── ic_menu_camera.xml │ │ │ │ │ │ ├── ic_menu_cc_am.xml │ │ │ │ │ │ ├── ic_menu_chat_dashboard.xml │ │ │ │ │ │ ├── ic_menu_clear_playlist.xml │ │ │ │ │ │ ├── ic_menu_compass.xml │ │ │ │ │ │ ├── ic_menu_compose.xml │ │ │ │ │ │ ├── ic_menu_crop.xml │ │ │ │ │ │ ├── ic_menu_end_conversation.xml │ │ │ │ │ │ ├── ic_menu_moreoverflow_material.xml │ │ │ │ │ │ ├── ic_menu_refresh.xml │ │ │ │ │ │ ├── ic_menu_search_material.xml │ │ │ │ │ │ ├── ic_mic_26dp.xml │ │ │ │ │ │ ├── ic_perm_device_info.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_popup_sync_1.xml │ │ │ │ │ │ ├── ic_popup_sync_2.xml │ │ │ │ │ │ ├── ic_popup_sync_3.xml │ │ │ │ │ │ ├── ic_popup_sync_4.xml │ │ │ │ │ │ ├── ic_popup_sync_5.xml │ │ │ │ │ │ ├── ic_popup_sync_6.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_alarm.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_location_battery_saving.xml │ │ │ │ │ │ ├── ic_qs_location_high_accuracy.xml │ │ │ │ │ │ ├── ic_qs_location_sensors_only.xml │ │ │ │ │ │ ├── ic_qs_nfc.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_refresh.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_schedule.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_search_api_material.xml │ │ │ │ │ │ ├── ic_signal_airplane.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_flashlight.xml │ │ │ │ │ │ ├── ic_volume_accessibility.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_bt.xml │ │ │ │ │ │ ├── ic_volume_media_bt_mute.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_notification.xml │ │ │ │ │ │ ├── ic_volume_notification_mute.xml │ │ │ │ │ │ ├── ic_volume_remote.xml │ │ │ │ │ │ ├── ic_volume_remote_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ ├── perm_group_visual.xml │ │ │ │ │ │ ├── stat_sys_location.xml │ │ │ │ │ │ ├── stat_sys_nfc.xml │ │ │ │ │ │ └── stat_sys_speakerphone.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── IPAS11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── controls_icon.xml │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_brightness_full.xml │ │ │ │ │ │ ├── ic_brightness_low.xml │ │ │ │ │ │ ├── ic_brightness_medium.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_qs_wallet.xml │ │ │ │ │ │ ├── ic_reduce_bright_colors.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_alt_24px.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_wallet_lockscreen.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_work_apps_off.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ ├── perm_group_visual.xml │ │ │ │ │ │ ├── progress_horizontal.xml │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ ├── seekbar_thumb_pressed_to_unpressed.xml │ │ │ │ │ │ ├── seekbar_thumb_unpressed_to_pressed.xml │ │ │ │ │ │ ├── seekbar_track_material.xml │ │ │ │ │ │ ├── stat_sys_location.xml │ │ │ │ │ │ ├── switch_thumb_material_anim.xml │ │ │ │ │ │ └── switch_track_material.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── IPAS12 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ │ │ ├── ic_file_copy.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ └── perm_group_visual.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── IPAS13 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ │ │ ├── ic_file_copy.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_rules.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_work_apps_off.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ └── perm_group_visual.xml │ │ │ │ ├── IPAS14 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ │ │ ├── ic_file_copy.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_rules.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_work_apps_off.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ └── perm_group_visual.xml │ │ │ │ ├── IPAS2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── perm_group_network.png │ │ │ │ │ │ └── perm_group_shortrange_network.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_ab_back_material.xml │ │ │ │ │ │ ├── ic_ab_back_material_dark.xml │ │ │ │ │ │ ├── ic_ab_back_material_light.xml │ │ │ │ │ │ ├── ic_ab_back_material_settings.xml │ │ │ │ │ │ ├── ic_accessibility_reduce_bright_colors_foreground.xml │ │ │ │ │ │ ├── ic_account_circle.xml │ │ │ │ │ │ ├── ic_action_open.xml │ │ │ │ │ │ ├── ic_app_volume.xml │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_audio_media.xml │ │ │ │ │ │ ├── ic_audio_media_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_vibrate.xml │ │ │ │ │ │ ├── ic_audio_vol.xml │ │ │ │ │ │ ├── ic_audio_vol_mute.xml │ │ │ │ │ │ ├── ic_battery.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_brightness_full.xml │ │ │ │ │ │ ├── ic_brightness_low.xml │ │ │ │ │ │ ├── ic_brightness_medium.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_camera_allowed.xml │ │ │ │ │ │ ├── ic_camera_blocked.xml │ │ │ │ │ │ ├── ic_chevron_end.xml │ │ │ │ │ │ ├── ic_chevron_start.xml │ │ │ │ │ │ ├── ic_clear.xml │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_collapse_bundle.xml │ │ │ │ │ │ ├── ic_collapse_notification.xml │ │ │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ │ │ ├── ic_doc_audio.xml │ │ │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ │ │ ├── ic_expand_bundle.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_expand_more_48dp.xml │ │ │ │ │ │ ├── ic_expand_notification.xml │ │ │ │ │ │ ├── ic_feedback.xml │ │ │ │ │ │ ├── ic_gaming_notif.xml │ │ │ │ │ │ ├── ic_go_search_api_material.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_link.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_lockdown.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_media_seamless.xml │ │ │ │ │ │ ├── ic_menu.xml │ │ │ │ │ │ ├── ic_menu_moreoverflow_material.xml │ │ │ │ │ │ ├── ic_mic.xml │ │ │ │ │ │ ├── ic_mic_allowed.xml │ │ │ │ │ │ ├── ic_mic_blocked.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notification_block.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml │ │ │ │ │ │ ├── ic_qs_heads_up.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_one_handed_mode.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_qs_usb_tether.xml │ │ │ │ │ │ ├── ic_refresh.xml │ │ │ │ │ │ ├── ic_reply_notification.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_schedule.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_sd_card_48dp.xml │ │ │ │ │ │ ├── ic_search_api_material.xml │ │ │ │ │ │ ├── ic_settings_24dp.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_sleep.xml │ │ │ │ │ │ ├── ic_slice_send.xml │ │ │ │ │ │ ├── ic_usb_48dp.xml │ │ │ │ │ │ ├── ic_voice_search_api_material.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_nearby_devices.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ ├── perm_group_visual.xml │ │ │ │ │ │ ├── stat_notify_call_mute.xml │ │ │ │ │ │ ├── stat_notify_missed_call.xml │ │ │ │ │ │ ├── stat_sys_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_usb.xml │ │ │ │ │ │ ├── stat_sys_speakerphone.xml │ │ │ │ │ │ ├── stat_sys_tether_wifi.xml │ │ │ │ │ │ └── status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── IPAS3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── perm_group_network.png │ │ │ │ │ │ └── perm_group_shortrange_network.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_ab_back_material.xml │ │ │ │ │ │ ├── ic_ab_back_material_dark.xml │ │ │ │ │ │ ├── ic_ab_back_material_light.xml │ │ │ │ │ │ ├── ic_ab_back_material_settings.xml │ │ │ │ │ │ ├── ic_accessibility_reduce_bright_colors_foreground.xml │ │ │ │ │ │ ├── ic_account_circle.xml │ │ │ │ │ │ ├── ic_action_open.xml │ │ │ │ │ │ ├── ic_app_volume.xml │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_audio_media.xml │ │ │ │ │ │ ├── ic_audio_media_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_vibrate.xml │ │ │ │ │ │ ├── ic_audio_vol.xml │ │ │ │ │ │ ├── ic_audio_vol_mute.xml │ │ │ │ │ │ ├── ic_battery.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_brightness_full.xml │ │ │ │ │ │ ├── ic_brightness_low.xml │ │ │ │ │ │ ├── ic_brightness_medium.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_camera_allowed.xml │ │ │ │ │ │ ├── ic_camera_blocked.xml │ │ │ │ │ │ ├── ic_chevron_end.xml │ │ │ │ │ │ ├── ic_chevron_start.xml │ │ │ │ │ │ ├── ic_clear.xml │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_collapse_bundle.xml │ │ │ │ │ │ ├── ic_collapse_notification.xml │ │ │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ │ │ ├── ic_doc_audio.xml │ │ │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ │ │ ├── ic_expand_bundle.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_expand_more_48dp.xml │ │ │ │ │ │ ├── ic_expand_notification.xml │ │ │ │ │ │ ├── ic_feedback.xml │ │ │ │ │ │ ├── ic_gaming_notif.xml │ │ │ │ │ │ ├── ic_go_search_api_material.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_link.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_lockdown.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_media_seamless.xml │ │ │ │ │ │ ├── ic_menu.xml │ │ │ │ │ │ ├── ic_menu_moreoverflow_material.xml │ │ │ │ │ │ ├── ic_mic.xml │ │ │ │ │ │ ├── ic_mic_allowed.xml │ │ │ │ │ │ ├── ic_mic_blocked.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notification_block.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml │ │ │ │ │ │ ├── ic_qs_heads_up.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_one_handed_mode.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_qs_usb_tether.xml │ │ │ │ │ │ ├── ic_refresh.xml │ │ │ │ │ │ ├── ic_reply_notification.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_schedule.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_sd_card_48dp.xml │ │ │ │ │ │ ├── ic_search_api_material.xml │ │ │ │ │ │ ├── ic_settings_24dp.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_sleep.xml │ │ │ │ │ │ ├── ic_slice_send.xml │ │ │ │ │ │ ├── ic_usb_48dp.xml │ │ │ │ │ │ ├── ic_voice_search_api_material.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_nearby_devices.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ ├── perm_group_visual.xml │ │ │ │ │ │ ├── stat_notify_call_mute.xml │ │ │ │ │ │ ├── stat_notify_missed_call.xml │ │ │ │ │ │ ├── stat_sys_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_usb.xml │ │ │ │ │ │ ├── stat_sys_speakerphone.xml │ │ │ │ │ │ ├── stat_sys_tether_wifi.xml │ │ │ │ │ │ └── status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── IPAS4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── perm_group_network.png │ │ │ │ │ │ └── perm_group_shortrange_network.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_ab_back_material.xml │ │ │ │ │ │ ├── ic_ab_back_material_dark.xml │ │ │ │ │ │ ├── ic_ab_back_material_light.xml │ │ │ │ │ │ ├── ic_ab_back_material_settings.xml │ │ │ │ │ │ ├── ic_accessibility_reduce_bright_colors_foreground.xml │ │ │ │ │ │ ├── ic_account_circle.xml │ │ │ │ │ │ ├── ic_action_open.xml │ │ │ │ │ │ ├── ic_app_volume.xml │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_audio_media.xml │ │ │ │ │ │ ├── ic_audio_media_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_vibrate.xml │ │ │ │ │ │ ├── ic_audio_vol.xml │ │ │ │ │ │ ├── ic_audio_vol_mute.xml │ │ │ │ │ │ ├── ic_battery.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_brightness_full.xml │ │ │ │ │ │ ├── ic_brightness_low.xml │ │ │ │ │ │ ├── ic_brightness_medium.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_camera_allowed.xml │ │ │ │ │ │ ├── ic_camera_blocked.xml │ │ │ │ │ │ ├── ic_chevron_end.xml │ │ │ │ │ │ ├── ic_chevron_start.xml │ │ │ │ │ │ ├── ic_clear.xml │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_collapse_bundle.xml │ │ │ │ │ │ ├── ic_collapse_notification.xml │ │ │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ │ │ ├── ic_doc_audio.xml │ │ │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ │ │ ├── ic_expand_bundle.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_expand_more_48dp.xml │ │ │ │ │ │ ├── ic_expand_notification.xml │ │ │ │ │ │ ├── ic_feedback.xml │ │ │ │ │ │ ├── ic_gaming_notif.xml │ │ │ │ │ │ ├── ic_go_search_api_material.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_link.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_lockdown.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_media_seamless.xml │ │ │ │ │ │ ├── ic_menu.xml │ │ │ │ │ │ ├── ic_menu_moreoverflow_material.xml │ │ │ │ │ │ ├── ic_mic.xml │ │ │ │ │ │ ├── ic_mic_allowed.xml │ │ │ │ │ │ ├── ic_mic_blocked.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notification_block.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml │ │ │ │ │ │ ├── ic_qs_heads_up.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_one_handed_mode.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_qs_usb_tether.xml │ │ │ │ │ │ ├── ic_refresh.xml │ │ │ │ │ │ ├── ic_reply_notification.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_schedule.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_sd_card_48dp.xml │ │ │ │ │ │ ├── ic_search_api_material.xml │ │ │ │ │ │ ├── ic_settings_24dp.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_sleep.xml │ │ │ │ │ │ ├── ic_slice_send.xml │ │ │ │ │ │ ├── ic_usb_48dp.xml │ │ │ │ │ │ ├── ic_voice_search_api_material.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_nearby_devices.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ ├── perm_group_visual.xml │ │ │ │ │ │ ├── stat_notify_call_mute.xml │ │ │ │ │ │ ├── stat_notify_missed_call.xml │ │ │ │ │ │ ├── stat_sys_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_usb.xml │ │ │ │ │ │ ├── stat_sys_speakerphone.xml │ │ │ │ │ │ ├── stat_sys_tether_wifi.xml │ │ │ │ │ │ └── status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── IPAS5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_0.xml │ │ │ │ │ │ └── ic_signal_wifi_transient_animation_1.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── switch_track_material.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_ab_back_material.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ └── switch_track_material.xml │ │ │ │ ├── IPAS6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_0.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_1.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_2.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_3.xml │ │ │ │ │ │ └── ic_signal_wifi_transient_animation_4.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ │ │ ├── ic_file_copy.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ └── perm_group_visual.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── IPAS7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ │ │ ├── ic_file_copy.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ └── perm_group_visual.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── IPAS8 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ │ │ ├── ic_file_copy.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_rules.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_work_apps_off.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ └── perm_group_visual.xml │ │ │ │ ├── IPAS9 │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_0.xml │ │ │ │ │ │ └── ic_signal_wifi_transient_animation_1.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── switch_track_material.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_ab_back_material.xml │ │ │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml │ │ │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ │ │ ├── ic_expand_more.xml │ │ │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ │ │ ├── ic_file_copy.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_zen_priority_modes.xml │ │ │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ │ │ ├── perm_group_aural.xml │ │ │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ │ │ ├── perm_group_camera.xml │ │ │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ │ │ ├── perm_group_location.xml │ │ │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ │ │ ├── perm_group_sms.xml │ │ │ │ │ │ ├── perm_group_storage.xml │ │ │ │ │ │ ├── perm_group_visual.xml │ │ │ │ │ │ └── switch_track_material.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── IXCC │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── PGB │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── progress_horizontal_material.xml │ │ │ │ │ │ ├── seekbar_thumb_material_anim.xml │ │ │ │ │ │ └── seekbar_track_material.xml │ │ │ │ ├── QSDT │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── surface_header_dark_sysui.xml │ │ │ │ │ │ └── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ ├── QSLT │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── ic_arrow_back.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── attrs.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ ├── QSNPT │ │ │ │ │ └── res │ │ │ │ │ │ └── color │ │ │ │ │ │ └── text_color_on_accent_device_default.xml │ │ │ │ ├── QSPBA │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── surface_header_dark_sysui.xml │ │ │ │ │ │ └── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSPBD │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── surface_header_dark_sysui.xml │ │ │ │ │ │ └── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSST │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ ├── QST5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── color-night │ │ │ │ │ │ ├── accent_secondary_variant_dark_device_default_systemui.xml │ │ │ │ │ │ ├── accent_secondary_variant_light_device_default_systemui.xml │ │ │ │ │ │ ├── primary_text_light.xml │ │ │ │ │ │ ├── secondary_text_light.xml │ │ │ │ │ │ ├── text_color_on_accent_device_default.xml │ │ │ │ │ │ ├── text_color_primary_device_default_light.xml │ │ │ │ │ │ └── text_color_secondary_device_default_light.xml │ │ │ │ │ │ └── color │ │ │ │ │ │ ├── accent_secondary_variant_dark_device_default_systemui.xml │ │ │ │ │ │ ├── accent_secondary_variant_light_device_default_systemui.xml │ │ │ │ │ │ ├── primary_text_light.xml │ │ │ │ │ │ ├── secondary_text_light.xml │ │ │ │ │ │ ├── text_color_on_accent_device_default.xml │ │ │ │ │ │ ├── text_color_primary_device_default_dark.xml │ │ │ │ │ │ └── text_color_secondary_device_default_dark.xml │ │ │ │ ├── SGIC1 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC10 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC11 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC12 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_1x_mobiledata.xml │ │ │ │ │ │ ├── ic_3g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uc_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uw_mobiledata.xml │ │ │ │ │ │ ├── ic_e_mobiledata.xml │ │ │ │ │ │ ├── ic_g_mobiledata.xml │ │ │ │ │ │ ├── ic_h_mobiledata.xml │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC13 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC14 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_1x_mobiledata.xml │ │ │ │ │ │ ├── ic_3g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uc_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uw_mobiledata.xml │ │ │ │ │ │ ├── ic_e_mobiledata.xml │ │ │ │ │ │ ├── ic_g_mobiledata.xml │ │ │ │ │ │ ├── ic_h_mobiledata.xml │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC15 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_1x_mobiledata.xml │ │ │ │ │ │ ├── ic_3g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uc_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uw_mobiledata.xml │ │ │ │ │ │ ├── ic_e_mobiledata.xml │ │ │ │ │ │ ├── ic_g_mobiledata.xml │ │ │ │ │ │ ├── ic_h_mobiledata.xml │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC16 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC17 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC18 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC19 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC2 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_1x_mobiledata.xml │ │ │ │ │ │ ├── ic_3g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uc_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uw_mobiledata.xml │ │ │ │ │ │ ├── ic_e_mobiledata.xml │ │ │ │ │ │ ├── ic_g_mobiledata.xml │ │ │ │ │ │ ├── ic_h_mobiledata.xml │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC20 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ │ │ └── ic_signal_location.xml │ │ │ │ ├── SGIC21 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC22 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC23 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_1x_mobiledata.xml │ │ │ │ │ │ ├── ic_3g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uc_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uw_mobiledata.xml │ │ │ │ │ │ ├── ic_e_mobiledata.xml │ │ │ │ │ │ ├── ic_g_mobiledata.xml │ │ │ │ │ │ ├── ic_h_mobiledata.xml │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC24 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC25 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC26 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC27 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC28 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC29 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC3 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC30 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC31 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC32 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC33 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC34 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC35 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC36 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC4 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC5 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC6 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC7 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC8 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SGIC9 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ │ │ └── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── SIS │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── config.xml │ │ │ │ ├── TSTFRM │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ └── toast_frame.xml │ │ │ │ ├── WIFI1 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI10 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI11 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI12 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI13 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI14 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI15 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI16 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI2 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI3 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI4 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI5 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI6 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI7 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI8 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ ├── WIFI9 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_4_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_5_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_6_signal_4.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ └── ic_wifi_signal_4.xml │ │ │ │ └── cheatsheet │ │ │ ├── app.revanced.android.apps.youtube.music │ │ │ │ ├── MPIP101 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_banner_app_close.xml │ │ │ │ │ │ ├── exo_icon_play.xml │ │ │ │ │ │ ├── ic_dialog_close_dark.xml │ │ │ │ │ │ ├── ic_ffr_triangle.xml │ │ │ │ │ │ ├── ic_media_play_dark.xml │ │ │ │ │ │ ├── ic_preview_play_btn.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_close_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml │ │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml │ │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml │ │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml │ │ │ │ │ │ └── yt_outline_x_mark_white_24.xml │ │ │ │ ├── MPIP102 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_banner_app_close.xml │ │ │ │ │ │ ├── exo_icon_play.xml │ │ │ │ │ │ ├── ic_dialog_close_dark.xml │ │ │ │ │ │ ├── ic_ffr_triangle.xml │ │ │ │ │ │ ├── ic_media_play_dark.xml │ │ │ │ │ │ ├── ic_preview_play_btn.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_close_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml │ │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml │ │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml │ │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml │ │ │ │ │ │ └── yt_outline_x_mark_white_24.xml │ │ │ │ └── MPIP103 │ │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── audio_banner_app_close.xml │ │ │ │ │ ├── exo_icon_play.xml │ │ │ │ │ ├── ic_dialog_close_dark.xml │ │ │ │ │ ├── ic_ffr_triangle.xml │ │ │ │ │ ├── ic_media_play_dark.xml │ │ │ │ │ ├── ic_preview_play_btn.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml │ │ │ │ │ ├── quantum_ic_close_white_24.xml │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml │ │ │ │ │ └── yt_outline_x_mark_white_24.xml │ │ │ ├── app.revanced.android.youtube │ │ │ │ ├── MPIP91 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_google_chip_close.xml │ │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml │ │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml │ │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml │ │ │ │ │ │ ├── ic_notifications_pause_disabled.xml │ │ │ │ │ │ ├── player_next.xml │ │ │ │ │ │ ├── player_pause.xml │ │ │ │ │ │ ├── player_play.xml │ │ │ │ │ │ ├── player_prev.xml │ │ │ │ │ │ ├── quantum_ic_clear_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_48.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml │ │ │ │ ├── MPIP92 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_google_chip_close.xml │ │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml │ │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml │ │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml │ │ │ │ │ │ ├── ic_notifications_pause_disabled.xml │ │ │ │ │ │ ├── player_next.xml │ │ │ │ │ │ ├── player_pause.xml │ │ │ │ │ │ ├── player_play.xml │ │ │ │ │ │ ├── player_prev.xml │ │ │ │ │ │ ├── quantum_ic_clear_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_48.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml │ │ │ │ └── MPIP93 │ │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_google_chip_close.xml │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml │ │ │ │ │ ├── ic_notifications_pause_disabled.xml │ │ │ │ │ ├── ic_notifications_play_arrow_disabled.xml │ │ │ │ │ ├── player_next.xml │ │ │ │ │ ├── player_pause.xml │ │ │ │ │ ├── player_play.xml │ │ │ │ │ ├── player_prev.xml │ │ │ │ │ ├── quantum_ic_clear_white_24.xml │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ ├── quantum_ic_pause_white_48.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml │ │ │ ├── code.name.monkey.retromusic │ │ │ │ ├── MPIP21 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi-v24 │ │ │ │ │ │ └── ic_notification.xml │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_favorite.xml │ │ │ │ │ │ ├── ic_favorite_border.xml │ │ │ │ │ │ ├── ic_pause_white_48dp.xml │ │ │ │ │ │ ├── ic_play_arrow_white_48dp.xml │ │ │ │ │ │ ├── ic_skip_next_round_white_32dp.xml │ │ │ │ │ │ └── ic_skip_previous_round_white_32dp.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ └── ic_notification.xml │ │ │ │ ├── MPIP22 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi-v24 │ │ │ │ │ │ └── ic_notification.xml │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_favorite.xml │ │ │ │ │ │ ├── ic_favorite_border.xml │ │ │ │ │ │ ├── ic_pause_white_48dp.xml │ │ │ │ │ │ ├── ic_play_arrow_white_48dp.xml │ │ │ │ │ │ ├── ic_skip_next_round_white_32dp.xml │ │ │ │ │ │ └── ic_skip_previous_round_white_32dp.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ └── ic_notification.xml │ │ │ │ └── MPIP23 │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-anydpi-v24 │ │ │ │ │ └── ic_notification.xml │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ ├── ic_favorite.xml │ │ │ │ │ ├── ic_favorite_border.xml │ │ │ │ │ ├── ic_pause_white_48dp.xml │ │ │ │ │ ├── ic_play_arrow_white_48dp.xml │ │ │ │ │ ├── ic_skip_next_round_white_32dp.xml │ │ │ │ │ └── ic_skip_previous_round_white_32dp.xml │ │ │ │ │ └── drawable │ │ │ │ │ └── ic_notification.xml │ │ │ ├── com.android.launcher3 │ │ │ │ └── Dynamic4 │ │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── iconify.xml │ │ │ ├── com.android.settings │ │ │ │ ├── Dynamic5 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── SIP1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ ├── audio_settings_icon.xml │ │ │ │ │ │ ├── darwin_settings_icon.xml │ │ │ │ │ │ ├── ic_apps.xml │ │ │ │ │ │ ├── ic_apps_home.xml │ │ │ │ │ │ ├── ic_cherish.xml │ │ │ │ │ │ ├── ic_custom_notifications.xml │ │ │ │ │ │ ├── ic_custom_wallpaper.xml │ │ │ │ │ │ ├── ic_devices_home.xml │ │ │ │ │ │ ├── ic_devices_other.xml │ │ │ │ │ │ ├── ic_elixir.xml │ │ │ │ │ │ ├── ic_help.xml │ │ │ │ │ │ ├── ic_home_sound.xml │ │ │ │ │ │ ├── ic_homepage_personalizations.xml │ │ │ │ │ │ ├── ic_krypton.xml │ │ │ │ │ │ ├── ic_monet.xml │ │ │ │ │ │ ├── ic_notifications.xml │ │ │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ │ │ ├── ic_oplus_extras.xml │ │ │ │ │ │ ├── ic_phone_info.xml │ │ │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ │ │ ├── ic_powerhub.xml │ │ │ │ │ │ ├── ic_settings_about.xml │ │ │ │ │ │ ├── ic_settings_about_device.xml │ │ │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ │ │ ├── ic_settings_alpha.xml │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ │ │ ├── ic_settings_bananagear.xml │ │ │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ │ │ ├── ic_settings_bootlegdump.xml │ │ │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ │ │ ├── ic_settings_display_home.xml │ │ │ │ │ │ ├── ic_settings_display_op.xml │ │ │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ │ │ ├── ic_settings_emergency.xml │ │ │ │ │ │ ├── ic_settings_emergency_op.xml │ │ │ │ │ │ ├── ic_settings_evolution.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_fireworks.xml │ │ │ │ │ │ ├── ic_settings_location.xml │ │ │ │ │ │ ├── ic_settings_location_home.xml │ │ │ │ │ │ ├── ic_settings_notifications.xml │ │ │ │ │ │ ├── ic_settings_notifications_white.xml │ │ │ │ │ │ ├── ic_settings_nusantarawings.xml │ │ │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ │ │ ├── ic_settings_safety_center.xml │ │ │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ │ │ ├── ic_settings_superior.xml │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml │ │ │ │ │ │ ├── ic_settings_syberia_white.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ │ │ ├── ic_settings_themes.xml │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml │ │ │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ │ │ ├── ic_storage_home.xml │ │ │ │ │ │ ├── ic_storage_op.xml │ │ │ │ │ │ ├── ic_storage_white.xml │ │ │ │ │ │ ├── ic_tresdin.xml │ │ │ │ │ │ ├── ic_user.xml │ │ │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml │ │ │ │ │ │ ├── op_ic_homepage_google.xml │ │ │ │ │ │ ├── op_ic_homepage_sound.xml │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml │ │ │ │ ├── SWITCH1 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ └── settingslib_switch_track.xml │ │ │ │ └── cheatsheet │ │ │ ├── com.android.systemui │ │ │ │ ├── BBN1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN12 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── ic_iconify_bb_thumb.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── ic_iconify_bb_thumb.xml │ │ │ │ ├── BBN13 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN14 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── ic_iconify_bb_thumb.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── ic_iconify_bb_thumb.xml │ │ │ │ ├── BBN15 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN16 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN17 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ ├── BBN18 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN19 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN20 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ ├── BBN3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── surface_header_dark_sysui.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── surface_header_dark_sysui.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBN9 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP12 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── ic_iconify_bb_thumb.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── ic_iconify_bb_thumb.xml │ │ │ │ ├── BBP13 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP14 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── ic_iconify_bb_thumb.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── ic_iconify_bb_thumb.xml │ │ │ │ ├── BBP15 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP16 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP17 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ ├── BBP18 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP19 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP20 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ └── holo_blue_light_alpha.xml │ │ │ │ ├── BBP3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── BBP9 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_bg.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_off_custom.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── bg_qs_brightness_auto_on_custom.xml │ │ │ │ │ │ ├── brightness_bg.xml │ │ │ │ │ │ ├── brightness_mirror_background.xml │ │ │ │ │ │ ├── brightness_progress_drawable.xml │ │ │ │ │ │ ├── brightness_progress_drawable_custom.xml │ │ │ │ │ │ ├── brightness_progress_full_drawable.xml │ │ │ │ │ │ └── brightness_progress_full_drawable_custom.xml │ │ │ │ ├── CR2 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── DM │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── bools.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── bools.xml │ │ │ │ ├── Dynamic2 │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── IPSUI1 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_off.xml │ │ │ │ │ │ ├── auto_brightness_icon_on.xml │ │ │ │ │ │ ├── bubble_ic_create_bubble.xml │ │ │ │ │ │ ├── bubble_ic_stop_bubble.xml │ │ │ │ │ │ ├── controls_icon.xml │ │ │ │ │ │ ├── ic_1x_mobiledata.xml │ │ │ │ │ │ ├── ic_3g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uc_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uw_mobiledata.xml │ │ │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ │ │ ├── ic_activity_down.xml │ │ │ │ │ │ ├── ic_activity_up.xml │ │ │ │ │ │ ├── ic_add.xml │ │ │ │ │ │ ├── ic_add_circle_qs.xml │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_android_logo.xml │ │ │ │ │ │ ├── ic_app_volume.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_avatar_guest_user.xml │ │ │ │ │ │ ├── ic_avatar_user.xml │ │ │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_audio.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_0.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_1.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_10.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_2.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_3.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_4.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_5.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_6.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_7.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_8.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_9.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_full.xml │ │ │ │ │ │ ├── ic_brightness_left.xml │ │ │ │ │ │ ├── ic_brightness_low.xml │ │ │ │ │ │ ├── ic_brightness_medium.xml │ │ │ │ │ │ ├── ic_brightness_right.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_camera_alt_24dp.xml │ │ │ │ │ │ ├── ic_camera_ssos.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ │ │ ├── ic_chevron_up.xml │ │ │ │ │ │ ├── ic_clear.xml │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ ├── ic_clock_black_24dp.xml │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_close_white_rounded.xml │ │ │ │ │ │ ├── ic_create_bubble.xml │ │ │ │ │ │ ├── ic_custom_seekbar_minus.xml │ │ │ │ │ │ ├── ic_custom_seekbar_plus.xml │ │ │ │ │ │ ├── ic_custom_seekbar_reset.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_dc_dimming_tile.xml │ │ │ │ │ │ ├── ic_demote_conversation.xml │ │ │ │ │ │ ├── ic_device_lock_off.xml │ │ │ │ │ │ ├── ic_device_lock_on.xml │ │ │ │ │ │ ├── ic_device_thermostat_24.xml │ │ │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ │ │ ├── ic_done_black_24dp.xml │ │ │ │ │ │ ├── ic_du_logo.xml │ │ │ │ │ │ ├── ic_e_mobiledata.xml │ │ │ │ │ │ ├── ic_emergency_star.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_fullscreen_white_24dp.xml │ │ │ │ │ │ ├── ic_g_mobiledata.xml │ │ │ │ │ │ ├── ic_gaming.xml │ │ │ │ │ │ ├── ic_h_mobiledata.xml │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_headphone.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_hp_center.xml │ │ │ │ │ │ ├── ic_hp_disabled.xml │ │ │ │ │ │ ├── ic_ime_switcher_default.xml │ │ │ │ │ │ ├── ic_ime_switcher_smartbar.xml │ │ │ │ │ │ ├── ic_ime_switcher_smartbar_dark.xml │ │ │ │ │ │ ├── ic_important.xml │ │ │ │ │ │ ├── ic_important_outline.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_instant_app_badge.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_keyboard_tab_36dp.xml │ │ │ │ │ │ ├── ic_killapp_tile.xml │ │ │ │ │ │ ├── ic_ksh_key_backspace.xml │ │ │ │ │ │ ├── ic_ksh_key_down.xml │ │ │ │ │ │ ├── ic_ksh_key_enter.xml │ │ │ │ │ │ ├── ic_ksh_key_left.xml │ │ │ │ │ │ ├── ic_ksh_key_meta.xml │ │ │ │ │ │ ├── ic_ksh_key_right.xml │ │ │ │ │ │ ├── ic_ksh_key_up.xml │ │ │ │ │ │ ├── ic_left.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ │ │ ├── ic_lock_face.xml │ │ │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ │ │ ├── ic_lock_lockdown.xml │ │ │ │ │ │ ├── ic_lock_onthego.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lock_restart_bootloader.xml │ │ │ │ │ │ ├── ic_lock_restart_recovery.xml │ │ │ │ │ │ ├── ic_lock_screenrecord.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_media_device.xml │ │ │ │ │ │ ├── ic_media_group_device.xml │ │ │ │ │ │ ├── ic_media_projection_permission.xml │ │ │ │ │ │ ├── ic_media_speaker_device.xml │ │ │ │ │ │ ├── ic_memory.xml │ │ │ │ │ │ ├── ic_menu.xml │ │ │ │ │ │ ├── ic_mic_26dp.xml │ │ │ │ │ │ ├── ic_mic_ssos.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_0.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_1.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_2.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_3.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_4.xml │ │ │ │ │ │ ├── ic_mono_toggle_off.xml │ │ │ │ │ │ ├── ic_mono_toggle_on.xml │ │ │ │ │ │ ├── ic_music_note.xml │ │ │ │ │ │ ├── ic_music_note_24dp.xml │ │ │ │ │ │ ├── ic_navbar_chevron_left.xml │ │ │ │ │ │ ├── ic_navbar_chevron_right.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_notification_block.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_open_in_new.xml │ │ │ │ │ │ ├── ic_phone_ssos.xml │ │ │ │ │ │ ├── ic_play_games.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_preferred_network.xml │ │ │ │ │ │ ├── ic_qs_ambient_display.xml │ │ │ │ │ │ ├── ic_qs_aod.xml │ │ │ │ │ │ ├── ic_qs_autobrightness.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_battery_saver_charging.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off_new_custom.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on_new_custom.xml │ │ │ │ │ │ ├── ic_qs_brightness_high.xml │ │ │ │ │ │ ├── ic_qs_brightness_low.xml │ │ │ │ │ │ ├── ic_qs_brightness_medium.xml │ │ │ │ │ │ ├── ic_qs_caffeine.xml │ │ │ │ │ │ ├── ic_qs_caffeine_on.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_cast_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_clear.xml │ │ │ │ │ │ ├── ic_qs_compass.xml │ │ │ │ │ │ ├── ic_qs_compass_off.xml │ │ │ │ │ │ ├── ic_qs_compass_on.xml │ │ │ │ │ │ ├── ic_qs_cpu_info.xml │ │ │ │ │ │ ├── ic_qs_cpuinfo.xml │ │ │ │ │ │ ├── ic_qs_data_switch_0.xml │ │ │ │ │ │ ├── ic_qs_data_switch_1.xml │ │ │ │ │ │ ├── ic_qs_data_switch_2.xml │ │ │ │ │ │ ├── ic_qs_dnd_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_dnd_on.xml │ │ │ │ │ │ ├── ic_qs_fps_info.xml │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml │ │ │ │ │ │ ├── ic_qs_heads_up.xml │ │ │ │ │ │ ├── ic_qs_heads_up_off.xml │ │ │ │ │ │ ├── ic_qs_heads_up_on.xml │ │ │ │ │ │ ├── ic_qs_hwkeys.xml │ │ │ │ │ │ ├── ic_qs_immersive_full.xml │ │ │ │ │ │ ├── ic_qs_immersive_navbar.xml │ │ │ │ │ │ ├── ic_qs_immersive_statusbar.xml │ │ │ │ │ │ ├── ic_qs_location_battery_saving.xml │ │ │ │ │ │ ├── ic_qs_location_high_accuracy.xml │ │ │ │ │ │ ├── ic_qs_lte.xml │ │ │ │ │ │ ├── ic_qs_media_pause.xml │ │ │ │ │ │ ├── ic_qs_media_play.xml │ │ │ │ │ │ ├── ic_qs_minus.xml │ │ │ │ │ │ ├── ic_qs_navbar.xml │ │ │ │ │ │ ├── ic_qs_network_adb_on.xml │ │ │ │ │ │ ├── ic_qs_nfc.xml │ │ │ │ │ │ ├── ic_qs_nfc_disabled.xml │ │ │ │ │ │ ├── ic_qs_nfc_enabled.xml │ │ │ │ │ │ ├── ic_qs_no_calling_sms.xml │ │ │ │ │ │ ├── ic_qs_no_internet_airplane.xml │ │ │ │ │ │ ├── ic_qs_no_internet_available.xml │ │ │ │ │ │ ├── ic_qs_no_internet_unavailable.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_onthego.xml │ │ │ │ │ │ ├── ic_qs_plus.xml │ │ │ │ │ │ ├── ic_qs_power_menu.xml │ │ │ │ │ │ ├── ic_qs_poweroff.xml │ │ │ │ │ │ ├── ic_qs_profiles.xml │ │ │ │ │ │ ├── ic_qs_reader.xml │ │ │ │ │ │ ├── ic_qs_reboot.xml │ │ │ │ │ │ ├── ic_qs_reboot_recovery.xml │ │ │ │ │ │ ├── ic_qs_region_screenshot.xml │ │ │ │ │ │ ├── ic_qs_remove.xml │ │ │ │ │ │ ├── ic_qs_ringer_audible.xml │ │ │ │ │ │ ├── ic_qs_ringer_silent.xml │ │ │ │ │ │ ├── ic_qs_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_qs_screenrecord.xml │ │ │ │ │ │ ├── ic_qs_screenshot.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_signal_in.xml │ │ │ │ │ │ ├── ic_qs_signal_out.xml │ │ │ │ │ │ ├── ic_qs_sleep.xml │ │ │ │ │ │ ├── ic_qs_smart_pixels.xml │ │ │ │ │ │ ├── ic_qs_sound_search.xml │ │ │ │ │ │ ├── ic_qs_style.xml │ │ │ │ │ │ ├── ic_qs_style_list.xml │ │ │ │ │ │ ├── ic_qs_sync.xml │ │ │ │ │ │ ├── ic_qs_sync_off.xml │ │ │ │ │ │ ├── ic_qs_sync_on.xml │ │ │ │ │ │ ├── ic_qs_usb_tether.xml │ │ │ │ │ │ ├── ic_qs_volume_panel.xml │ │ │ │ │ │ ├── ic_qs_vpn.xml │ │ │ │ │ │ ├── ic_qs_wallet.xml │ │ │ │ │ │ ├── ic_qs_weather_default_off.xml │ │ │ │ │ │ ├── ic_qs_weather_default_off_white.xml │ │ │ │ │ │ ├── ic_qs_weather_default_on.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_quick_tap.xml │ │ │ │ │ │ ├── ic_reduce_bright_colors.xml │ │ │ │ │ │ ├── ic_remove.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_restart_advanced.xml │ │ │ │ │ │ ├── ic_restart_bootloader.xml │ │ │ │ │ │ ├── ic_restart_recovery.xml │ │ │ │ │ │ ├── ic_restart_system.xml │ │ │ │ │ │ ├── ic_restart_systemui.xml │ │ │ │ │ │ ├── ic_restart_ui.xml │ │ │ │ │ │ ├── ic_reverse_charging.xml │ │ │ │ │ │ ├── ic_right.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_ring_volume_off.xml │ │ │ │ │ │ ├── ic_screen_recorder.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_screenshot_edit.xml │ │ │ │ │ │ ├── ic_screenshot_lensss.xml │ │ │ │ │ │ ├── ic_screenshot_scroll.xml │ │ │ │ │ │ ├── ic_screenshot_scrollss.xml │ │ │ │ │ │ ├── ic_screenshot_share.xml │ │ │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ │ │ ├── ic_send.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ │ │ ├── ic_settings_backup_restore.xml │ │ │ │ │ │ ├── ic_settings_memory.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_signal_sensors.xml │ │ │ │ │ │ ├── ic_signal_strength_zero_bar_no_internet.xml │ │ │ │ │ │ ├── ic_smartphone.xml │ │ │ │ │ │ ├── ic_snooze.xml │ │ │ │ │ │ ├── ic_speaker_bluetooth.xml │ │ │ │ │ │ ├── ic_speaker_group_24dp.xml │ │ │ │ │ │ ├── ic_speaker_group_black_24dp.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_sr_clock.xml │ │ │ │ │ │ ├── ic_sr_large.xml │ │ │ │ │ │ ├── ic_sr_quality.xml │ │ │ │ │ │ ├── ic_sr_stopdot.xml │ │ │ │ │ │ ├── ic_stop_bubble.xml │ │ │ │ │ │ ├── ic_storage.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_sysbar_accessibility_button.xml │ │ │ │ │ │ ├── ic_sysbar_back.xml │ │ │ │ │ │ ├── ic_sysbar_back2.xml │ │ │ │ │ │ ├── ic_sysbar_back_hw.xml │ │ │ │ │ │ ├── ic_sysbar_back_quick_step.xml │ │ │ │ │ │ ├── ic_sysbar_clear_notifications.xml │ │ │ │ │ │ ├── ic_sysbar_home.xml │ │ │ │ │ │ ├── ic_sysbar_home2.xml │ │ │ │ │ │ ├── ic_sysbar_home_hw.xml │ │ │ │ │ │ ├── ic_sysbar_home_quick_step.xml │ │ │ │ │ │ ├── ic_sysbar_recent.xml │ │ │ │ │ │ ├── ic_sysbar_recent2.xml │ │ │ │ │ │ ├── ic_sysbar_recent_hw.xml │ │ │ │ │ │ ├── ic_system_update.xml │ │ │ │ │ │ ├── ic_touch.xml │ │ │ │ │ │ ├── ic_unlock.xml │ │ │ │ │ │ ├── ic_unlocked.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_accessibility.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_bt.xml │ │ │ │ │ │ ├── ic_volume_media_bt_mute.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_notification.xml │ │ │ │ │ │ ├── ic_volume_notification_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_remote.xml │ │ │ │ │ │ ├── ic_volume_remote_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── ic_wallet_lockscreen.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_0.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_1.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_2.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_3.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_4.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── nfc_24dp.xml │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── pip_ic_fullscreen_white.xml │ │ │ │ │ │ ├── pip_icon.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_off.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_on.xml │ │ │ │ │ │ ├── qs_camera_access_icon_off.xml │ │ │ │ │ │ ├── qs_camera_access_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_dnd_icon_off.xml │ │ │ │ │ │ ├── qs_dnd_icon_on.xml │ │ │ │ │ │ ├── qs_extra_dim_icon_off.xml │ │ │ │ │ │ ├── qs_extra_dim_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_mic_access_off.xml │ │ │ │ │ │ ├── qs_mic_access_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── qs_screen_record_icon_off.xml │ │ │ │ │ │ ├── qs_screen_record_icon_on.xml │ │ │ │ │ │ ├── stat_notify_image.xml │ │ │ │ │ │ ├── stat_notify_image_error.xml │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml │ │ │ │ │ │ ├── stat_sys_alarm.xml │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml │ │ │ │ │ │ ├── stat_sys_branded_vpn.xml │ │ │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ │ │ ├── stat_sys_cast.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_10.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml │ │ │ │ │ │ ├── stat_sys_data_saver.xml │ │ │ │ │ │ ├── stat_sys_dnd.xml │ │ │ │ │ │ ├── stat_sys_flashlight.xml │ │ │ │ │ │ ├── stat_sys_headset.xml │ │ │ │ │ │ ├── stat_sys_headset_mic.xml │ │ │ │ │ │ ├── stat_sys_hotspot.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ ├── stat_sys_network_traffic.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_down.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_down_arrow.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_up.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_up_arrow.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_updown.xml │ │ │ │ │ │ ├── stat_sys_nfc.xml │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml │ │ │ │ │ │ ├── stat_sys_sensors_off.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_in.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_inout.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_none.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_out.xml │ │ │ │ │ │ ├── stat_sys_vpn_ic.xml │ │ │ │ │ │ ├── status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── twotone_spatial_audio_24.xml │ │ │ │ │ │ └── volume_settings.xml │ │ │ │ ├── IPSUI10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── ic_bluetooth_transient_dot_left_animation.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_dot_right_animation.xml │ │ │ │ │ │ ├── ic_caret_down_left_animation.xml │ │ │ │ │ │ ├── ic_caret_down_right_animation.xml │ │ │ │ │ │ ├── ic_caret_up_left_animation.xml │ │ │ │ │ │ ├── ic_caret_up_right_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_circle_1_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_circle_2_animation.xml │ │ │ │ │ │ ├── ic_hotspot_transient_circle_3_animation.xml │ │ │ │ │ │ ├── ic_landscape_from_auto_rotate_animation_arrow_bottom.xml │ │ │ │ │ │ ├── ic_landscape_from_auto_rotate_animation_arrow_top.xml │ │ │ │ │ │ ├── ic_landscape_from_auto_rotate_animation_arrows.xml │ │ │ │ │ │ ├── ic_landscape_from_auto_rotate_animation_device.xml │ │ │ │ │ │ ├── ic_landscape_to_auto_rotate_animation_arrow_bottom.xml │ │ │ │ │ │ ├── ic_landscape_to_auto_rotate_animation_arrow_top.xml │ │ │ │ │ │ ├── ic_landscape_to_auto_rotate_animation_arrows.xml │ │ │ │ │ │ ├── ic_landscape_to_auto_rotate_animation_device.xml │ │ │ │ │ │ ├── ic_landscape_to_rotate_arrows_animation.xml │ │ │ │ │ │ ├── ic_landscape_to_rotate_bottom_merged_animation.xml │ │ │ │ │ │ ├── ic_landscape_to_rotate_landscape_animation.xml │ │ │ │ │ │ ├── ic_portrait_from_auto_rotate_animation_arrow_bottom.xml │ │ │ │ │ │ ├── ic_portrait_from_auto_rotate_animation_arrow_top.xml │ │ │ │ │ │ ├── ic_portrait_from_auto_rotate_animation_arrows.xml │ │ │ │ │ │ ├── ic_portrait_from_auto_rotate_animation_device.xml │ │ │ │ │ │ ├── ic_portrait_to_auto_rotate_animation_arrow_bottom.xml │ │ │ │ │ │ ├── ic_portrait_to_auto_rotate_animation_arrow_top.xml │ │ │ │ │ │ ├── ic_portrait_to_auto_rotate_animation_arrows.xml │ │ │ │ │ │ ├── ic_portrait_to_auto_rotate_animation_device.xml │ │ │ │ │ │ ├── ic_portrait_to_rotate_arrows_0_animation.xml │ │ │ │ │ │ ├── ic_portrait_to_rotate_arrows_animation.xml │ │ │ │ │ │ ├── ic_portrait_to_rotate_bottom_merged_animation.xml │ │ │ │ │ │ ├── ic_portrait_to_rotate_device_0_animation.xml │ │ │ │ │ │ ├── ic_portrait_to_rotate_device_merged_animation.xml │ │ │ │ │ │ ├── ic_qs_collapse_chevron_02_animation.xml │ │ │ │ │ │ ├── ic_qs_expand_chevron_01_animation.xml │ │ │ │ │ │ ├── ic_rotate_to_landscape_arrows_0_animation.xml │ │ │ │ │ │ ├── ic_rotate_to_landscape_arrows_animation.xml │ │ │ │ │ │ ├── ic_rotate_to_landscape_bottom_merged_animation.xml │ │ │ │ │ │ ├── ic_rotate_to_landscape_landscape_animation.xml │ │ │ │ │ │ ├── ic_rotate_to_portrait_arrows_0_animation.xml │ │ │ │ │ │ ├── ic_rotate_to_portrait_arrows_animation.xml │ │ │ │ │ │ ├── ic_rotate_to_portrait_bottom_merged_animation.xml │ │ │ │ │ │ ├── ic_rotate_to_portrait_device_0_animation.xml │ │ │ │ │ │ ├── ic_rotate_to_portrait_device_merged_animation.xml │ │ │ │ │ │ ├── ic_signal_blink_1.xml │ │ │ │ │ │ ├── ic_signal_blink_2.xml │ │ │ │ │ │ ├── ic_signal_blink_3.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_wifi_1_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_wifi_2_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_wifi_3_animation.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient_wifi_4_animation.xml │ │ │ │ │ │ ├── ic_volume_collapse_chevron_02_animation.xml │ │ │ │ │ │ └── ic_volume_expand_chevron_01_animation.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_action_lockdown.xml │ │ │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_transient.xml │ │ │ │ │ │ ├── ic_brightness_left.xml │ │ │ │ │ │ ├── ic_brightness_right.xml │ │ │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ │ │ ├── ic_camera_alt_24dp.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_data_off.xml │ │ │ │ │ │ ├── ic_data_on.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_dnd_disable.xml │ │ │ │ │ │ ├── ic_dnd_total_silence_disable.xml │ │ │ │ │ │ ├── ic_face_unlock.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_gaming_mode.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_hotspot_disable.xml │ │ │ │ │ │ ├── ic_hotspot_enable.xml │ │ │ │ │ │ ├── ic_hotspot_transient.xml │ │ │ │ │ │ ├── ic_hotspot_unavailable.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_invert_colors_disable.xml │ │ │ │ │ │ ├── ic_invert_colors_enable.xml │ │ │ │ │ │ ├── ic_kill_app_dark.xml │ │ │ │ │ │ ├── ic_kill_app_light.xml │ │ │ │ │ │ ├── ic_landscape_from_auto_rotate.xml │ │ │ │ │ │ ├── ic_landscape_to_auto_rotate.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ │ │ ├── ic_lock_airplane_mode_disabled.xml │ │ │ │ │ │ ├── ic_lock_airplane_mode_enabled.xml │ │ │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ │ │ ├── ic_lock_restart_bootloader.xml │ │ │ │ │ │ ├── ic_lock_restart_recovery.xml │ │ │ │ │ │ ├── ic_lock_screenrecord.xml │ │ │ │ │ │ ├── ic_lock_screenshot.xml │ │ │ │ │ │ ├── ic_lock_settings.xml │ │ │ │ │ │ ├── ic_lockscreen_sim.xml │ │ │ │ │ │ ├── ic_mic_26dp.xml │ │ │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ │ │ ├── ic_night_mode_disabled.xml │ │ │ │ │ │ ├── ic_night_mode_enabled.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_phone_24dp.xml │ │ │ │ │ │ ├── ic_portrait_from_auto_rotate.xml │ │ │ │ │ │ ├── ic_portrait_to_auto_rotate.xml │ │ │ │ │ │ ├── ic_preferred_network.xml │ │ │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ │ │ ├── ic_qs_alwaysondisplay.xml │ │ │ │ │ │ ├── ic_qs_alwaysondisplay_off.xml │ │ │ │ │ │ ├── ic_qs_alwaysondisplay_on.xml │ │ │ │ │ │ ├── ic_qs_ambient_display.xml │ │ │ │ │ │ ├── ic_qs_ambient_off.xml │ │ │ │ │ │ ├── ic_qs_ambient_on.xml │ │ │ │ │ │ ├── ic_qs_ambient_play_off.xml │ │ │ │ │ │ ├── ic_qs_ambient_play_on.xml │ │ │ │ │ │ ├── ic_qs_ambientdisplay.xml │ │ │ │ │ │ ├── ic_qs_ambientdisplay_off.xml │ │ │ │ │ │ ├── ic_qs_ambientdisplay_on.xml │ │ │ │ │ │ ├── ic_qs_anbi_on.xml │ │ │ │ │ │ ├── ic_qs_aod.xml │ │ │ │ │ │ ├── ic_qs_app_picker.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_battery_saver_off.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_off.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_high_off.xml │ │ │ │ │ │ ├── ic_qs_brightness_high_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_low.xml │ │ │ │ │ │ ├── ic_qs_brightness_medium.xml │ │ │ │ │ │ ├── ic_qs_caffeine.xml │ │ │ │ │ │ ├── ic_qs_caffeine_off.xml │ │ │ │ │ │ ├── ic_qs_caffeine_on.xml │ │ │ │ │ │ ├── ic_qs_calc.xml │ │ │ │ │ │ ├── ic_qs_calendar.xml │ │ │ │ │ │ ├── ic_qs_call.xml │ │ │ │ │ │ ├── ic_qs_cast_off.xml │ │ │ │ │ │ ├── ic_qs_cast_on.xml │ │ │ │ │ │ ├── ic_qs_cellular.xml │ │ │ │ │ │ ├── ic_qs_collapse.xml │ │ │ │ │ │ ├── ic_qs_compass_off.xml │ │ │ │ │ │ ├── ic_qs_compass_on.xml │ │ │ │ │ │ ├── ic_qs_cpuinfo.xml │ │ │ │ │ │ ├── ic_qs_dnd_off.xml │ │ │ │ │ │ ├── ic_qs_dnd_on.xml │ │ │ │ │ │ ├── ic_qs_dnd_on_priority.xml │ │ │ │ │ │ ├── ic_qs_dnd_on_total_silence.xml │ │ │ │ │ │ ├── ic_qs_expand.xml │ │ │ │ │ │ ├── ic_qs_expanded_desktop.xml │ │ │ │ │ │ ├── ic_qs_expanded_desktop_off.xml │ │ │ │ │ │ ├── ic_qs_expanded_navigation_off.xml │ │ │ │ │ │ ├── ic_qs_expanded_statusbar_off.xml │ │ │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ │ │ ├── ic_qs_fling.xml │ │ │ │ │ │ ├── ic_qs_fling_off.xml │ │ │ │ │ │ ├── ic_qs_game_mode_off.xml │ │ │ │ │ │ ├── ic_qs_game_mode_on.xml │ │ │ │ │ │ ├── ic_qs_google_assist.xml │ │ │ │ │ │ ├── ic_qs_google_now.xml │ │ │ │ │ │ ├── ic_qs_google_voice_assist.xml │ │ │ │ │ │ ├── ic_qs_heads_up.xml │ │ │ │ │ │ ├── ic_qs_heads_up_off.xml │ │ │ │ │ │ ├── ic_qs_heads_up_on.xml │ │ │ │ │ │ ├── ic_qs_hwkeys.xml │ │ │ │ │ │ ├── ic_qs_hwkeys_off.xml │ │ │ │ │ │ ├── ic_qs_hwkeys_on.xml │ │ │ │ │ │ ├── ic_qs_ime.xml │ │ │ │ │ │ ├── ic_qs_locale.xml │ │ │ │ │ │ ├── ic_qs_locale_pending.xml │ │ │ │ │ │ ├── ic_qs_location_battery_saving.xml │ │ │ │ │ │ ├── ic_qs_location_high_accuracy.xml │ │ │ │ │ │ ├── ic_qs_location_off.xml │ │ │ │ │ │ ├── ic_qs_location_on.xml │ │ │ │ │ │ ├── ic_qs_location_sensors_only.xml │ │ │ │ │ │ ├── ic_qs_media_pause.xml │ │ │ │ │ │ ├── ic_qs_media_play.xml │ │ │ │ │ │ ├── ic_qs_minus.xml │ │ │ │ │ │ ├── ic_qs_network_adb.xml │ │ │ │ │ │ ├── ic_qs_network_adb_off.xml │ │ │ │ │ │ ├── ic_qs_network_adb_on.xml │ │ │ │ │ │ ├── ic_qs_nfc_disabled.xml │ │ │ │ │ │ ├── ic_qs_nfc_enabled.xml │ │ │ │ │ │ ├── ic_qs_night_display_off.xml │ │ │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ │ │ ├── ic_qs_onthego.xml │ │ │ │ │ │ ├── ic_qs_otg_off.xml │ │ │ │ │ │ ├── ic_qs_otg_on.xml │ │ │ │ │ │ ├── ic_qs_pie_off.xml │ │ │ │ │ │ ├── ic_qs_pie_on.xml │ │ │ │ │ │ ├── ic_qs_pip.xml │ │ │ │ │ │ ├── ic_qs_plus.xml │ │ │ │ │ │ ├── ic_qs_poweroff.xml │ │ │ │ │ │ ├── ic_qs_pulse.xml │ │ │ │ │ │ ├── ic_qs_pulse_off.xml │ │ │ │ │ │ ├── ic_qs_read_mode_on.xml │ │ │ │ │ │ ├── ic_qs_reader.xml │ │ │ │ │ │ ├── ic_qs_reboot.xml │ │ │ │ │ │ ├── ic_qs_reboot_recovery.xml │ │ │ │ │ │ ├── ic_qs_region_screenshot.xml │ │ │ │ │ │ ├── ic_qs_ringer_audible.xml │ │ │ │ │ │ ├── ic_qs_ringer_silent.xml │ │ │ │ │ │ ├── ic_qs_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_qs_screenrecord.xml │ │ │ │ │ │ ├── ic_qs_screenrecord_hq.xml │ │ │ │ │ │ ├── ic_qs_screenrecord_lq.xml │ │ │ │ │ │ ├── ic_qs_screenrecord_mq.xml │ │ │ │ │ │ ├── ic_qs_screenshot.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_sleep.xml │ │ │ │ │ │ ├── ic_qs_smart_pixels.xml │ │ │ │ │ │ ├── ic_qs_smartbar.xml │ │ │ │ │ │ ├── ic_qs_smartbar_off.xml │ │ │ │ │ │ ├── ic_qs_sound_search.xml │ │ │ │ │ │ ├── ic_qs_stock.xml │ │ │ │ │ │ ├── ic_qs_stock_off.xml │ │ │ │ │ │ ├── ic_qs_suspend.xml │ │ │ │ │ │ ├── ic_qs_sync.xml │ │ │ │ │ │ ├── ic_qs_sync_off.xml │ │ │ │ │ │ ├── ic_qs_sync_on.xml │ │ │ │ │ │ ├── ic_qs_usb_tether.xml │ │ │ │ │ │ ├── ic_qs_usb_tether_off.xml │ │ │ │ │ │ ├── ic_qs_usb_tether_on.xml │ │ │ │ │ │ ├── ic_qs_volume_panel.xml │ │ │ │ │ │ ├── ic_qs_vpn.xml │ │ │ │ │ │ ├── ic_qs_vpn_disabled.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disabled.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_restart_advanced.xml │ │ │ │ │ │ ├── ic_restart_bootloader.xml │ │ │ │ │ │ ├── ic_restart_hot.xml │ │ │ │ │ │ ├── ic_restart_recovery.xml │ │ │ │ │ │ ├── ic_restart_ui.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_screen_stabilization_enabled.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ │ │ ├── ic_settings_20dp.xml │ │ │ │ │ │ ├── ic_settings_extensions.xml │ │ │ │ │ │ ├── ic_settings_memory.xml │ │ │ │ │ │ ├── ic_settings_reloaded_tuner.xml │ │ │ │ │ │ ├── ic_signal_airplane.xml │ │ │ │ │ │ ├── ic_signal_airplane_disable.xml │ │ │ │ │ │ ├── ic_signal_airplane_enable.xml │ │ │ │ │ │ ├── ic_signal_flashlight.xml │ │ │ │ │ │ ├── ic_signal_flashlight_disable.xml │ │ │ │ │ │ ├── ic_signal_flashlight_enable.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_signal_location_disable.xml │ │ │ │ │ │ ├── ic_signal_location_enable.xml │ │ │ │ │ │ ├── ic_signal_wifi_transient.xml │ │ │ │ │ │ ├── ic_snooze.xml │ │ │ │ │ │ ├── ic_status_bar_du_logo.xml │ │ │ │ │ │ ├── ic_status_bar_kronic_logo.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ │ │ ├── ic_volume_collapse.xml │ │ │ │ │ │ ├── ic_volume_expand.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_off.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_dnd_icon_off.xml │ │ │ │ │ │ ├── qs_dnd_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_ic_wifi_lock.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── qs_screen_record_icon_off.xml │ │ │ │ │ │ ├── qs_screen_record_icon_on.xml │ │ │ │ │ │ ├── recents_dismiss_dark.xml │ │ │ │ │ │ ├── recents_dismiss_light.xml │ │ │ │ │ │ ├── recents_info_dark.xml │ │ │ │ │ │ ├── recents_info_light.xml │ │ │ │ │ │ ├── somc_keyguard_ic_camera_24dp.xml │ │ │ │ │ │ ├── stat_notify_image.xml │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml │ │ │ │ │ │ ├── stat_sys_alarm.xml │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml │ │ │ │ │ │ ├── stat_sys_cast.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml │ │ │ │ │ │ ├── stat_sys_data_saver.xml │ │ │ │ │ │ ├── stat_sys_dnd_priority.xml │ │ │ │ │ │ ├── stat_sys_dnd_total_silence.xml │ │ │ │ │ │ ├── stat_sys_hotspot.xml │ │ │ │ │ │ ├── stat_sys_location.xml │ │ │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_down.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_up.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_updown.xml │ │ │ │ │ │ ├── stat_sys_no_sims.xml │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml │ │ │ │ │ │ ├── stat_sys_rotate_portrait.xml │ │ │ │ │ │ ├── stat_sys_vpn_ic.xml │ │ │ │ │ │ └── tuner.xml │ │ │ │ ├── IPSUI11 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_background_primary.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── stat_sys_data_fully_connected_4g.xml │ │ │ │ │ │ ├── stat_sys_data_fully_connected_4g_plus.xml │ │ │ │ │ │ ├── stat_sys_data_fully_connected_lte.xml │ │ │ │ │ │ └── stat_sys_data_fully_connected_lte_plus.xml │ │ │ │ ├── IPSUI12 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_notification.xml │ │ │ │ │ │ ├── ic_volume_notification_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_off.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ └── stat_sys_vpn_ic.xml │ │ │ │ ├── IPSUI13 │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── lock_lock.xml │ │ │ │ │ │ ├── lock_scanning.xml │ │ │ │ │ │ ├── lock_to_error.xml │ │ │ │ │ │ └── lock_unlock.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_collapse_animation.xml │ │ │ │ │ │ ├── ic_volume_expand_animation.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ └── stat_sys_vpn_ic.xml │ │ │ │ ├── IPSUI14 │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── lock_lock.xml │ │ │ │ │ │ ├── lock_scanning.xml │ │ │ │ │ │ ├── lock_to_error.xml │ │ │ │ │ │ └── lock_unlock.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_collapse_animation.xml │ │ │ │ │ │ ├── ic_volume_expand_animation.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ └── stat_sys_vpn_ic.xml │ │ │ │ ├── IPSUI2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ │ ├── auth_dialog_enterprise.xml │ │ │ │ │ │ ├── auth_dialog_lock.xml │ │ │ │ │ │ ├── auto_brightness_icon_off.xml │ │ │ │ │ │ ├── auto_brightness_icon_on.xml │ │ │ │ │ │ ├── bubble_ic_create_bubble.xml │ │ │ │ │ │ ├── bubble_ic_stop_bubble.xml │ │ │ │ │ │ ├── controls_icon.xml │ │ │ │ │ │ ├── dismiss_all_icon.xml │ │ │ │ │ │ ├── horizontal_ellipsis.xml │ │ │ │ │ │ ├── ic_1x_mobiledata.xml │ │ │ │ │ │ ├── ic_3g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uc_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uw_mobiledata.xml │ │ │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ │ │ ├── ic_activity_down.xml │ │ │ │ │ │ ├── ic_activity_up.xml │ │ │ │ │ │ ├── ic_add.xml │ │ │ │ │ │ ├── ic_add_circle_qs.xml │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_android_logo.xml │ │ │ │ │ │ ├── ic_app_volume.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_avatar_guest_user.xml │ │ │ │ │ │ ├── ic_avatar_user.xml │ │ │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_audio.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_0.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_1.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_10.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_2.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_3.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_4.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_5.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_6.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_7.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_8.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_9.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_full.xml │ │ │ │ │ │ ├── ic_brightness_left.xml │ │ │ │ │ │ ├── ic_brightness_low.xml │ │ │ │ │ │ ├── ic_brightness_medium.xml │ │ │ │ │ │ ├── ic_brightness_right.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_camera_alt_24dp.xml │ │ │ │ │ │ ├── ic_camera_ssos.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ │ │ ├── ic_chevron_up.xml │ │ │ │ │ │ ├── ic_clear.xml │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ ├── ic_clock_black_24dp.xml │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_close_white_rounded.xml │ │ │ │ │ │ ├── ic_create_bubble.xml │ │ │ │ │ │ ├── ic_custom_seekbar_minus.xml │ │ │ │ │ │ ├── ic_custom_seekbar_plus.xml │ │ │ │ │ │ ├── ic_custom_seekbar_reset.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_dc_dimming_tile.xml │ │ │ │ │ │ ├── ic_demote_conversation.xml │ │ │ │ │ │ ├── ic_device_lock_off.xml │ │ │ │ │ │ ├── ic_device_lock_on.xml │ │ │ │ │ │ ├── ic_device_thermostat_24.xml │ │ │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ │ │ ├── ic_done_black_24dp.xml │ │ │ │ │ │ ├── ic_du_logo.xml │ │ │ │ │ │ ├── ic_e_mobiledata.xml │ │ │ │ │ │ ├── ic_emergency_star.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_fullscreen_white_24dp.xml │ │ │ │ │ │ ├── ic_g_mobiledata.xml │ │ │ │ │ │ ├── ic_gaming.xml │ │ │ │ │ │ ├── ic_h_mobiledata.xml │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_headphone.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_hp_center.xml │ │ │ │ │ │ ├── ic_hp_disabled.xml │ │ │ │ │ │ ├── ic_ime_switcher_default.xml │ │ │ │ │ │ ├── ic_ime_switcher_smartbar.xml │ │ │ │ │ │ ├── ic_ime_switcher_smartbar_dark.xml │ │ │ │ │ │ ├── ic_important.xml │ │ │ │ │ │ ├── ic_important_outline.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_instant_app_badge.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_keyboard_tab_36dp.xml │ │ │ │ │ │ ├── ic_killapp_tile.xml │ │ │ │ │ │ ├── ic_ksh_key_backspace.xml │ │ │ │ │ │ ├── ic_ksh_key_down.xml │ │ │ │ │ │ ├── ic_ksh_key_enter.xml │ │ │ │ │ │ ├── ic_ksh_key_left.xml │ │ │ │ │ │ ├── ic_ksh_key_meta.xml │ │ │ │ │ │ ├── ic_ksh_key_right.xml │ │ │ │ │ │ ├── ic_ksh_key_up.xml │ │ │ │ │ │ ├── ic_left.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ │ │ ├── ic_lock_face.xml │ │ │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ │ │ ├── ic_lock_lockdown.xml │ │ │ │ │ │ ├── ic_lock_onthego.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lock_restart_bootloader.xml │ │ │ │ │ │ ├── ic_lock_restart_recovery.xml │ │ │ │ │ │ ├── ic_lock_screenrecord.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_media_device.xml │ │ │ │ │ │ ├── ic_media_group_device.xml │ │ │ │ │ │ ├── ic_media_projection_permission.xml │ │ │ │ │ │ ├── ic_media_speaker_device.xml │ │ │ │ │ │ ├── ic_memory.xml │ │ │ │ │ │ ├── ic_menu.xml │ │ │ │ │ │ ├── ic_mic_26dp.xml │ │ │ │ │ │ ├── ic_mic_ssos.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_0.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_1.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_2.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_3.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_4.xml │ │ │ │ │ │ ├── ic_mono_toggle_off.xml │ │ │ │ │ │ ├── ic_mono_toggle_on.xml │ │ │ │ │ │ ├── ic_music_note.xml │ │ │ │ │ │ ├── ic_music_note_24dp.xml │ │ │ │ │ │ ├── ic_navbar_chevron_left.xml │ │ │ │ │ │ ├── ic_navbar_chevron_right.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_notification_block.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_open_in_new.xml │ │ │ │ │ │ ├── ic_phone_ssos.xml │ │ │ │ │ │ ├── ic_play_games.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_preferred_network.xml │ │ │ │ │ │ ├── ic_qs_ambient_display.xml │ │ │ │ │ │ ├── ic_qs_aod.xml │ │ │ │ │ │ ├── ic_qs_autobrightness.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_battery_saver_charging.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off_new_custom.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on_new_custom.xml │ │ │ │ │ │ ├── ic_qs_brightness_high.xml │ │ │ │ │ │ ├── ic_qs_brightness_low.xml │ │ │ │ │ │ ├── ic_qs_brightness_medium.xml │ │ │ │ │ │ ├── ic_qs_caffeine.xml │ │ │ │ │ │ ├── ic_qs_caffeine_on.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_cast_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_clear.xml │ │ │ │ │ │ ├── ic_qs_compass.xml │ │ │ │ │ │ ├── ic_qs_compass_off.xml │ │ │ │ │ │ ├── ic_qs_compass_on.xml │ │ │ │ │ │ ├── ic_qs_cpu_info.xml │ │ │ │ │ │ ├── ic_qs_cpuinfo.xml │ │ │ │ │ │ ├── ic_qs_data_switch_0.xml │ │ │ │ │ │ ├── ic_qs_data_switch_1.xml │ │ │ │ │ │ ├── ic_qs_data_switch_2.xml │ │ │ │ │ │ ├── ic_qs_dnd_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_dnd_on.xml │ │ │ │ │ │ ├── ic_qs_fps_info.xml │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml │ │ │ │ │ │ ├── ic_qs_heads_up.xml │ │ │ │ │ │ ├── ic_qs_heads_up_off.xml │ │ │ │ │ │ ├── ic_qs_heads_up_on.xml │ │ │ │ │ │ ├── ic_qs_hwkeys.xml │ │ │ │ │ │ ├── ic_qs_immersive_full.xml │ │ │ │ │ │ ├── ic_qs_immersive_navbar.xml │ │ │ │ │ │ ├── ic_qs_immersive_statusbar.xml │ │ │ │ │ │ ├── ic_qs_location_battery_saving.xml │ │ │ │ │ │ ├── ic_qs_location_high_accuracy.xml │ │ │ │ │ │ ├── ic_qs_lte.xml │ │ │ │ │ │ ├── ic_qs_media_pause.xml │ │ │ │ │ │ ├── ic_qs_media_play.xml │ │ │ │ │ │ ├── ic_qs_minus.xml │ │ │ │ │ │ ├── ic_qs_navbar.xml │ │ │ │ │ │ ├── ic_qs_network_adb_on.xml │ │ │ │ │ │ ├── ic_qs_nfc.xml │ │ │ │ │ │ ├── ic_qs_nfc_disabled.xml │ │ │ │ │ │ ├── ic_qs_nfc_enabled.xml │ │ │ │ │ │ ├── ic_qs_no_calling_sms.xml │ │ │ │ │ │ ├── ic_qs_no_internet_airplane.xml │ │ │ │ │ │ ├── ic_qs_no_internet_available.xml │ │ │ │ │ │ ├── ic_qs_no_internet_unavailable.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_onthego.xml │ │ │ │ │ │ ├── ic_qs_plus.xml │ │ │ │ │ │ ├── ic_qs_power_menu.xml │ │ │ │ │ │ ├── ic_qs_poweroff.xml │ │ │ │ │ │ ├── ic_qs_profiles.xml │ │ │ │ │ │ ├── ic_qs_reader.xml │ │ │ │ │ │ ├── ic_qs_reboot.xml │ │ │ │ │ │ ├── ic_qs_reboot_recovery.xml │ │ │ │ │ │ ├── ic_qs_region_screenshot.xml │ │ │ │ │ │ ├── ic_qs_remove.xml │ │ │ │ │ │ ├── ic_qs_ringer_audible.xml │ │ │ │ │ │ ├── ic_qs_ringer_silent.xml │ │ │ │ │ │ ├── ic_qs_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_qs_screenrecord.xml │ │ │ │ │ │ ├── ic_qs_screenshot.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_signal_in.xml │ │ │ │ │ │ ├── ic_qs_signal_out.xml │ │ │ │ │ │ ├── ic_qs_sleep.xml │ │ │ │ │ │ ├── ic_qs_smart_pixels.xml │ │ │ │ │ │ ├── ic_qs_sound_search.xml │ │ │ │ │ │ ├── ic_qs_style.xml │ │ │ │ │ │ ├── ic_qs_style_list.xml │ │ │ │ │ │ ├── ic_qs_sync.xml │ │ │ │ │ │ ├── ic_qs_sync_off.xml │ │ │ │ │ │ ├── ic_qs_sync_on.xml │ │ │ │ │ │ ├── ic_qs_usb_tether.xml │ │ │ │ │ │ ├── ic_qs_volume_panel.xml │ │ │ │ │ │ ├── ic_qs_vpn.xml │ │ │ │ │ │ ├── ic_qs_wallet.xml │ │ │ │ │ │ ├── ic_qs_weather_default_off.xml │ │ │ │ │ │ ├── ic_qs_weather_default_off_white.xml │ │ │ │ │ │ ├── ic_qs_weather_default_on.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_quick_tap.xml │ │ │ │ │ │ ├── ic_reduce_bright_colors.xml │ │ │ │ │ │ ├── ic_remove.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_restart_advanced.xml │ │ │ │ │ │ ├── ic_restart_bootloader.xml │ │ │ │ │ │ ├── ic_restart_recovery.xml │ │ │ │ │ │ ├── ic_restart_system.xml │ │ │ │ │ │ ├── ic_restart_systemui.xml │ │ │ │ │ │ ├── ic_restart_ui.xml │ │ │ │ │ │ ├── ic_reverse_charging.xml │ │ │ │ │ │ ├── ic_right.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_ring_volume_off.xml │ │ │ │ │ │ ├── ic_screen_recorder.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_screenshot_edit.xml │ │ │ │ │ │ ├── ic_screenshot_lensss.xml │ │ │ │ │ │ ├── ic_screenshot_scroll.xml │ │ │ │ │ │ ├── ic_screenshot_scrollss.xml │ │ │ │ │ │ ├── ic_screenshot_share.xml │ │ │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ │ │ ├── ic_send.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ │ │ ├── ic_settings_backup_restore.xml │ │ │ │ │ │ ├── ic_settings_memory.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_signal_sensors.xml │ │ │ │ │ │ ├── ic_signal_strength_zero_bar_no_internet.xml │ │ │ │ │ │ ├── ic_smartphone.xml │ │ │ │ │ │ ├── ic_snooze.xml │ │ │ │ │ │ ├── ic_speaker_bluetooth.xml │ │ │ │ │ │ ├── ic_speaker_group_24dp.xml │ │ │ │ │ │ ├── ic_speaker_group_black_24dp.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_sr_clock.xml │ │ │ │ │ │ ├── ic_sr_large.xml │ │ │ │ │ │ ├── ic_sr_quality.xml │ │ │ │ │ │ ├── ic_sr_stopdot.xml │ │ │ │ │ │ ├── ic_stop_bubble.xml │ │ │ │ │ │ ├── ic_storage.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_sysbar_accessibility_button.xml │ │ │ │ │ │ ├── ic_sysbar_back.xml │ │ │ │ │ │ ├── ic_sysbar_back2.xml │ │ │ │ │ │ ├── ic_sysbar_back_hw.xml │ │ │ │ │ │ ├── ic_sysbar_back_quick_step.xml │ │ │ │ │ │ ├── ic_sysbar_clear_notifications.xml │ │ │ │ │ │ ├── ic_sysbar_home.xml │ │ │ │ │ │ ├── ic_sysbar_home2.xml │ │ │ │ │ │ ├── ic_sysbar_home_hw.xml │ │ │ │ │ │ ├── ic_sysbar_home_quick_step.xml │ │ │ │ │ │ ├── ic_sysbar_recent.xml │ │ │ │ │ │ ├── ic_sysbar_recent2.xml │ │ │ │ │ │ ├── ic_sysbar_recent_hw.xml │ │ │ │ │ │ ├── ic_system_update.xml │ │ │ │ │ │ ├── ic_touch.xml │ │ │ │ │ │ ├── ic_unlock.xml │ │ │ │ │ │ ├── ic_unlocked.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_accessibility.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_bt.xml │ │ │ │ │ │ ├── ic_volume_media_bt_mute.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_notification.xml │ │ │ │ │ │ ├── ic_volume_notification_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_remote.xml │ │ │ │ │ │ ├── ic_volume_remote_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── ic_wallet_lockscreen.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_0.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_1.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_2.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_3.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_4.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── nfc_24dp.xml │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── pip_ic_fullscreen_white.xml │ │ │ │ │ │ ├── pip_icon.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_off.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_on.xml │ │ │ │ │ │ ├── qs_camera_access_icon_off.xml │ │ │ │ │ │ ├── qs_camera_access_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_dnd_icon_off.xml │ │ │ │ │ │ ├── qs_dnd_icon_on.xml │ │ │ │ │ │ ├── qs_extra_dim_icon_off.xml │ │ │ │ │ │ ├── qs_extra_dim_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_mic_access_off.xml │ │ │ │ │ │ ├── qs_mic_access_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── qs_screen_record_icon_off.xml │ │ │ │ │ │ ├── qs_screen_record_icon_on.xml │ │ │ │ │ │ ├── stat_notify_image.xml │ │ │ │ │ │ ├── stat_notify_image_error.xml │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml │ │ │ │ │ │ ├── stat_sys_alarm.xml │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml │ │ │ │ │ │ ├── stat_sys_branded_vpn.xml │ │ │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ │ │ ├── stat_sys_cast.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_10.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml │ │ │ │ │ │ ├── stat_sys_data_saver.xml │ │ │ │ │ │ ├── stat_sys_dnd.xml │ │ │ │ │ │ ├── stat_sys_flashlight.xml │ │ │ │ │ │ ├── stat_sys_headset.xml │ │ │ │ │ │ ├── stat_sys_headset_mic.xml │ │ │ │ │ │ ├── stat_sys_hotspot.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ ├── stat_sys_network_traffic.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_down.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_down_arrow.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_up.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_up_arrow.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_updown.xml │ │ │ │ │ │ ├── stat_sys_nfc.xml │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml │ │ │ │ │ │ ├── stat_sys_sensors_off.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_in.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_inout.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_none.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_out.xml │ │ │ │ │ │ ├── stat_sys_vpn_ic.xml │ │ │ │ │ │ ├── status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── twotone_spatial_audio_24.xml │ │ │ │ │ │ └── volume_settings.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── IPSUI3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── auto_brightness_icon_off.xml │ │ │ │ │ │ ├── auto_brightness_icon_on.xml │ │ │ │ │ │ ├── bubble_ic_create_bubble.xml │ │ │ │ │ │ ├── bubble_ic_stop_bubble.xml │ │ │ │ │ │ ├── controls_icon.xml │ │ │ │ │ │ ├── ic_1x_mobiledata.xml │ │ │ │ │ │ ├── ic_3g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uc_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uw_mobiledata.xml │ │ │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ │ │ ├── ic_activity_down.xml │ │ │ │ │ │ ├── ic_activity_up.xml │ │ │ │ │ │ ├── ic_add.xml │ │ │ │ │ │ ├── ic_add_circle_qs.xml │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_android_logo.xml │ │ │ │ │ │ ├── ic_app_volume.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_avatar_guest_user.xml │ │ │ │ │ │ ├── ic_avatar_user.xml │ │ │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_audio.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_0.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_1.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_10.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_2.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_3.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_4.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_5.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_6.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_7.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_8.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_9.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_full.xml │ │ │ │ │ │ ├── ic_brightness_left.xml │ │ │ │ │ │ ├── ic_brightness_low.xml │ │ │ │ │ │ ├── ic_brightness_medium.xml │ │ │ │ │ │ ├── ic_brightness_right.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_camera_alt_24dp.xml │ │ │ │ │ │ ├── ic_camera_ssos.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ │ │ ├── ic_chevron_up.xml │ │ │ │ │ │ ├── ic_clear.xml │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ ├── ic_clock_black_24dp.xml │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_close_white_rounded.xml │ │ │ │ │ │ ├── ic_create_bubble.xml │ │ │ │ │ │ ├── ic_custom_seekbar_minus.xml │ │ │ │ │ │ ├── ic_custom_seekbar_plus.xml │ │ │ │ │ │ ├── ic_custom_seekbar_reset.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_dc_dimming_tile.xml │ │ │ │ │ │ ├── ic_demote_conversation.xml │ │ │ │ │ │ ├── ic_device_lock_off.xml │ │ │ │ │ │ ├── ic_device_lock_on.xml │ │ │ │ │ │ ├── ic_device_thermostat_24.xml │ │ │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ │ │ ├── ic_done_black_24dp.xml │ │ │ │ │ │ ├── ic_du_logo.xml │ │ │ │ │ │ ├── ic_e_mobiledata.xml │ │ │ │ │ │ ├── ic_emergency_star.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_fullscreen_white_24dp.xml │ │ │ │ │ │ ├── ic_g_mobiledata.xml │ │ │ │ │ │ ├── ic_gaming.xml │ │ │ │ │ │ ├── ic_h_mobiledata.xml │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_headphone.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_hp_center.xml │ │ │ │ │ │ ├── ic_hp_disabled.xml │ │ │ │ │ │ ├── ic_ime_switcher_default.xml │ │ │ │ │ │ ├── ic_ime_switcher_smartbar.xml │ │ │ │ │ │ ├── ic_ime_switcher_smartbar_dark.xml │ │ │ │ │ │ ├── ic_important.xml │ │ │ │ │ │ ├── ic_important_outline.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_instant_app_badge.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_keyboard_tab_36dp.xml │ │ │ │ │ │ ├── ic_killapp_tile.xml │ │ │ │ │ │ ├── ic_ksh_key_backspace.xml │ │ │ │ │ │ ├── ic_ksh_key_down.xml │ │ │ │ │ │ ├── ic_ksh_key_enter.xml │ │ │ │ │ │ ├── ic_ksh_key_left.xml │ │ │ │ │ │ ├── ic_ksh_key_meta.xml │ │ │ │ │ │ ├── ic_ksh_key_right.xml │ │ │ │ │ │ ├── ic_ksh_key_up.xml │ │ │ │ │ │ ├── ic_left.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ │ │ ├── ic_lock_face.xml │ │ │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ │ │ ├── ic_lock_lockdown.xml │ │ │ │ │ │ ├── ic_lock_onthego.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lock_restart_bootloader.xml │ │ │ │ │ │ ├── ic_lock_restart_recovery.xml │ │ │ │ │ │ ├── ic_lock_screenrecord.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_media_device.xml │ │ │ │ │ │ ├── ic_media_group_device.xml │ │ │ │ │ │ ├── ic_media_projection_permission.xml │ │ │ │ │ │ ├── ic_media_speaker_device.xml │ │ │ │ │ │ ├── ic_memory.xml │ │ │ │ │ │ ├── ic_menu.xml │ │ │ │ │ │ ├── ic_mic_26dp.xml │ │ │ │ │ │ ├── ic_mic_ssos.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_0.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_1.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_2.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_3.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_4.xml │ │ │ │ │ │ ├── ic_mono_toggle_off.xml │ │ │ │ │ │ ├── ic_mono_toggle_on.xml │ │ │ │ │ │ ├── ic_music_note.xml │ │ │ │ │ │ ├── ic_music_note_24dp.xml │ │ │ │ │ │ ├── ic_navbar_chevron_left.xml │ │ │ │ │ │ ├── ic_navbar_chevron_right.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_notification_block.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_open_in_new.xml │ │ │ │ │ │ ├── ic_phone_ssos.xml │ │ │ │ │ │ ├── ic_play_games.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_preferred_network.xml │ │ │ │ │ │ ├── ic_qs_ambient_display.xml │ │ │ │ │ │ ├── ic_qs_aod.xml │ │ │ │ │ │ ├── ic_qs_autobrightness.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_battery_saver_charging.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off_new_custom.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on_new_custom.xml │ │ │ │ │ │ ├── ic_qs_brightness_high.xml │ │ │ │ │ │ ├── ic_qs_brightness_low.xml │ │ │ │ │ │ ├── ic_qs_brightness_medium.xml │ │ │ │ │ │ ├── ic_qs_caffeine.xml │ │ │ │ │ │ ├── ic_qs_caffeine_on.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_cast_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_clear.xml │ │ │ │ │ │ ├── ic_qs_compass.xml │ │ │ │ │ │ ├── ic_qs_compass_off.xml │ │ │ │ │ │ ├── ic_qs_compass_on.xml │ │ │ │ │ │ ├── ic_qs_cpu_info.xml │ │ │ │ │ │ ├── ic_qs_cpuinfo.xml │ │ │ │ │ │ ├── ic_qs_data_switch_0.xml │ │ │ │ │ │ ├── ic_qs_data_switch_1.xml │ │ │ │ │ │ ├── ic_qs_data_switch_2.xml │ │ │ │ │ │ ├── ic_qs_dnd_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_dnd_on.xml │ │ │ │ │ │ ├── ic_qs_fps_info.xml │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml │ │ │ │ │ │ ├── ic_qs_heads_up.xml │ │ │ │ │ │ ├── ic_qs_heads_up_off.xml │ │ │ │ │ │ ├── ic_qs_heads_up_on.xml │ │ │ │ │ │ ├── ic_qs_hwkeys.xml │ │ │ │ │ │ ├── ic_qs_immersive_full.xml │ │ │ │ │ │ ├── ic_qs_immersive_navbar.xml │ │ │ │ │ │ ├── ic_qs_immersive_statusbar.xml │ │ │ │ │ │ ├── ic_qs_location_battery_saving.xml │ │ │ │ │ │ ├── ic_qs_location_high_accuracy.xml │ │ │ │ │ │ ├── ic_qs_lte.xml │ │ │ │ │ │ ├── ic_qs_media_pause.xml │ │ │ │ │ │ ├── ic_qs_media_play.xml │ │ │ │ │ │ ├── ic_qs_minus.xml │ │ │ │ │ │ ├── ic_qs_navbar.xml │ │ │ │ │ │ ├── ic_qs_network_adb_on.xml │ │ │ │ │ │ ├── ic_qs_nfc.xml │ │ │ │ │ │ ├── ic_qs_nfc_disabled.xml │ │ │ │ │ │ ├── ic_qs_nfc_enabled.xml │ │ │ │ │ │ ├── ic_qs_no_calling_sms.xml │ │ │ │ │ │ ├── ic_qs_no_internet_airplane.xml │ │ │ │ │ │ ├── ic_qs_no_internet_available.xml │ │ │ │ │ │ ├── ic_qs_no_internet_unavailable.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_onthego.xml │ │ │ │ │ │ ├── ic_qs_plus.xml │ │ │ │ │ │ ├── ic_qs_power_menu.xml │ │ │ │ │ │ ├── ic_qs_power_off.xml │ │ │ │ │ │ ├── ic_qs_profiles.xml │ │ │ │ │ │ ├── ic_qs_reader.xml │ │ │ │ │ │ ├── ic_qs_reboot.xml │ │ │ │ │ │ ├── ic_qs_reboot_recovery.xml │ │ │ │ │ │ ├── ic_qs_region_screenshot.xml │ │ │ │ │ │ ├── ic_qs_remove.xml │ │ │ │ │ │ ├── ic_qs_ringer_audible.xml │ │ │ │ │ │ ├── ic_qs_ringer_silent.xml │ │ │ │ │ │ ├── ic_qs_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_qs_screenrecord.xml │ │ │ │ │ │ ├── ic_qs_screenshot.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_signal_in.xml │ │ │ │ │ │ ├── ic_qs_signal_out.xml │ │ │ │ │ │ ├── ic_qs_sleep.xml │ │ │ │ │ │ ├── ic_qs_smart_pixels.xml │ │ │ │ │ │ ├── ic_qs_sound_search.xml │ │ │ │ │ │ ├── ic_qs_style.xml │ │ │ │ │ │ ├── ic_qs_style_list.xml │ │ │ │ │ │ ├── ic_qs_sync.xml │ │ │ │ │ │ ├── ic_qs_sync_off.xml │ │ │ │ │ │ ├── ic_qs_sync_on.xml │ │ │ │ │ │ ├── ic_qs_usb_tether.xml │ │ │ │ │ │ ├── ic_qs_volume_panel.xml │ │ │ │ │ │ ├── ic_qs_vpn.xml │ │ │ │ │ │ ├── ic_qs_wallet.xml │ │ │ │ │ │ ├── ic_qs_weather_default_off.xml │ │ │ │ │ │ ├── ic_qs_weather_default_off_white.xml │ │ │ │ │ │ ├── ic_qs_weather_default_on.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_quick_tap.xml │ │ │ │ │ │ ├── ic_reduce_bright_colors.xml │ │ │ │ │ │ ├── ic_remove.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_restart_advanced.xml │ │ │ │ │ │ ├── ic_restart_bootloader.xml │ │ │ │ │ │ ├── ic_restart_recovery.xml │ │ │ │ │ │ ├── ic_restart_system.xml │ │ │ │ │ │ ├── ic_restart_systemui.xml │ │ │ │ │ │ ├── ic_restart_ui.xml │ │ │ │ │ │ ├── ic_reverse_charging.xml │ │ │ │ │ │ ├── ic_right.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_ring_volume_off.xml │ │ │ │ │ │ ├── ic_screen_recorder.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_screenshot_edit.xml │ │ │ │ │ │ ├── ic_screenshot_lensss.xml │ │ │ │ │ │ ├── ic_screenshot_scroll.xml │ │ │ │ │ │ ├── ic_screenshot_scrollss.xml │ │ │ │ │ │ ├── ic_screenshot_share.xml │ │ │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ │ │ ├── ic_send.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ │ │ ├── ic_settings_backup_restore.xml │ │ │ │ │ │ ├── ic_settings_memory.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_signal_sensors.xml │ │ │ │ │ │ ├── ic_signal_strength_zero_bar_no_internet.xml │ │ │ │ │ │ ├── ic_smartphone.xml │ │ │ │ │ │ ├── ic_snooze.xml │ │ │ │ │ │ ├── ic_speaker_bluetooth.xml │ │ │ │ │ │ ├── ic_speaker_group_24dp.xml │ │ │ │ │ │ ├── ic_speaker_group_black_24dp.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_sr_clock.xml │ │ │ │ │ │ ├── ic_sr_large.xml │ │ │ │ │ │ ├── ic_sr_quality.xml │ │ │ │ │ │ ├── ic_sr_stopdot.xml │ │ │ │ │ │ ├── ic_stop_bubble.xml │ │ │ │ │ │ ├── ic_storage.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_sysbar_accessibility_button.xml │ │ │ │ │ │ ├── ic_sysbar_clear_notifications.xml │ │ │ │ │ │ ├── ic_system_update.xml │ │ │ │ │ │ ├── ic_touch.xml │ │ │ │ │ │ ├── ic_unlock.xml │ │ │ │ │ │ ├── ic_unlocked.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_accessibility.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_bt.xml │ │ │ │ │ │ ├── ic_volume_media_bt_mute.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_notification.xml │ │ │ │ │ │ ├── ic_volume_notification_muted.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_remote.xml │ │ │ │ │ │ ├── ic_volume_remote_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── ic_wallet_lockscreen.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_0.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_1.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_2.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_3.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_4.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── nfc_24dp.xml │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── pip_ic_fullscreen_white.xml │ │ │ │ │ │ ├── pip_icon.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_off.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_on.xml │ │ │ │ │ │ ├── qs_camera_access_icon_off.xml │ │ │ │ │ │ ├── qs_camera_access_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_dnd_icon_off.xml │ │ │ │ │ │ ├── qs_dnd_icon_on.xml │ │ │ │ │ │ ├── qs_extra_dim_icon_off.xml │ │ │ │ │ │ ├── qs_extra_dim_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_mic_access_off.xml │ │ │ │ │ │ ├── qs_mic_access_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── qs_screen_record_icon_off.xml │ │ │ │ │ │ ├── qs_screen_record_icon_on.xml │ │ │ │ │ │ ├── stat_notify_image.xml │ │ │ │ │ │ ├── stat_notify_image_error.xml │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml │ │ │ │ │ │ ├── stat_sys_alarm.xml │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml │ │ │ │ │ │ ├── stat_sys_branded_vpn.xml │ │ │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ │ │ ├── stat_sys_cast.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_10.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml │ │ │ │ │ │ ├── stat_sys_data_saver.xml │ │ │ │ │ │ ├── stat_sys_dnd.xml │ │ │ │ │ │ ├── stat_sys_flashlight.xml │ │ │ │ │ │ ├── stat_sys_headset.xml │ │ │ │ │ │ ├── stat_sys_headset_mic.xml │ │ │ │ │ │ ├── stat_sys_hotspot.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ ├── stat_sys_network_traffic.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_down.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_down_arrow.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_up.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_up_arrow.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_updown.xml │ │ │ │ │ │ ├── stat_sys_nfc.xml │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml │ │ │ │ │ │ ├── stat_sys_sensors_off.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_in.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_inout.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_none.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_out.xml │ │ │ │ │ │ ├── stat_sys_vpn_ic.xml │ │ │ │ │ │ ├── status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── twotone_spatial_audio_24.xml │ │ │ │ │ │ └── volume_settings.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── IPSUI4 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── auto_brightness_icon_off.xml │ │ │ │ │ │ ├── auto_brightness_icon_on.xml │ │ │ │ │ │ ├── bubble_ic_create_bubble.xml │ │ │ │ │ │ ├── bubble_ic_stop_bubble.xml │ │ │ │ │ │ ├── controls_icon.xml │ │ │ │ │ │ ├── ic_1x_mobiledata.xml │ │ │ │ │ │ ├── ic_3g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_mobiledata.xml │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uc_mobiledata.xml │ │ │ │ │ │ ├── ic_5g_uw_mobiledata.xml │ │ │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ │ │ ├── ic_activity_down.xml │ │ │ │ │ │ ├── ic_activity_up.xml │ │ │ │ │ │ ├── ic_add.xml │ │ │ │ │ │ ├── ic_add_circle_qs.xml │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_android_logo.xml │ │ │ │ │ │ ├── ic_app_volume.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_avatar_guest_user.xml │ │ │ │ │ │ ├── ic_avatar_user.xml │ │ │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ │ │ ├── ic_bluetooth_audio.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_0.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_1.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_10.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_2.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_3.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_4.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_5.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_6.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_7.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_8.xml │ │ │ │ │ │ ├── ic_bluetooth_battery_9.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_full.xml │ │ │ │ │ │ ├── ic_brightness_left.xml │ │ │ │ │ │ ├── ic_brightness_low.xml │ │ │ │ │ │ ├── ic_brightness_medium.xml │ │ │ │ │ │ ├── ic_brightness_right.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_camera_alt_24dp.xml │ │ │ │ │ │ ├── ic_camera_ssos.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ │ │ ├── ic_chevron_up.xml │ │ │ │ │ │ ├── ic_clear.xml │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ ├── ic_clock_black_24dp.xml │ │ │ │ │ │ ├── ic_close.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_close_white_rounded.xml │ │ │ │ │ │ ├── ic_create_bubble.xml │ │ │ │ │ │ ├── ic_custom_seekbar_minus.xml │ │ │ │ │ │ ├── ic_custom_seekbar_plus.xml │ │ │ │ │ │ ├── ic_custom_seekbar_reset.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_dc_dimming_tile.xml │ │ │ │ │ │ ├── ic_demote_conversation.xml │ │ │ │ │ │ ├── ic_device_lock_off.xml │ │ │ │ │ │ ├── ic_device_lock_on.xml │ │ │ │ │ │ ├── ic_device_thermostat_24.xml │ │ │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ │ │ ├── ic_done_black_24dp.xml │ │ │ │ │ │ ├── ic_du_logo.xml │ │ │ │ │ │ ├── ic_e_mobiledata.xml │ │ │ │ │ │ ├── ic_emergency_star.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_fullscreen_white_24dp.xml │ │ │ │ │ │ ├── ic_g_mobiledata.xml │ │ │ │ │ │ ├── ic_gaming.xml │ │ │ │ │ │ ├── ic_h_mobiledata.xml │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_hd2_volte.xml │ │ │ │ │ │ ├── ic_hd_volte.xml │ │ │ │ │ │ ├── ic_headphone.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_hp_center.xml │ │ │ │ │ │ ├── ic_hp_disabled.xml │ │ │ │ │ │ ├── ic_ime_switcher_default.xml │ │ │ │ │ │ ├── ic_ime_switcher_smartbar.xml │ │ │ │ │ │ ├── ic_ime_switcher_smartbar_dark.xml │ │ │ │ │ │ ├── ic_important.xml │ │ │ │ │ │ ├── ic_important_outline.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ │ │ ├── ic_instant_app_badge.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_keyboard_tab_36dp.xml │ │ │ │ │ │ ├── ic_killapp_tile.xml │ │ │ │ │ │ ├── ic_ksh_key_backspace.xml │ │ │ │ │ │ ├── ic_ksh_key_down.xml │ │ │ │ │ │ ├── ic_ksh_key_enter.xml │ │ │ │ │ │ ├── ic_ksh_key_left.xml │ │ │ │ │ │ ├── ic_ksh_key_meta.xml │ │ │ │ │ │ ├── ic_ksh_key_right.xml │ │ │ │ │ │ ├── ic_ksh_key_up.xml │ │ │ │ │ │ ├── ic_left.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lock.xml │ │ │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ │ │ ├── ic_lock_face.xml │ │ │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ │ │ ├── ic_lock_lockdown.xml │ │ │ │ │ │ ├── ic_lock_onthego.xml │ │ │ │ │ │ ├── ic_lock_open.xml │ │ │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ │ │ ├── ic_lock_restart_bootloader.xml │ │ │ │ │ │ ├── ic_lock_restart_recovery.xml │ │ │ │ │ │ ├── ic_lock_screenrecord.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml │ │ │ │ │ │ ├── ic_media_device.xml │ │ │ │ │ │ ├── ic_media_group_device.xml │ │ │ │ │ │ ├── ic_media_projection_permission.xml │ │ │ │ │ │ ├── ic_media_speaker_device.xml │ │ │ │ │ │ ├── ic_memory.xml │ │ │ │ │ │ ├── ic_menu.xml │ │ │ │ │ │ ├── ic_mic_26dp.xml │ │ │ │ │ │ ├── ic_mic_ssos.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_0.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_1.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_2.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_3.xml │ │ │ │ │ │ ├── ic_mobile_call_strength_4.xml │ │ │ │ │ │ ├── ic_mono_toggle_off.xml │ │ │ │ │ │ ├── ic_mono_toggle_on.xml │ │ │ │ │ │ ├── ic_music_note.xml │ │ │ │ │ │ ├── ic_music_note_24dp.xml │ │ │ │ │ │ ├── ic_navbar_chevron_left.xml │ │ │ │ │ │ ├── ic_navbar_chevron_right.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_notification_block.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_open_in_new.xml │ │ │ │ │ │ ├── ic_phone_ssos.xml │ │ │ │ │ │ ├── ic_play_games.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_preferred_network.xml │ │ │ │ │ │ ├── ic_qs_ambient_display.xml │ │ │ │ │ │ ├── ic_qs_aod.xml │ │ │ │ │ │ ├── ic_qs_autobrightness.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_battery_saver_charging.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off_new_custom.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on_new.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on_new_custom.xml │ │ │ │ │ │ ├── ic_qs_brightness_high.xml │ │ │ │ │ │ ├── ic_qs_brightness_low.xml │ │ │ │ │ │ ├── ic_qs_brightness_medium.xml │ │ │ │ │ │ ├── ic_qs_caffeine.xml │ │ │ │ │ │ ├── ic_qs_caffeine_on.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_cast_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_clear.xml │ │ │ │ │ │ ├── ic_qs_compass.xml │ │ │ │ │ │ ├── ic_qs_compass_off.xml │ │ │ │ │ │ ├── ic_qs_compass_on.xml │ │ │ │ │ │ ├── ic_qs_cpu_info.xml │ │ │ │ │ │ ├── ic_qs_cpuinfo.xml │ │ │ │ │ │ ├── ic_qs_data_switch_0.xml │ │ │ │ │ │ ├── ic_qs_data_switch_1.xml │ │ │ │ │ │ ├── ic_qs_data_switch_2.xml │ │ │ │ │ │ ├── ic_qs_dnd_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_dnd_on.xml │ │ │ │ │ │ ├── ic_qs_fps_info.xml │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml │ │ │ │ │ │ ├── ic_qs_heads_up.xml │ │ │ │ │ │ ├── ic_qs_heads_up_off.xml │ │ │ │ │ │ ├── ic_qs_heads_up_on.xml │ │ │ │ │ │ ├── ic_qs_hwkeys.xml │ │ │ │ │ │ ├── ic_qs_immersive_full.xml │ │ │ │ │ │ ├── ic_qs_immersive_navbar.xml │ │ │ │ │ │ ├── ic_qs_immersive_statusbar.xml │ │ │ │ │ │ ├── ic_qs_location_battery_saving.xml │ │ │ │ │ │ ├── ic_qs_location_high_accuracy.xml │ │ │ │ │ │ ├── ic_qs_lte.xml │ │ │ │ │ │ ├── ic_qs_media_pause.xml │ │ │ │ │ │ ├── ic_qs_media_play.xml │ │ │ │ │ │ ├── ic_qs_minus.xml │ │ │ │ │ │ ├── ic_qs_navbar.xml │ │ │ │ │ │ ├── ic_qs_network_adb_on.xml │ │ │ │ │ │ ├── ic_qs_nfc.xml │ │ │ │ │ │ ├── ic_qs_nfc_disabled.xml │ │ │ │ │ │ ├── ic_qs_nfc_enabled.xml │ │ │ │ │ │ ├── ic_qs_no_calling_sms.xml │ │ │ │ │ │ ├── ic_qs_no_internet_airplane.xml │ │ │ │ │ │ ├── ic_qs_no_internet_available.xml │ │ │ │ │ │ ├── ic_qs_no_internet_unavailable.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_onthego.xml │ │ │ │ │ │ ├── ic_qs_plus.xml │ │ │ │ │ │ ├── ic_qs_power_menu.xml │ │ │ │ │ │ ├── ic_qs_poweroff.xml │ │ │ │ │ │ ├── ic_qs_profiles.xml │ │ │ │ │ │ ├── ic_qs_reader.xml │ │ │ │ │ │ ├── ic_qs_reboot.xml │ │ │ │ │ │ ├── ic_qs_reboot_recovery.xml │ │ │ │ │ │ ├── ic_qs_region_screenshot.xml │ │ │ │ │ │ ├── ic_qs_remove.xml │ │ │ │ │ │ ├── ic_qs_ringer_audible.xml │ │ │ │ │ │ ├── ic_qs_ringer_silent.xml │ │ │ │ │ │ ├── ic_qs_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_qs_screenrecord.xml │ │ │ │ │ │ ├── ic_qs_screenshot.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_signal_in.xml │ │ │ │ │ │ ├── ic_qs_signal_out.xml │ │ │ │ │ │ ├── ic_qs_sleep.xml │ │ │ │ │ │ ├── ic_qs_smart_pixels.xml │ │ │ │ │ │ ├── ic_qs_sound_search.xml │ │ │ │ │ │ ├── ic_qs_style.xml │ │ │ │ │ │ ├── ic_qs_style_list.xml │ │ │ │ │ │ ├── ic_qs_sync.xml │ │ │ │ │ │ ├── ic_qs_sync_off.xml │ │ │ │ │ │ ├── ic_qs_sync_on.xml │ │ │ │ │ │ ├── ic_qs_usb_tether.xml │ │ │ │ │ │ ├── ic_qs_volume_panel.xml │ │ │ │ │ │ ├── ic_qs_vpn.xml │ │ │ │ │ │ ├── ic_qs_wallet.xml │ │ │ │ │ │ ├── ic_qs_weather_default_off.xml │ │ │ │ │ │ ├── ic_qs_weather_default_off_white.xml │ │ │ │ │ │ ├── ic_qs_weather_default_on.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_quick_tap.xml │ │ │ │ │ │ ├── ic_reduce_bright_colors.xml │ │ │ │ │ │ ├── ic_remove.xml │ │ │ │ │ │ ├── ic_restart.xml │ │ │ │ │ │ ├── ic_restart_advanced.xml │ │ │ │ │ │ ├── ic_restart_bootloader.xml │ │ │ │ │ │ ├── ic_restart_recovery.xml │ │ │ │ │ │ ├── ic_restart_system.xml │ │ │ │ │ │ ├── ic_restart_systemui.xml │ │ │ │ │ │ ├── ic_restart_ui.xml │ │ │ │ │ │ ├── ic_reverse_charging.xml │ │ │ │ │ │ ├── ic_right.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_ring_volume_off.xml │ │ │ │ │ │ ├── ic_screen_recorder.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_screenshot_edit.xml │ │ │ │ │ │ ├── ic_screenshot_lensss.xml │ │ │ │ │ │ ├── ic_screenshot_scroll.xml │ │ │ │ │ │ ├── ic_screenshot_scrollss.xml │ │ │ │ │ │ ├── ic_screenshot_share.xml │ │ │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ │ │ ├── ic_send.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ │ │ ├── ic_settings_backup_restore.xml │ │ │ │ │ │ ├── ic_settings_memory.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_show_x_wifi_signal_4.xml │ │ │ │ │ │ ├── ic_signal_sensors.xml │ │ │ │ │ │ ├── ic_signal_strength_zero_bar_no_internet.xml │ │ │ │ │ │ ├── ic_smartphone.xml │ │ │ │ │ │ ├── ic_snooze.xml │ │ │ │ │ │ ├── ic_speaker_bluetooth.xml │ │ │ │ │ │ ├── ic_speaker_group_24dp.xml │ │ │ │ │ │ ├── ic_speaker_group_black_24dp.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_sr_clock.xml │ │ │ │ │ │ ├── ic_sr_large.xml │ │ │ │ │ │ ├── ic_sr_quality.xml │ │ │ │ │ │ ├── ic_sr_stopdot.xml │ │ │ │ │ │ ├── ic_stop_bubble.xml │ │ │ │ │ │ ├── ic_storage.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_sysbar_accessibility_button.xml │ │ │ │ │ │ ├── ic_sysbar_back.xml │ │ │ │ │ │ ├── ic_sysbar_back2.xml │ │ │ │ │ │ ├── ic_sysbar_back_hw.xml │ │ │ │ │ │ ├── ic_sysbar_back_quick_step.xml │ │ │ │ │ │ ├── ic_sysbar_clear_notifications.xml │ │ │ │ │ │ ├── ic_sysbar_home.xml │ │ │ │ │ │ ├── ic_sysbar_home2.xml │ │ │ │ │ │ ├── ic_sysbar_home_hw.xml │ │ │ │ │ │ ├── ic_sysbar_home_quick_step.xml │ │ │ │ │ │ ├── ic_sysbar_recent.xml │ │ │ │ │ │ ├── ic_sysbar_recent2.xml │ │ │ │ │ │ ├── ic_sysbar_recent_hw.xml │ │ │ │ │ │ ├── ic_system_update.xml │ │ │ │ │ │ ├── ic_touch.xml │ │ │ │ │ │ ├── ic_unlock.xml │ │ │ │ │ │ ├── ic_unlocked.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volte.xml │ │ │ │ │ │ ├── ic_volte1.xml │ │ │ │ │ │ ├── ic_volte2.xml │ │ │ │ │ │ ├── ic_volte3.xml │ │ │ │ │ │ ├── ic_volte4.xml │ │ │ │ │ │ ├── ic_volte5.xml │ │ │ │ │ │ ├── ic_volte6.xml │ │ │ │ │ │ ├── ic_volte7.xml │ │ │ │ │ │ ├── ic_volte8.xml │ │ │ │ │ │ ├── ic_volte9.xml │ │ │ │ │ │ ├── ic_volte_emui.xml │ │ │ │ │ │ ├── ic_volte_miui.xml │ │ │ │ │ │ ├── ic_volte_no_voice.xml │ │ │ │ │ │ ├── ic_volume_accessibility.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_bt.xml │ │ │ │ │ │ ├── ic_volume_media_bt_mute.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_notification.xml │ │ │ │ │ │ ├── ic_volume_notification_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_remote.xml │ │ │ │ │ │ ├── ic_volume_remote_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── ic_wallet_lockscreen.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_0.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_1.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_2.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_3.xml │ │ │ │ │ │ ├── ic_wifi_call_strength_4.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── nfc_24dp.xml │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── pip_ic_fullscreen_white.xml │ │ │ │ │ │ ├── pip_icon.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_off.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_on.xml │ │ │ │ │ │ ├── qs_camera_access_icon_off.xml │ │ │ │ │ │ ├── qs_camera_access_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_dnd_icon_off.xml │ │ │ │ │ │ ├── qs_dnd_icon_on.xml │ │ │ │ │ │ ├── qs_extra_dim_icon_off.xml │ │ │ │ │ │ ├── qs_extra_dim_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_mic_access_off.xml │ │ │ │ │ │ ├── qs_mic_access_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── qs_screen_record_icon_off.xml │ │ │ │ │ │ ├── qs_screen_record_icon_on.xml │ │ │ │ │ │ ├── stat_notify_image.xml │ │ │ │ │ │ ├── stat_notify_image_error.xml │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml │ │ │ │ │ │ ├── stat_sys_alarm.xml │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml │ │ │ │ │ │ ├── stat_sys_branded_vpn.xml │ │ │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ │ │ ├── stat_sys_cast.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_10.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml │ │ │ │ │ │ ├── stat_sys_data_saver.xml │ │ │ │ │ │ ├── stat_sys_dnd.xml │ │ │ │ │ │ ├── stat_sys_flashlight.xml │ │ │ │ │ │ ├── stat_sys_headset.xml │ │ │ │ │ │ ├── stat_sys_headset_mic.xml │ │ │ │ │ │ ├── stat_sys_hotspot.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ ├── stat_sys_network_traffic.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_down.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_down_arrow.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_up.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_up_arrow.xml │ │ │ │ │ │ ├── stat_sys_network_traffic_updown.xml │ │ │ │ │ │ ├── stat_sys_nfc.xml │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml │ │ │ │ │ │ ├── stat_sys_sensors_off.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_in.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_inout.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_none.xml │ │ │ │ │ │ ├── stat_sys_signal_stacked_out.xml │ │ │ │ │ │ ├── stat_sys_volte.xml │ │ │ │ │ │ ├── stat_sys_volte_slot1.xml │ │ │ │ │ │ ├── stat_sys_volte_slot12.xml │ │ │ │ │ │ ├── stat_sys_volte_slot2.xml │ │ │ │ │ │ ├── stat_sys_vpn_ic.xml │ │ │ │ │ │ ├── status_bar_notification_section_header_clear_btn.xml │ │ │ │ │ │ ├── twotone_spatial_audio_24.xml │ │ │ │ │ │ ├── volte.xml │ │ │ │ │ │ └── volume_settings.xml │ │ │ │ ├── IPSUI5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ │ │ ├── ic_camera_ssos.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_memory.xml │ │ │ │ │ │ ├── ic_mic_ssos.xml │ │ │ │ │ │ ├── ic_no_disturb.xml │ │ │ │ │ │ ├── ic_phone_ssos.xml │ │ │ │ │ │ ├── ic_qs_alarm.xml │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── ic_qs_brightness_high.xml │ │ │ │ │ │ ├── ic_qs_brightness_low.xml │ │ │ │ │ │ ├── ic_qs_brightness_medium.xml │ │ │ │ │ │ ├── ic_qs_caffeine.xml │ │ │ │ │ │ ├── ic_qs_caffeine_on.xml │ │ │ │ │ │ ├── ic_qs_cast_detail_empty.xml │ │ │ │ │ │ ├── ic_qs_cast_off.xml │ │ │ │ │ │ ├── ic_qs_cast_on.xml │ │ │ │ │ │ ├── ic_qs_cellular.xml │ │ │ │ │ │ ├── ic_qs_cpuinfo.xml │ │ │ │ │ │ ├── ic_qs_data_switch_1.xml │ │ │ │ │ │ ├── ic_qs_data_switch_2.xml │ │ │ │ │ │ ├── ic_qs_dnd_on.xml │ │ │ │ │ │ ├── ic_qs_location_battery_saving.xml │ │ │ │ │ │ ├── ic_qs_location_high_accuracy.xml │ │ │ │ │ │ ├── ic_qs_location_sensors_only.xml │ │ │ │ │ │ ├── ic_qs_nfc.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_ringer_audible.xml │ │ │ │ │ │ ├── ic_qs_ringer_silent.xml │ │ │ │ │ │ ├── ic_qs_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_qs_screenrecord.xml │ │ │ │ │ │ ├── ic_qs_screenshot.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_sleep.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_screen_recorder.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_settings_memory.xml │ │ │ │ │ │ ├── ic_signal_airplane.xml │ │ │ │ │ │ ├── ic_signal_flashlight.xml │ │ │ │ │ │ ├── ic_signal_location.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_accessibility.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_bt.xml │ │ │ │ │ │ ├── ic_volume_media_bt_mute.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_system.xml │ │ │ │ │ │ ├── ic_volume_system_mute.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_off.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_dnd_icon_off.xml │ │ │ │ │ │ ├── qs_dnd_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── qs_screen_record_icon_off.xml │ │ │ │ │ │ ├── qs_screen_record_icon_on.xml │ │ │ │ │ │ ├── stat_notify_image.xml │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml │ │ │ │ │ │ ├── stat_sys_alarm.xml │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml │ │ │ │ │ │ ├── stat_sys_branded_vpn.xml │ │ │ │ │ │ ├── stat_sys_cast.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml │ │ │ │ │ │ ├── stat_sys_data_saver.xml │ │ │ │ │ │ ├── stat_sys_data_saver_vec.xml │ │ │ │ │ │ ├── stat_sys_dnd.xml │ │ │ │ │ │ ├── stat_sys_dnd_priority.xml │ │ │ │ │ │ ├── stat_sys_dnd_total_silence.xml │ │ │ │ │ │ ├── stat_sys_dnd_vec.xml │ │ │ │ │ │ ├── stat_sys_flashlight.xml │ │ │ │ │ │ ├── stat_sys_hotspot.xml │ │ │ │ │ │ ├── stat_sys_location.xml │ │ │ │ │ │ ├── stat_sys_nfc.xml │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml │ │ │ │ │ │ ├── stat_sys_volte.xml │ │ │ │ │ │ ├── stat_sys_volte_slot1.xml │ │ │ │ │ │ ├── stat_sys_volte_slot12.xml │ │ │ │ │ │ ├── stat_sys_volte_slot2.xml │ │ │ │ │ │ ├── stat_sys_vowifi.xml │ │ │ │ │ │ ├── stat_sys_vowifi_slot1.xml │ │ │ │ │ │ ├── stat_sys_vowifi_slot12.xml │ │ │ │ │ │ ├── stat_sys_vowifi_slot2.xml │ │ │ │ │ │ └── stat_sys_vpn_ic.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── colors.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── IPSUI6 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_notification.xml │ │ │ │ │ │ ├── ic_volume_notification_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_off.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ └── stat_sys_vpn_ic.xml │ │ │ │ ├── IPSUI7 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_notification.xml │ │ │ │ │ │ ├── ic_volume_notification_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_off.xml │ │ │ │ │ │ ├── qs_bluetooth_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ └── stat_sys_vpn_ic.xml │ │ │ │ ├── IPSUI8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── lock_lock.xml │ │ │ │ │ │ ├── lock_scanning.xml │ │ │ │ │ │ ├── lock_to_error.xml │ │ │ │ │ │ └── lock_unlock.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ │ │ ├── ic_arrow_forward.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ │ │ ├── ic_camera.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_close_white.xml │ │ │ │ │ │ ├── ic_data_saver.xml │ │ │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_headset.xml │ │ │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_info.xml │ │ │ │ │ │ ├── ic_info_outline.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ │ │ ├── ic_power_low.xml │ │ │ │ │ │ ├── ic_power_saver.xml │ │ │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_qs_signal_0.xml │ │ │ │ │ │ ├── ic_qs_signal_1.xml │ │ │ │ │ │ ├── ic_qs_signal_2.xml │ │ │ │ │ │ ├── ic_qs_signal_3.xml │ │ │ │ │ │ ├── ic_qs_signal_4.xml │ │ │ │ │ │ ├── ic_qs_signal_disabled.xml │ │ │ │ │ │ ├── ic_qs_signal_full_0.xml │ │ │ │ │ │ ├── ic_qs_signal_full_1.xml │ │ │ │ │ │ ├── ic_qs_signal_full_2.xml │ │ │ │ │ │ ├── ic_qs_signal_full_3.xml │ │ │ │ │ │ ├── ic_qs_signal_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_0.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_1.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_2.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_3.xml │ │ │ │ │ │ ├── ic_qs_wifi_full_4.xml │ │ │ │ │ │ ├── ic_qs_wifi_no_network.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_screenrecord.xml │ │ │ │ │ │ ├── ic_screenshot.xml │ │ │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_collapse_animation.xml │ │ │ │ │ │ ├── ic_volume_expand_animation.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_off.xml │ │ │ │ │ │ ├── qs_battery_saver_icon_on.xml │ │ │ │ │ │ ├── qs_data_saver_icon_off.xml │ │ │ │ │ │ ├── qs_data_saver_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_off.xml │ │ │ │ │ │ ├── qs_invert_colors_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ │ │ └── stat_sys_vpn_ic.xml │ │ │ │ ├── IPSUI9 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_alarm.xml │ │ │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ │ │ ├── ic_camera_alt_24dp.xml │ │ │ │ │ │ ├── ic_cast.xml │ │ │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ │ │ ├── ic_flashlight_off.xml │ │ │ │ │ │ ├── ic_flashlight_on.xml │ │ │ │ │ │ ├── ic_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot.xml │ │ │ │ │ │ ├── ic_internet_hotspot_disabled.xml │ │ │ │ │ │ ├── ic_location.xml │ │ │ │ │ │ ├── ic_mic_26dp.xml │ │ │ │ │ │ ├── ic_no_disturb.xml │ │ │ │ │ │ ├── ic_phone.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_off.xml │ │ │ │ │ │ ├── ic_qs_brightness_auto_on.xml │ │ │ │ │ │ ├── ic_qs_data_switch_1.xml │ │ │ │ │ │ ├── ic_qs_data_switch_2.xml │ │ │ │ │ │ ├── ic_qs_nfc.xml │ │ │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ │ │ ├── ic_ring_volume.xml │ │ │ │ │ │ ├── ic_settings.xml │ │ │ │ │ │ ├── ic_speaker_mute.xml │ │ │ │ │ │ ├── ic_speaker_on.xml │ │ │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ │ │ ├── ic_vol_mute.xml │ │ │ │ │ │ ├── ic_vol_unmute.xml │ │ │ │ │ │ ├── ic_volume_accessibility.xml │ │ │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ │ │ ├── ic_volume_media.xml │ │ │ │ │ │ ├── ic_volume_media_bt.xml │ │ │ │ │ │ ├── ic_volume_media_bt_mute.xml │ │ │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ │ │ ├── ic_volume_off.xml │ │ │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ │ │ ├── ic_volume_system.xml │ │ │ │ │ │ ├── ic_volume_system_mute.xml │ │ │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ │ │ ├── media_output_icon_volume.xml │ │ │ │ │ │ ├── media_output_icon_volume_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_off.xml │ │ │ │ │ │ ├── qs_airplane_icon_on.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_off.xml │ │ │ │ │ │ ├── qs_auto_rotate_icon_on.xml │ │ │ │ │ │ ├── qs_flashlight_icon_off.xml │ │ │ │ │ │ ├── qs_flashlight_icon_on.xml │ │ │ │ │ │ ├── qs_hotspot_icon_off.xml │ │ │ │ │ │ ├── qs_hotspot_icon_on.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_off.xml │ │ │ │ │ │ ├── qs_light_dark_theme_icon_on.xml │ │ │ │ │ │ ├── qs_location_icon_off.xml │ │ │ │ │ │ ├── qs_location_icon_on.xml │ │ │ │ │ │ ├── qs_nightlight_icon_off.xml │ │ │ │ │ │ ├── qs_nightlight_icon_on.xml │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml │ │ │ │ │ │ ├── stat_sys_dnd.xml │ │ │ │ │ │ ├── stat_sys_nfc.xml │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml │ │ │ │ │ │ └── stat_sys_ringer_vibrate.xml │ │ │ │ ├── MPA │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_media_button_background.xml │ │ │ │ │ │ └── qs_media_icon_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── MPB │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_media_button_background.xml │ │ │ │ │ │ └── qs_media_icon_background.xml │ │ │ │ │ │ └── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── MPIP01 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_media_next.xml │ │ │ │ │ │ ├── ic_media_pause.xml │ │ │ │ │ │ ├── ic_media_play.xml │ │ │ │ │ │ └── ic_media_prev.xml │ │ │ │ ├── MPIP02 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_media_next.xml │ │ │ │ │ │ ├── ic_media_pause.xml │ │ │ │ │ │ ├── ic_media_play.xml │ │ │ │ │ │ └── ic_media_prev.xml │ │ │ │ ├── MPIP03 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_media_next.xml │ │ │ │ │ │ ├── ic_media_pause.xml │ │ │ │ │ │ ├── ic_media_play.xml │ │ │ │ │ │ └── ic_media_prev.xml │ │ │ │ ├── MPS │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_media_button_background.xml │ │ │ │ │ │ └── qs_media_icon_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── NBMonetPill │ │ │ │ │ └── res │ │ │ │ │ │ └── color │ │ │ │ │ │ ├── navigation_bar_home_handle_dark_color.xml │ │ │ │ │ │ └── navigation_bar_home_handle_light_color.xml │ │ │ │ ├── NFN1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN12 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN13 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN14 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN15 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN16 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN17 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN18 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN19 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN20 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFN9 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP12 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP13 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP14 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP15 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP16 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP17 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── color_background_alpha_dark.xml │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP18 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP19 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP20 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── NFP9 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── global_actions_lite_background.xml │ │ │ │ │ │ ├── global_actions_lite_button.xml │ │ │ │ │ │ ├── notif_footer_btn_background.xml │ │ │ │ │ │ ├── notification_material_bg.xml │ │ │ │ │ │ └── notification_material_bg_monet.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── bools.xml │ │ │ │ │ │ └── dimens.xml │ │ │ │ ├── PCBG │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── privacy_chip_bg.xml │ │ │ │ │ │ └── statusbar_privacy_chip_bg.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSC │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── settingslib_progress_horizontal.xml │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── bottom_sheet_button_background.xml │ │ │ │ │ │ ├── qs_dialog_btn_filled.xml │ │ │ │ │ │ ├── settingslib_btn_colored_material.xml │ │ │ │ │ │ ├── settingslib_progress_horizontal.xml │ │ │ │ │ │ ├── settingslib_switch_bar_bg_disabled.xml │ │ │ │ │ │ ├── settingslib_switch_bar_bg_off.xml │ │ │ │ │ │ └── settingslib_switch_bar_bg_on.xml │ │ │ │ ├── QSNT1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSNT2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSNT3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSNT4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSPT1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSPT2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSPT3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSPT4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── surface_header_dark_sysui.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── ic_qstile_reflect_disabled_iconify.xml │ │ │ │ │ │ ├── ic_qstile_reflect_iconify.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_qstile_reflect_disabled_iconify.xml │ │ │ │ │ │ ├── ic_qstile_reflect_iconify.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── ic_qstile_reflect_disabled_iconify.xml │ │ │ │ │ │ ├── ic_qstile_reflect_iconify.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_qstile_reflect_disabled_iconify.xml │ │ │ │ │ │ ├── ic_qstile_reflect_iconify.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN12 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN13 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN14 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN15 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN16 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN17 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ ├── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ ├── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN18 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night-v8 │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ └── qs_security_footer_background.xml │ │ │ │ │ │ ├── drawable-v8 │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ └── qs_security_footer_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN19 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN20 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ ├── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ ├── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── surface_header_dark_sysui.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── surface_header_dark_sysui.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── iconify_arrow_bg.xml │ │ │ │ │ │ ├── iconify_arrow_bgd.xml │ │ │ │ │ │ ├── iconify_arrow_fg.xml │ │ │ │ │ │ ├── iconify_arrow_fgd.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── iconify_arrow_bg.xml │ │ │ │ │ │ ├── iconify_arrow_bgd.xml │ │ │ │ │ │ ├── iconify_arrow_fg.xml │ │ │ │ │ │ ├── iconify_arrow_fgd.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSN9 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP1 │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ └── shade_disabled.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP10 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── ic_qstile_reflect_disabled_iconify.xml │ │ │ │ │ │ ├── ic_qstile_reflect_iconify.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_qstile_reflect_disabled_iconify.xml │ │ │ │ │ │ ├── ic_qstile_reflect_iconify.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP11 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── ic_qstile_reflect_disabled_iconify.xml │ │ │ │ │ │ ├── ic_qstile_reflect_iconify.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── ic_qstile_reflect_disabled_iconify.xml │ │ │ │ │ │ ├── ic_qstile_reflect_iconify.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP12 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP13 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP14 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP15 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP16 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP17 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ ├── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ ├── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP18 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night-v8 │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ └── qs_security_footer_background.xml │ │ │ │ │ │ ├── drawable-v8 │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ └── qs_security_footer_background.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP19 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP20 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ ├── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── color_background_alpha.xml │ │ │ │ │ │ ├── holo_blue_dark_alpha.xml │ │ │ │ │ │ ├── holo_blue_light_alpha.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP4 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP5 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP6 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP7 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP8 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── iconify_arrow_bg.xml │ │ │ │ │ │ ├── iconify_arrow_bgd.xml │ │ │ │ │ │ ├── iconify_arrow_fg.xml │ │ │ │ │ │ ├── iconify_arrow_fgd.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── iconify_arrow_bg.xml │ │ │ │ │ │ ├── iconify_arrow_bgd.xml │ │ │ │ │ │ ├── iconify_arrow_fg.xml │ │ │ │ │ │ ├── iconify_arrow_fgd.xml │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── QSSP9 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── qs_footer_action_chip_background.xml │ │ │ │ │ │ ├── qs_footer_action_circle.xml │ │ │ │ │ │ ├── qs_footer_action_circle_color.xml │ │ │ │ │ │ ├── qs_footer_actions_background.xml │ │ │ │ │ │ ├── qs_security_footer_background.xml │ │ │ │ │ │ └── qs_tile_background_shape.xml │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── iconify.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── iconify.xml │ │ │ │ ├── SBTint │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── colors.xml │ │ │ │ ├── SWITCH2 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── settingslib_switch_thumb.xml │ │ │ │ │ │ └── settingslib_switch_track.xml │ │ │ │ └── cheatsheet │ │ │ ├── com.awedea.nyx │ │ │ │ ├── MPIP31 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── cross.xml │ │ │ │ │ │ ├── like.xml │ │ │ │ │ │ ├── next.xml │ │ │ │ │ │ ├── pause.xml │ │ │ │ │ │ ├── previous.xml │ │ │ │ │ │ ├── unlike.xml │ │ │ │ │ │ └── widget_play.xml │ │ │ │ ├── MPIP32 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── cross.xml │ │ │ │ │ │ ├── like.xml │ │ │ │ │ │ ├── next.xml │ │ │ │ │ │ ├── pause.xml │ │ │ │ │ │ ├── previous.xml │ │ │ │ │ │ ├── unlike.xml │ │ │ │ │ │ └── widget_play.xml │ │ │ │ └── MPIP33 │ │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── cross.xml │ │ │ │ │ ├── like.xml │ │ │ │ │ ├── next.xml │ │ │ │ │ ├── pause.xml │ │ │ │ │ ├── previous.xml │ │ │ │ │ ├── unlike.xml │ │ │ │ │ └── widget_play.xml │ │ │ ├── com.google.android.apps.nexuslauncher │ │ │ │ └── Dynamic3 │ │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── iconify.xml │ │ │ ├── com.google.android.apps.wellbeing │ │ │ │ ├── SIP2 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ │ └── cheatsheet │ │ │ ├── com.google.android.apps.youtube.music │ │ │ │ ├── MPIP81 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_banner_app_close.xml │ │ │ │ │ │ ├── exo_icon_play.xml │ │ │ │ │ │ ├── ic_dialog_close_dark.xml │ │ │ │ │ │ ├── ic_ffr_triangle.xml │ │ │ │ │ │ ├── ic_media_play_dark.xml │ │ │ │ │ │ ├── ic_preview_play_btn.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_close_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml │ │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml │ │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml │ │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml │ │ │ │ │ │ └── yt_outline_x_mark_white_24.xml │ │ │ │ ├── MPIP82 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_banner_app_close.xml │ │ │ │ │ │ ├── exo_icon_play.xml │ │ │ │ │ │ ├── ic_dialog_close_dark.xml │ │ │ │ │ │ ├── ic_ffr_triangle.xml │ │ │ │ │ │ ├── ic_media_play_dark.xml │ │ │ │ │ │ ├── ic_preview_play_btn.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_close_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml │ │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml │ │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml │ │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml │ │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml │ │ │ │ │ │ └── yt_outline_x_mark_white_24.xml │ │ │ │ └── MPIP83 │ │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── audio_banner_app_close.xml │ │ │ │ │ ├── exo_icon_play.xml │ │ │ │ │ ├── ic_dialog_close_dark.xml │ │ │ │ │ ├── ic_ffr_triangle.xml │ │ │ │ │ ├── ic_media_play_dark.xml │ │ │ │ │ ├── ic_preview_play_btn.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml │ │ │ │ │ ├── quantum_ic_close_white_24.xml │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml │ │ │ │ │ └── yt_outline_x_mark_white_24.xml │ │ │ ├── com.google.android.gms │ │ │ │ ├── SIP3 │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml │ │ │ │ └── cheatsheet │ │ │ ├── com.google.android.youtube │ │ │ │ ├── MPIP71 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_google_chip_close.xml │ │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml │ │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml │ │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml │ │ │ │ │ │ ├── ic_notifications_pause_disabled.xml │ │ │ │ │ │ ├── player_next.xml │ │ │ │ │ │ ├── player_pause.xml │ │ │ │ │ │ ├── player_play.xml │ │ │ │ │ │ ├── player_prev.xml │ │ │ │ │ │ ├── quantum_ic_clear_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_48.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml │ │ │ │ ├── MPIP72 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_google_chip_close.xml │ │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml │ │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml │ │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml │ │ │ │ │ │ ├── ic_notifications_pause_disabled.xml │ │ │ │ │ │ ├── player_next.xml │ │ │ │ │ │ ├── player_pause.xml │ │ │ │ │ │ ├── player_play.xml │ │ │ │ │ │ ├── player_prev.xml │ │ │ │ │ │ ├── quantum_ic_clear_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ │ ├── quantum_ic_pause_white_48.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml │ │ │ │ └── MPIP73 │ │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_google_chip_close.xml │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml │ │ │ │ │ ├── ic_notifications_pause_disabled.xml │ │ │ │ │ ├── ic_notifications_play_arrow_disabled.xml │ │ │ │ │ ├── player_next.xml │ │ │ │ │ ├── player_pause.xml │ │ │ │ │ ├── player_play.xml │ │ │ │ │ ├── player_prev.xml │ │ │ │ │ ├── quantum_ic_clear_white_24.xml │ │ │ │ │ ├── quantum_ic_pause_white_24.xml │ │ │ │ │ ├── quantum_ic_pause_white_36.xml │ │ │ │ │ ├── quantum_ic_pause_white_48.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml │ │ │ ├── com.kapp.youtube.final │ │ │ │ ├── MPIP41 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── exo_icon_next.xml │ │ │ │ │ │ ├── exo_icon_pause.xml │ │ │ │ │ │ ├── exo_icon_play.xml │ │ │ │ │ │ ├── exo_icon_previous.xml │ │ │ │ │ │ ├── ic_pause_white_24dp.xml │ │ │ │ │ │ ├── ic_pause_white_32dp.xml │ │ │ │ │ │ ├── ic_play_arrow_white_24dp.xml │ │ │ │ │ │ ├── ic_play_arrow_white_32dp.xml │ │ │ │ │ │ ├── ic_skip_next_white_32dp.xml │ │ │ │ │ │ └── ic_skip_previous_white_32dp.xml │ │ │ │ ├── MPIP42 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── exo_icon_next.xml │ │ │ │ │ │ ├── exo_icon_pause.xml │ │ │ │ │ │ ├── exo_icon_play.xml │ │ │ │ │ │ ├── exo_icon_previous.xml │ │ │ │ │ │ ├── ic_pause_white_24dp.xml │ │ │ │ │ │ ├── ic_pause_white_32dp.xml │ │ │ │ │ │ ├── ic_play_arrow_white_24dp.xml │ │ │ │ │ │ ├── ic_play_arrow_white_32dp.xml │ │ │ │ │ │ ├── ic_skip_next_white_32dp.xml │ │ │ │ │ │ └── ic_skip_previous_white_32dp.xml │ │ │ │ └── MPIP43 │ │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── exo_icon_next.xml │ │ │ │ │ ├── exo_icon_pause.xml │ │ │ │ │ ├── exo_icon_play.xml │ │ │ │ │ ├── exo_icon_previous.xml │ │ │ │ │ ├── ic_pause_white_24dp.xml │ │ │ │ │ ├── ic_pause_white_32dp.xml │ │ │ │ │ ├── ic_play_arrow_white_24dp.xml │ │ │ │ │ ├── ic_play_arrow_white_32dp.xml │ │ │ │ │ ├── ic_skip_next_white_32dp.xml │ │ │ │ │ └── ic_skip_previous_white_32dp.xml │ │ │ ├── com.maxmpz.audioplayer │ │ │ │ ├── MPIP11 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── status_close.xml │ │ │ │ │ │ ├── status_ff.xml │ │ │ │ │ │ ├── status_icon2.xml │ │ │ │ │ │ ├── status_icon_pause.xml │ │ │ │ │ │ ├── status_pause.xml │ │ │ │ │ │ ├── status_play.xml │ │ │ │ │ │ └── status_rw.xml │ │ │ │ ├── MPIP12 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── status_close.xml │ │ │ │ │ │ ├── status_ff.xml │ │ │ │ │ │ ├── status_icon2.xml │ │ │ │ │ │ ├── status_icon_pause.xml │ │ │ │ │ │ ├── status_pause.xml │ │ │ │ │ │ ├── status_play.xml │ │ │ │ │ │ └── status_rw.xml │ │ │ │ └── MPIP13 │ │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── status_close.xml │ │ │ │ │ ├── status_ff.xml │ │ │ │ │ ├── status_icon2.xml │ │ │ │ │ ├── status_icon_pause.xml │ │ │ │ │ ├── status_pause.xml │ │ │ │ │ ├── status_play.xml │ │ │ │ │ └── status_rw.xml │ │ │ ├── com.shadow.blackhole │ │ │ │ ├── MPIP51 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_service_pause.xml │ │ │ │ │ │ ├── audio_service_play_arrow.xml │ │ │ │ │ │ ├── audio_service_skip_next.xml │ │ │ │ │ │ ├── audio_service_skip_previous.xml │ │ │ │ │ │ ├── audio_service_stop.xml │ │ │ │ │ │ ├── ic_stat_music_note.xml │ │ │ │ │ │ ├── media_session_service_notification_ic_music_note.xml │ │ │ │ │ │ ├── media_session_service_notification_ic_pause.xml │ │ │ │ │ │ ├── media_session_service_notification_ic_play.xml │ │ │ │ │ │ ├── media_session_service_notification_ic_skip_to_next.xml │ │ │ │ │ │ └── media_session_service_notification_ic_skip_to_previous.xml │ │ │ │ ├── MPIP52 │ │ │ │ │ └── res │ │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_service_pause.xml │ │ │ │ │ │ ├── audio_service_play_arrow.xml │ │ │ │ │ │ ├── audio_service_skip_next.xml │ │ │ │ │ │ ├── audio_service_skip_previous.xml │ │ │ │ │ │ ├── audio_service_stop.xml │ │ │ │ │ │ ├── ic_stat_music_note.xml │ │ │ │ │ │ ├── media_session_service_notification_ic_music_note.xml │ │ │ │ │ │ ├── media_session_service_notification_ic_pause.xml │ │ │ │ │ │ ├── media_session_service_notification_ic_play.xml │ │ │ │ │ │ ├── media_session_service_notification_ic_skip_to_next.xml │ │ │ │ │ │ └── media_session_service_notification_ic_skip_to_previous.xml │ │ │ │ └── MPIP53 │ │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── audio_service_pause.xml │ │ │ │ │ ├── audio_service_play_arrow.xml │ │ │ │ │ ├── audio_service_skip_next.xml │ │ │ │ │ ├── audio_service_skip_previous.xml │ │ │ │ │ ├── audio_service_stop.xml │ │ │ │ │ ├── ic_stat_music_note.xml │ │ │ │ │ ├── media_session_service_notification_ic_music_note.xml │ │ │ │ │ ├── media_session_service_notification_ic_pause.xml │ │ │ │ │ ├── media_session_service_notification_ic_play.xml │ │ │ │ │ ├── media_session_service_notification_ic_skip_to_next.xml │ │ │ │ │ └── media_session_service_notification_ic_skip_to_previous.xml │ │ │ └── in.krosbits.musicolet │ │ │ │ ├── MPIP61 │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_action_favorite_border_light.xml │ │ │ │ │ ├── ic_action_favorite_filled_light.xml │ │ │ │ │ ├── ic_action_next_dark_s.xml │ │ │ │ │ ├── ic_action_pause_light_s.xml │ │ │ │ │ ├── ic_action_play_light_s.xml │ │ │ │ │ ├── ic_action_prev_light_s.xml │ │ │ │ │ ├── ic_clear_s.xml │ │ │ │ │ ├── ic_fast_forward_black_24dp_s.xml │ │ │ │ │ ├── ic_fast_rewind_black_24dp_s.xml │ │ │ │ │ └── ic_playlist_add_dark.xml │ │ │ │ ├── MPIP62 │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_action_favorite_border_light.xml │ │ │ │ │ ├── ic_action_favorite_filled_light.xml │ │ │ │ │ ├── ic_action_next_dark_s.xml │ │ │ │ │ ├── ic_action_pause_light_s.xml │ │ │ │ │ ├── ic_action_play_light_s.xml │ │ │ │ │ ├── ic_action_prev_light_s.xml │ │ │ │ │ ├── ic_clear_s.xml │ │ │ │ │ ├── ic_fast_forward_black_24dp_s.xml │ │ │ │ │ ├── ic_fast_rewind_black_24dp_s.xml │ │ │ │ │ └── ic_playlist_add_dark.xml │ │ │ │ └── MPIP63 │ │ │ │ └── res │ │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_action_favorite_border_light.xml │ │ │ │ ├── ic_action_favorite_filled_light.xml │ │ │ │ ├── ic_action_next_dark_s.xml │ │ │ │ ├── ic_action_pause_light_s.xml │ │ │ │ ├── ic_action_play_light_s.xml │ │ │ │ ├── ic_action_prev_light_s.xml │ │ │ │ ├── ic_clear_s.xml │ │ │ │ ├── ic_fast_forward_black_24dp_s.xml │ │ │ │ ├── ic_fast_rewind_black_24dp_s.xml │ │ │ │ └── ic_playlist_add_dark.xml │ │ └── xposed_init │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── drdisagree │ │ │ └── iconify │ │ │ ├── BaseSplashActivity.kt │ │ │ ├── Iconify.kt │ │ │ ├── data │ │ │ ├── common │ │ │ │ ├── Const.kt │ │ │ │ ├── Dynamic.kt │ │ │ │ ├── Preferences.kt │ │ │ │ ├── References.kt │ │ │ │ ├── Resources.kt │ │ │ │ └── XposedConst.kt │ │ │ ├── config │ │ │ │ ├── PrefsHelper.kt │ │ │ │ └── RPrefs.kt │ │ │ ├── dao │ │ │ │ └── DynamicResourceDao.kt │ │ │ ├── database │ │ │ │ └── DynamicResourceDatabase.kt │ │ │ ├── entity │ │ │ │ ├── DynamicResourceEntity.kt │ │ │ │ └── OnboardingPage.kt │ │ │ ├── events │ │ │ │ ├── ColorDismissedEvent.kt │ │ │ │ └── ColorSelectedEvent.kt │ │ │ ├── models │ │ │ │ ├── BrightnessBarModel.kt │ │ │ │ ├── ClockCarouselItemModel.kt │ │ │ │ ├── ClockModel.kt │ │ │ │ ├── IconPackModel.kt │ │ │ │ ├── IconShapeModel.kt │ │ │ │ ├── InfoModel.kt │ │ │ │ ├── MenuModel.kt │ │ │ │ ├── NotificationModel.kt │ │ │ │ ├── ProgressBarModel.kt │ │ │ │ ├── QsShapeModel.kt │ │ │ │ ├── SearchPreferenceItem.kt │ │ │ │ ├── SwitchModel.kt │ │ │ │ └── ToastModel.kt │ │ │ ├── provider │ │ │ │ └── RemotePrefProvider.kt │ │ │ └── repository │ │ │ │ └── DynamicResourceRepository.kt │ │ │ ├── receivers │ │ │ └── BootReceiver.kt │ │ │ ├── services │ │ │ ├── BaseRootProviderProxy.kt │ │ │ ├── TileNotchBarKiller.kt │ │ │ ├── TilePitchBlack.kt │ │ │ ├── TileRestartSystemUI.kt │ │ │ ├── UpdateScheduler.kt │ │ │ ├── UpdateWorker.kt │ │ │ └── WeatherScheduler.kt │ │ │ ├── ui │ │ │ ├── activities │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── OnboardingActivity.kt │ │ │ │ └── WeatherActivity.kt │ │ │ ├── adapters │ │ │ │ ├── BrightnessBarAdapter.kt │ │ │ │ ├── ClockPreviewAdapter.kt │ │ │ │ ├── ForecastDayAdapter.kt │ │ │ │ ├── ForecastHourAdapter.kt │ │ │ │ ├── IconPackAdapter.kt │ │ │ │ ├── IconShapeAdapter.kt │ │ │ │ ├── IconsAdapter.kt │ │ │ │ ├── InfoAdapter.kt │ │ │ │ ├── ListPreferenceAdapter.kt │ │ │ │ ├── MenuAdapter.kt │ │ │ │ ├── NotificationAdapter.kt │ │ │ │ ├── OnboardingAdapter.kt │ │ │ │ ├── ProgressBarAdapter.kt │ │ │ │ ├── QsShapeAdapter.kt │ │ │ │ ├── SectionTitleAdapter.kt │ │ │ │ ├── SwitchAdapter.kt │ │ │ │ └── ToastAdapter.kt │ │ │ ├── base │ │ │ │ ├── BaseActivity.kt │ │ │ │ ├── BaseFragment.kt │ │ │ │ ├── ControlledPreferenceFragmentCompat.kt │ │ │ │ └── WeatherPreferenceFragment.kt │ │ │ ├── core │ │ │ │ ├── FadeTransition.kt │ │ │ │ ├── PopTransition.kt │ │ │ │ └── Transform.kt │ │ │ ├── dialogs │ │ │ │ ├── EditTextDialog.kt │ │ │ │ ├── ErrorDialog.kt │ │ │ │ ├── InfoDialog.kt │ │ │ │ ├── InstallationDialog.kt │ │ │ │ ├── LoadingDialog.kt │ │ │ │ └── RadioDialog.kt │ │ │ ├── drawables │ │ │ │ └── TintedDrawableSpan.kt │ │ │ ├── fragments │ │ │ │ ├── home │ │ │ │ │ ├── BrightnessBar.kt │ │ │ │ │ ├── BrightnessBarPixel.kt │ │ │ │ │ ├── CellularIcons.kt │ │ │ │ │ ├── Home.kt │ │ │ │ │ ├── IconPack.kt │ │ │ │ │ ├── IconShape.kt │ │ │ │ │ ├── MediaIcons.kt │ │ │ │ │ ├── Notification.kt │ │ │ │ │ ├── NotificationPixel.kt │ │ │ │ │ ├── ProgressBar.kt │ │ │ │ │ ├── QsPanelTile.kt │ │ │ │ │ ├── QsPanelTilePixel.kt │ │ │ │ │ ├── SettingsIcons.kt │ │ │ │ │ ├── Switch.kt │ │ │ │ │ ├── ToastFrame.kt │ │ │ │ │ └── WiFiIcons.kt │ │ │ │ ├── settings │ │ │ │ │ ├── AppUpdates.kt │ │ │ │ │ ├── Changelog.kt │ │ │ │ │ ├── Credits.kt │ │ │ │ │ ├── Experimental.kt │ │ │ │ │ └── Settings.kt │ │ │ │ ├── tweaks │ │ │ │ │ ├── BasicColors.kt │ │ │ │ │ ├── ColorEngine.kt │ │ │ │ │ ├── ColoredBattery.kt │ │ │ │ │ ├── MediaPlayer.kt │ │ │ │ │ ├── Miscellaneous.kt │ │ │ │ │ ├── NavigationBar.kt │ │ │ │ │ ├── QsIconLabel.kt │ │ │ │ │ ├── QsRowColumn.kt │ │ │ │ │ ├── QsTileSize.kt │ │ │ │ │ ├── Statusbar.kt │ │ │ │ │ ├── Tweaks.kt │ │ │ │ │ ├── UiRoundness.kt │ │ │ │ │ └── VolumePanel.kt │ │ │ │ └── xposed │ │ │ │ │ ├── AlbumArt.kt │ │ │ │ │ ├── BackgroundChip.kt │ │ │ │ │ ├── BaseDepthWallpaper.kt │ │ │ │ │ ├── BatteryStyle.kt │ │ │ │ │ ├── ClockChip.kt │ │ │ │ │ ├── DualStatusbar.kt │ │ │ │ │ ├── HeaderClock.kt │ │ │ │ │ ├── HeaderImage.kt │ │ │ │ │ ├── LocationBrowse.kt │ │ │ │ │ ├── Lockscreen.kt │ │ │ │ │ ├── LockscreenClock.kt │ │ │ │ │ ├── LockscreenClockParent.kt │ │ │ │ │ ├── LockscreenWeather.kt │ │ │ │ │ ├── LockscreenWidget.kt │ │ │ │ │ ├── OpQsHeader.kt │ │ │ │ │ ├── Others.kt │ │ │ │ │ ├── QsMargins.kt │ │ │ │ │ ├── QuickSettings.kt │ │ │ │ │ ├── StatusIconsChip.kt │ │ │ │ │ ├── Statusbar.kt │ │ │ │ │ ├── StatusbarLogo.kt │ │ │ │ │ ├── Themes.kt │ │ │ │ │ ├── TransparencyBlur.kt │ │ │ │ │ ├── VolumePanel.kt │ │ │ │ │ ├── VolumePanelParent.kt │ │ │ │ │ ├── WeatherSettings.kt │ │ │ │ │ └── Xposed.kt │ │ │ ├── preferences │ │ │ │ ├── BottomSheetListPreference.kt │ │ │ │ ├── ColorPreference.kt │ │ │ │ ├── EditTextPreference.kt │ │ │ │ ├── FilePickerPreference.kt │ │ │ │ ├── FooterPreference.kt │ │ │ │ ├── HomeCardPreference.kt │ │ │ │ ├── HookCheckPreference.kt │ │ │ │ ├── LinkTextView.kt │ │ │ │ ├── ListPreference.kt │ │ │ │ ├── MasterSwitchPreference.kt │ │ │ │ ├── PreferenceCategory.kt │ │ │ │ ├── PreferenceMenu.kt │ │ │ │ ├── RebootReminderPreference.kt │ │ │ │ ├── RecyclerPreference.kt │ │ │ │ ├── SelectorWithWidgetPreference.kt │ │ │ │ ├── SliderPreference.kt │ │ │ │ ├── SwitchPreference.kt │ │ │ │ ├── TimePickerPreference.kt │ │ │ │ ├── TwoTargetPreference.kt │ │ │ │ ├── TwoTargetSwitchPreference.kt │ │ │ │ ├── UpdateCheckerPreference.kt │ │ │ │ └── preferencesearch │ │ │ │ │ ├── AnimationUtils.java │ │ │ │ │ ├── Breadcrumb.java │ │ │ │ │ ├── HistoryItem.java │ │ │ │ │ ├── ListItem.java │ │ │ │ │ ├── PreferenceItem.java │ │ │ │ │ ├── PreferenceParser.kt │ │ │ │ │ ├── RevealAnimationSetting.java │ │ │ │ │ ├── SearchConfiguration.java │ │ │ │ │ ├── SearchPreference.java │ │ │ │ │ ├── SearchPreferenceActionView.java │ │ │ │ │ ├── SearchPreferenceAdapter.java │ │ │ │ │ ├── SearchPreferenceFragment.java │ │ │ │ │ ├── SearchPreferenceResult.java │ │ │ │ │ └── SearchPreferenceResultListener.java │ │ │ ├── utils │ │ │ │ ├── Animatoo.kt │ │ │ │ ├── CarouselLayoutManager.kt │ │ │ │ ├── FragmentHelper.kt │ │ │ │ ├── SnapOnScrollListener.java │ │ │ │ ├── ThemeHelper.kt │ │ │ │ ├── ViewBindingHelpers.kt │ │ │ │ └── ViewHelper.kt │ │ │ ├── views │ │ │ │ ├── ClockCarouselView.kt │ │ │ │ ├── OnboardingView.kt │ │ │ │ ├── RoundedCornerProgressDrawable.kt │ │ │ │ ├── ScreenPreviewClickView.kt │ │ │ │ ├── ScreenPreviewView.kt │ │ │ │ └── SectionView.java │ │ │ └── widgets │ │ │ │ ├── BottomSheetWidget.kt │ │ │ │ ├── ClockHostView.kt │ │ │ │ ├── ColorPickerSmallWidget.kt │ │ │ │ ├── ColorPickerWidget.kt │ │ │ │ ├── EditTextWidget.kt │ │ │ │ ├── FilePickerWidget.kt │ │ │ │ ├── FixedWidthDisplayRatioFrameLayout.kt │ │ │ │ ├── HorizontalTouchMovementAwareNestedScrollView.kt │ │ │ │ ├── MasterSwitchWidget.kt │ │ │ │ ├── MenuWidget.kt │ │ │ │ ├── RadioDialogWidget.kt │ │ │ │ ├── SliderWidget.kt │ │ │ │ ├── SwitchWidget.kt │ │ │ │ └── TitleWidget.kt │ │ │ ├── utils │ │ │ ├── AppUtils.kt │ │ │ ├── CacheUtils.kt │ │ │ ├── ContributorUtils.kt │ │ │ ├── CrowdinUtils.kt │ │ │ ├── FileUtils.kt │ │ │ ├── HapticUtils.kt │ │ │ ├── MiscUtils.kt │ │ │ ├── ModuleUtils.kt │ │ │ ├── NetworkUtils.java │ │ │ ├── OmniJawsClient.kt │ │ │ ├── RootUtils.kt │ │ │ ├── ScreenSizeCalculator.java │ │ │ ├── SystemUtils.kt │ │ │ ├── TextUtils.kt │ │ │ ├── WallpaperUtils.kt │ │ │ ├── apksigner │ │ │ │ ├── ApkSignerV2.java │ │ │ │ ├── ByteArrayStream.java │ │ │ │ ├── CryptoUtils.java │ │ │ │ ├── Pair.java │ │ │ │ ├── SignAPK.java │ │ │ │ └── ZipUtils.java │ │ │ ├── color │ │ │ │ ├── ColorUtils.kt │ │ │ │ └── monet │ │ │ │ │ ├── hct │ │ │ │ │ ├── Cam16.java │ │ │ │ │ ├── Hct.java │ │ │ │ │ ├── HctSolver.java │ │ │ │ │ └── ViewingConditions.java │ │ │ │ │ ├── quantize │ │ │ │ │ ├── PointProvider.java │ │ │ │ │ ├── PointProviderLab.java │ │ │ │ │ ├── Quantizer.java │ │ │ │ │ ├── QuantizerCelebi.java │ │ │ │ │ ├── QuantizerMap.java │ │ │ │ │ ├── QuantizerResult.java │ │ │ │ │ ├── QuantizerWsmeans.java │ │ │ │ │ └── QuantizerWu.java │ │ │ │ │ ├── score │ │ │ │ │ └── Score.java │ │ │ │ │ └── utils │ │ │ │ │ ├── ColorUtils.java │ │ │ │ │ └── MathUtils.java │ │ │ ├── extension │ │ │ │ ├── ObservableVariable.kt │ │ │ │ └── TaskExecutor.kt │ │ │ ├── helper │ │ │ │ ├── BackupRestore.kt │ │ │ │ ├── BinaryInstaller.kt │ │ │ │ ├── ImportExport.kt │ │ │ │ ├── LocaleHelper.kt │ │ │ │ ├── Logger.kt │ │ │ │ └── TypedValueUtils.kt │ │ │ ├── overlay │ │ │ │ ├── FabricatedUtils.kt │ │ │ │ ├── OverlayUtils.kt │ │ │ │ ├── compiler │ │ │ │ │ ├── CompilerUtils.kt │ │ │ │ │ ├── DynamicCompiler.kt │ │ │ │ │ ├── OnDemandCompiler.kt │ │ │ │ │ ├── OnboardingCompiler.kt │ │ │ │ │ ├── OverlayCompiler.kt │ │ │ │ │ ├── RoundnessCompiler.kt │ │ │ │ │ ├── SettingsIconsCompiler.kt │ │ │ │ │ └── SwitchCompiler.kt │ │ │ │ └── manager │ │ │ │ │ ├── BrightnessBarManager.kt │ │ │ │ │ ├── BrightnessBarPixelManager.kt │ │ │ │ │ ├── IconPackManager.kt │ │ │ │ │ ├── MediaPlayerIconManager.kt │ │ │ │ │ ├── NotificationManager.kt │ │ │ │ │ ├── NotificationPixelManager.kt │ │ │ │ │ ├── QsResourceManager.kt │ │ │ │ │ ├── QsShapeManager.kt │ │ │ │ │ ├── QsShapePixelManager.kt │ │ │ │ │ ├── RoundnessManager.kt │ │ │ │ │ ├── SettingsIconResourceManager.kt │ │ │ │ │ ├── SignalIconManager.kt │ │ │ │ │ └── resource │ │ │ │ │ ├── ResourceEntry.kt │ │ │ │ │ └── ResourceManager.kt │ │ │ └── weather │ │ │ │ ├── AbstractWeatherProvider.kt │ │ │ │ ├── WeatherConfig.kt │ │ │ │ ├── WeatherContentProvider.kt │ │ │ │ ├── WeatherInfo.kt │ │ │ │ ├── WeatherWork.kt │ │ │ │ └── providers │ │ │ │ ├── METNorwayProvider.kt │ │ │ │ ├── OpenMeteoProvider.kt │ │ │ │ ├── OpenWeatherMapProvider.kt │ │ │ │ └── YandexProvider.kt │ │ │ └── xposed │ │ │ ├── EntryList.kt │ │ │ ├── HookEntry.kt │ │ │ ├── HookRes.kt │ │ │ ├── InitHook.kt │ │ │ ├── ModPack.kt │ │ │ ├── modules │ │ │ ├── BackgroundChip.kt │ │ │ ├── BatteryStyleManager.kt │ │ │ ├── batterystyles │ │ │ │ ├── BatteryDrawable.kt │ │ │ │ ├── CircleBattery.kt │ │ │ │ ├── CircleFilledBattery.kt │ │ │ │ ├── DefaultBattery.kt │ │ │ │ ├── LandscapeBattery.kt │ │ │ │ ├── LandscapeBatteryA.kt │ │ │ │ ├── LandscapeBatteryB.kt │ │ │ │ ├── LandscapeBatteryC.kt │ │ │ │ ├── LandscapeBatteryColorOS.kt │ │ │ │ ├── LandscapeBatteryD.kt │ │ │ │ ├── LandscapeBatteryE.kt │ │ │ │ ├── LandscapeBatteryF.kt │ │ │ │ ├── LandscapeBatteryG.kt │ │ │ │ ├── LandscapeBatteryH.kt │ │ │ │ ├── LandscapeBatteryI.kt │ │ │ │ ├── LandscapeBatteryJ.kt │ │ │ │ ├── LandscapeBatteryK.kt │ │ │ │ ├── LandscapeBatteryKim.kt │ │ │ │ ├── LandscapeBatteryL.kt │ │ │ │ ├── LandscapeBatteryM.kt │ │ │ │ ├── LandscapeBatteryMIUIPill.kt │ │ │ │ ├── LandscapeBatteryN.kt │ │ │ │ ├── LandscapeBatteryO.kt │ │ │ │ ├── LandscapeBatteryOneUI7.kt │ │ │ │ ├── LandscapeBatterySmiley.kt │ │ │ │ ├── LandscapeBatteryStyleA.kt │ │ │ │ ├── LandscapeBatteryStyleB.kt │ │ │ │ ├── LandscapeBatteryiOS15.kt │ │ │ │ ├── LandscapeBatteryiOS16.kt │ │ │ │ ├── PortraitBatteryAiroo.kt │ │ │ │ ├── PortraitBatteryCapsule.kt │ │ │ │ ├── PortraitBatteryLorn.kt │ │ │ │ ├── PortraitBatteryMx.kt │ │ │ │ ├── PortraitBatteryOrigami.kt │ │ │ │ ├── RLandscapeBattery.kt │ │ │ │ ├── RLandscapeBatteryColorOS.kt │ │ │ │ ├── RLandscapeBatteryStyleA.kt │ │ │ │ └── RLandscapeBatteryStyleB.kt │ │ │ ├── extras │ │ │ │ ├── callbacks │ │ │ │ │ ├── BootCallback.kt │ │ │ │ │ ├── ConfigurationCallback.kt │ │ │ │ │ ├── ControllersProvider.kt │ │ │ │ │ ├── DozeCallback.kt │ │ │ │ │ ├── HeadsUpCallback.kt │ │ │ │ │ ├── KeyguardShowingCallback.kt │ │ │ │ │ ├── QsShowingCallback.kt │ │ │ │ │ └── ThemeChangeCallback.kt │ │ │ │ ├── utils │ │ │ │ │ ├── ActivityLauncherUtils.kt │ │ │ │ │ ├── AlphaRefreshedPaint.kt │ │ │ │ │ ├── ColorUtils.kt │ │ │ │ │ ├── DisplayUtils.kt │ │ │ │ │ ├── DrawableSize.kt │ │ │ │ │ ├── MonochromeIconFactory.kt │ │ │ │ │ ├── MyConstraintSet.kt │ │ │ │ │ ├── SettingsLibUtils.kt │ │ │ │ │ ├── StatusBarClock.kt │ │ │ │ │ ├── TimeUtils.kt │ │ │ │ │ ├── TouchAnimator.java │ │ │ │ │ ├── VibrationUtils.kt │ │ │ │ │ ├── ViewHelper.kt │ │ │ │ │ └── toolkit │ │ │ │ │ │ ├── LogUtils.kt │ │ │ │ │ │ ├── ReflectionTools.kt │ │ │ │ │ │ └── XposedHook.kt │ │ │ │ └── views │ │ │ │ │ ├── AlphaOptimizedLinearLayout.kt │ │ │ │ │ ├── ArcProgressImageView.kt │ │ │ │ │ ├── ArcProgressWidget.kt │ │ │ │ │ ├── BurnInProtection.kt │ │ │ │ │ ├── ChipDrawable.kt │ │ │ │ │ ├── CurrentWeatherView.kt │ │ │ │ │ ├── DeviceWidgetView.kt │ │ │ │ │ ├── ExtendedFAB.kt │ │ │ │ │ ├── LockscreenWidgetsView.kt │ │ │ │ │ ├── MediaPlayerPagerAdapter.kt │ │ │ │ │ ├── OpQsHeaderView.kt │ │ │ │ │ ├── OpQsMediaPlayerView.kt │ │ │ │ │ ├── ParallaxImageView.kt │ │ │ │ │ ├── RoundedCornerProgressDrawable.kt │ │ │ │ │ ├── logoview │ │ │ │ │ ├── LogoImage.kt │ │ │ │ │ ├── LogoImageView.kt │ │ │ │ │ └── LogoImageViewRight.kt │ │ │ │ │ └── ongoingactionchip │ │ │ │ │ ├── IconFetcher.kt │ │ │ │ │ ├── OnGoingActionChipView.kt │ │ │ │ │ └── OnGoingActionProgressController.kt │ │ │ ├── lockscreen │ │ │ │ ├── AlbumArt.kt │ │ │ │ ├── Lockscreen.kt │ │ │ │ ├── clock │ │ │ │ │ ├── LockscreenClock.kt │ │ │ │ │ └── LockscreenClockA15.kt │ │ │ │ ├── depthwallpaper │ │ │ │ │ ├── BaseDepthWallpaperA14.kt │ │ │ │ │ ├── BaseDepthWallpaperA15.kt │ │ │ │ │ └── DepthWallpaperA13.kt │ │ │ │ ├── weather │ │ │ │ │ ├── LockscreenWeather.kt │ │ │ │ │ └── LockscreenWeatherA15.kt │ │ │ │ └── widgets │ │ │ │ │ ├── LockscreenWidgets.kt │ │ │ │ │ └── LockscreenWidgetsA15.kt │ │ │ ├── misc │ │ │ │ └── Miscellaneous.kt │ │ │ ├── quicksettings │ │ │ │ ├── AppIconInNotification.kt │ │ │ │ ├── ColorizeNotificationView.kt │ │ │ │ ├── HeaderImage.kt │ │ │ │ ├── HeadsUpBlur.kt │ │ │ │ ├── OpQsHeader.kt │ │ │ │ ├── QSTransparency.kt │ │ │ │ ├── QuickSettings.kt │ │ │ │ ├── headerclock │ │ │ │ │ ├── HeaderClock.kt │ │ │ │ │ └── HeaderClockA14.kt │ │ │ │ └── themes │ │ │ │ │ ├── QSBlackThemeA13.kt │ │ │ │ │ ├── QSBlackThemeA14.kt │ │ │ │ │ ├── QSBlackThemeA15.kt │ │ │ │ │ ├── QSFluidThemeA13.kt │ │ │ │ │ ├── QSFluidThemeA14.kt │ │ │ │ │ ├── QSFluidThemeA15.kt │ │ │ │ │ ├── QSLightThemeA12.kt │ │ │ │ │ ├── QSLightThemeA13.kt │ │ │ │ │ ├── QSLightThemeA14.kt │ │ │ │ │ ├── QSLightThemeA15.kt │ │ │ │ │ └── Utils.kt │ │ │ ├── settings │ │ │ │ ├── GoogleIcon.kt │ │ │ │ └── ZenPriorityModeIcon.kt │ │ │ ├── statusbar │ │ │ │ ├── AppIconsInStatusbar.kt │ │ │ │ ├── DualStatusbar.kt │ │ │ │ ├── OnGoingActionChip.kt │ │ │ │ ├── StatusbarLogo.kt │ │ │ │ ├── StatusbarMisc.kt │ │ │ │ ├── SwapSignalNetworkType.kt │ │ │ │ └── SwapWiFiCellular.kt │ │ │ └── volume │ │ │ │ ├── VolumePanel.kt │ │ │ │ ├── VolumePanelStyle.kt │ │ │ │ └── styles │ │ │ │ ├── VolumeDoubleLayer.kt │ │ │ │ ├── VolumeGradient.kt │ │ │ │ ├── VolumeNeumorph.kt │ │ │ │ ├── VolumeNeumorphOutline.kt │ │ │ │ ├── VolumeOutline.kt │ │ │ │ ├── VolumeShadedLayer.kt │ │ │ │ └── VolumeStyleBase.kt │ │ │ └── utils │ │ │ ├── BootLoopProtector.kt │ │ │ ├── ExtendedRemotePreferences.kt │ │ │ ├── HookCheck.kt │ │ │ ├── SystemUtils.kt │ │ │ └── XPrefs.kt │ ├── jniLibs │ │ ├── arm64-v8a │ │ │ ├── libaapt.so │ │ │ ├── libaapt2.so │ │ │ └── libzipalign.so │ │ ├── armeabi-v7a │ │ │ ├── libaapt.so │ │ │ ├── libaapt2.so │ │ │ └── libzipalign.so │ │ ├── x86 │ │ │ ├── libaapt.so │ │ │ ├── libaapt2.so │ │ │ └── libzipalign.so │ │ └── x86_64 │ │ │ ├── libaapt.so │ │ │ ├── libaapt2.so │ │ │ └── libzipalign.so │ └── res │ │ ├── anim │ │ ├── animate_card_enter.xml │ │ ├── animate_card_exit.xml │ │ ├── animate_diagonal_right_enter.xml │ │ ├── animate_diagonal_right_exit.xml │ │ ├── animate_fade_enter.xml │ │ ├── animate_fade_exit.xml │ │ ├── animate_in_out_enter.xml │ │ ├── animate_in_out_exit.xml │ │ ├── animate_shrink_enter.xml │ │ ├── animate_shrink_exit.xml │ │ ├── animate_slide_down_enter.xml │ │ ├── animate_slide_down_exit.xml │ │ ├── animate_slide_in_left.xml │ │ ├── animate_slide_left_enter.xml │ │ ├── animate_slide_left_exit.xml │ │ ├── animate_slide_out_right.xml │ │ ├── animate_slide_up_enter.xml │ │ ├── animate_slide_up_exit.xml │ │ ├── animate_spin_enter.xml │ │ ├── animate_spin_exit.xml │ │ ├── animate_split_enter.xml │ │ ├── animate_split_exit.xml │ │ ├── animate_swipe_left_enter.xml │ │ ├── animate_swipe_left_exit.xml │ │ ├── animate_swipe_right_enter.xml │ │ ├── animate_swipe_right_exit.xml │ │ ├── animate_windmill_enter.xml │ │ ├── animate_windmill_exit.xml │ │ ├── animate_zoom_enter.xml │ │ ├── animate_zoom_exit.xml │ │ ├── card_anim.xml │ │ ├── fade.xml │ │ ├── fragment_fade_in.xml │ │ ├── fragment_fade_out.xml │ │ ├── from_left_in.xml │ │ ├── from_left_out.xml │ │ ├── from_right_in.xml │ │ └── from_right_out.xml │ │ ├── color │ │ ├── bottom_nav_icon_color.xml │ │ ├── color_accent_alpha_dark.xml │ │ ├── color_accent_alpha_light.xml │ │ ├── color_appbar_overlay_dark.xml │ │ ├── color_appbar_overlay_light.xml │ │ ├── color_background_alpha_dark.xml │ │ ├── color_background_alpha_light.xml │ │ ├── color_container_overlay_dark.xml │ │ ├── color_container_overlay_light.xml │ │ ├── color_material_ripple.xml │ │ ├── color_material_ripple_error.xml │ │ ├── color_material_ripple_no_tint.xml │ │ ├── color_navbar_overlay_dark.xml │ │ ├── color_navbar_overlay_light.xml │ │ ├── color_navbar_selected_bg_dark.xml │ │ ├── color_navbar_selected_bg_light.xml │ │ ├── color_radio_button_circle.xml │ │ ├── color_surface_semitransparent.xml │ │ ├── color_switch_track_off.xml │ │ ├── color_switch_track_on.xml │ │ ├── holo_blue_dark_alpha.xml │ │ ├── holo_blue_light_alpha.xml │ │ ├── text_color_primary.xml │ │ └── text_color_secondary.xml │ │ ├── drawable-ldrtl-night-v24 │ │ ├── preview_seekbar_oldschool_thumb.xml │ │ └── qs_shape_divided_disabled.xml │ │ ├── drawable-ldrtl-v24 │ │ ├── preview_seekbar_oldschool_thumb.xml │ │ ├── qs_shape_bookmark_disabled.xml │ │ ├── qs_shape_bookmark_disabled_pixel.xml │ │ ├── qs_shape_bookmark_enabled.xml │ │ ├── qs_shape_bookmark_enabled_pixel.xml │ │ ├── qs_shape_divided_disabled.xml │ │ ├── qs_shape_divided_disabled_pixel.xml │ │ ├── qs_shape_divided_enabled.xml │ │ ├── qs_shape_divided_enabled_pixel.xml │ │ ├── seekbar_progress.xml │ │ ├── switch_ios_thumb.xml │ │ ├── switch_material_thumb.xml │ │ ├── switch_material_track.xml │ │ ├── switch_neumorph_thumb.xml │ │ ├── switch_realme_thumb.xml │ │ ├── switch_realme_track.xml │ │ └── switch_tiny_thumb.xml │ │ ├── drawable-night-v24 │ │ ├── auto_bb_lighty.xml │ │ ├── auto_bb_lighty_pixel.xml │ │ ├── auto_bb_translucent_outline.xml │ │ ├── auto_bb_translucent_outline_pixel.xml │ │ ├── bb_lighty.xml │ │ ├── bb_minimal_thumb_pixel.xml │ │ ├── bb_oldschool_thumb.xml │ │ ├── bb_oldschool_thumb_pixel.xml │ │ ├── bb_purfect.xml │ │ ├── bb_translucent_outline.xml │ │ ├── img_home_card_bg.webp │ │ ├── menu_icon_bg.xml │ │ ├── notif_lighty.xml │ │ ├── notif_pitch_black.xml │ │ ├── preview_bubble_v1_1.xml │ │ ├── preview_bubble_v1_2.xml │ │ ├── preview_bubble_v1_3.xml │ │ ├── preview_bubble_v1_4.xml │ │ ├── preview_bubble_v2_1.xml │ │ ├── preview_bubble_v2_2.xml │ │ ├── preview_bubble_v2_3.xml │ │ ├── preview_bubble_v2_4.xml │ │ ├── preview_seekbar_gradient_thumb.xml │ │ ├── preview_seekbar_lighty.xml │ │ ├── preview_seekbar_oldschool_thumb.xml │ │ ├── qs_shape_bottom_outline_disabled.xml │ │ ├── qs_shape_cyberponk_disabled.xml │ │ ├── qs_shape_cyberponk_v2_disabled.xml │ │ ├── qs_shape_divided_disabled.xml │ │ ├── qs_shape_lighty_disabled.xml │ │ ├── qs_shape_lighty_enabled.xml │ │ ├── qs_shape_purfect_disabled.xml │ │ ├── qs_shape_purfect_enabled.xml │ │ ├── qs_shape_translucent_outline_disabled.xml │ │ ├── qs_shape_translucent_outline_enabled.xml │ │ ├── switch_checkmark_track.xml │ │ ├── toast_frame_style_1.xml │ │ ├── toast_frame_style_12.xml │ │ ├── toast_frame_style_2.xml │ │ ├── toast_frame_style_3.xml │ │ ├── toast_frame_style_4.xml │ │ ├── toast_frame_style_5.xml │ │ ├── toast_frame_style_6.xml │ │ ├── toast_frame_style_7.xml │ │ ├── toast_frame_style_8.xml │ │ ├── toast_frame_style_9.xml │ │ ├── volume_background.xml │ │ ├── volume_container.xml │ │ ├── volume_outline.xml │ │ └── volume_outline_ringer.xml │ │ ├── drawable-night-v35 │ │ ├── volume_background.xml │ │ └── volume_container.xml │ │ ├── drawable-nodpi │ │ ├── google_0.png │ │ ├── google_1.png │ │ ├── google_10.png │ │ ├── google_11.png │ │ ├── google_12.png │ │ ├── google_13.png │ │ ├── google_14.png │ │ ├── google_15.png │ │ ├── google_16.png │ │ ├── google_17.png │ │ ├── google_18.png │ │ ├── google_19.png │ │ ├── google_2.png │ │ ├── google_20.png │ │ ├── google_21.png │ │ ├── google_22.png │ │ ├── google_23.png │ │ ├── google_24.png │ │ ├── google_25.png │ │ ├── google_26.png │ │ ├── google_27.png │ │ ├── google_28.png │ │ ├── google_29.png │ │ ├── google_3.png │ │ ├── google_30.png │ │ ├── google_31.png │ │ ├── google_32.png │ │ ├── google_33.png │ │ ├── google_34.png │ │ ├── google_35.png │ │ ├── google_36.png │ │ ├── google_37.png │ │ ├── google_38.png │ │ ├── google_39.png │ │ ├── google_4.png │ │ ├── google_40.png │ │ ├── google_41.png │ │ ├── google_42.png │ │ ├── google_43.png │ │ ├── google_44.png │ │ ├── google_45.png │ │ ├── google_46.png │ │ ├── google_47.png │ │ ├── google_5.png │ │ ├── google_6.png │ │ ├── google_7.png │ │ ├── google_8.png │ │ ├── google_9.png │ │ ├── google_na.webp │ │ ├── icons8_color_hand_0.png │ │ ├── icons8_color_hand_1.png │ │ ├── icons8_color_hand_10.png │ │ ├── icons8_color_hand_11.png │ │ ├── icons8_color_hand_12.png │ │ ├── icons8_color_hand_13.png │ │ ├── icons8_color_hand_14.png │ │ ├── icons8_color_hand_15.png │ │ ├── icons8_color_hand_16.png │ │ ├── icons8_color_hand_17.png │ │ ├── icons8_color_hand_18.png │ │ ├── icons8_color_hand_19.png │ │ ├── icons8_color_hand_2.png │ │ ├── icons8_color_hand_20.png │ │ ├── icons8_color_hand_21.png │ │ ├── icons8_color_hand_22.png │ │ ├── icons8_color_hand_23.png │ │ ├── icons8_color_hand_24.png │ │ ├── icons8_color_hand_25.png │ │ ├── icons8_color_hand_26.png │ │ ├── icons8_color_hand_27.png │ │ ├── icons8_color_hand_28.png │ │ ├── icons8_color_hand_29.png │ │ ├── icons8_color_hand_3.png │ │ ├── icons8_color_hand_30.png │ │ ├── icons8_color_hand_31.png │ │ ├── icons8_color_hand_32.png │ │ ├── icons8_color_hand_33.png │ │ ├── icons8_color_hand_34.png │ │ ├── icons8_color_hand_35.png │ │ ├── icons8_color_hand_36.png │ │ ├── icons8_color_hand_37.png │ │ ├── icons8_color_hand_38.png │ │ ├── icons8_color_hand_39.png │ │ ├── icons8_color_hand_4.png │ │ ├── icons8_color_hand_40.png │ │ ├── icons8_color_hand_41.png │ │ ├── icons8_color_hand_42.png │ │ ├── icons8_color_hand_43.png │ │ ├── icons8_color_hand_44.png │ │ ├── icons8_color_hand_45.png │ │ ├── icons8_color_hand_46.png │ │ ├── icons8_color_hand_47.png │ │ ├── icons8_color_hand_5.png │ │ ├── icons8_color_hand_6.png │ │ ├── icons8_color_hand_7.png │ │ ├── icons8_color_hand_8.png │ │ ├── icons8_color_hand_9.png │ │ ├── icons8_color_hand_na.png │ │ ├── marshmallow_0.png │ │ ├── marshmallow_1.png │ │ ├── marshmallow_10.png │ │ ├── marshmallow_11.png │ │ ├── marshmallow_12.png │ │ ├── marshmallow_13.png │ │ ├── marshmallow_14.png │ │ ├── marshmallow_15.png │ │ ├── marshmallow_16.png │ │ ├── marshmallow_17.png │ │ ├── marshmallow_18.png │ │ ├── marshmallow_19.png │ │ ├── marshmallow_2.png │ │ ├── marshmallow_20.png │ │ ├── marshmallow_21.png │ │ ├── marshmallow_22.png │ │ ├── marshmallow_23.png │ │ ├── marshmallow_24.png │ │ ├── marshmallow_25.png │ │ ├── marshmallow_26.png │ │ ├── marshmallow_27.png │ │ ├── marshmallow_28.png │ │ ├── marshmallow_29.png │ │ ├── marshmallow_3.png │ │ ├── marshmallow_30.png │ │ ├── marshmallow_31.png │ │ ├── marshmallow_32.webp │ │ ├── marshmallow_33.png │ │ ├── marshmallow_34.webp │ │ ├── marshmallow_35.png │ │ ├── marshmallow_36.png │ │ ├── marshmallow_37.png │ │ ├── marshmallow_38.png │ │ ├── marshmallow_39.png │ │ ├── marshmallow_4.png │ │ ├── marshmallow_40.png │ │ ├── marshmallow_41.png │ │ ├── marshmallow_42.png │ │ ├── marshmallow_43.png │ │ ├── marshmallow_44.png │ │ ├── marshmallow_45.png │ │ ├── marshmallow_46.png │ │ ├── marshmallow_47.png │ │ ├── marshmallow_5.png │ │ ├── marshmallow_6.png │ │ ├── marshmallow_7.png │ │ ├── marshmallow_8.png │ │ ├── marshmallow_9.png │ │ ├── marshmallow_na.webp │ │ ├── stickers_0.png │ │ ├── stickers_1.png │ │ ├── stickers_10.png │ │ ├── stickers_11.png │ │ ├── stickers_12.png │ │ ├── stickers_13.png │ │ ├── stickers_14.png │ │ ├── stickers_15.png │ │ ├── stickers_16.png │ │ ├── stickers_17.png │ │ ├── stickers_18.png │ │ ├── stickers_19.png │ │ ├── stickers_2.png │ │ ├── stickers_20.png │ │ ├── stickers_21.png │ │ ├── stickers_22.png │ │ ├── stickers_23.png │ │ ├── stickers_24.png │ │ ├── stickers_25.png │ │ ├── stickers_26.png │ │ ├── stickers_27.png │ │ ├── stickers_28.png │ │ ├── stickers_29.png │ │ ├── stickers_3.png │ │ ├── stickers_30.png │ │ ├── stickers_31.png │ │ ├── stickers_32.png │ │ ├── stickers_33.png │ │ ├── stickers_34.png │ │ ├── stickers_35.png │ │ ├── stickers_36.png │ │ ├── stickers_37.png │ │ ├── stickers_38.png │ │ ├── stickers_39.png │ │ ├── stickers_4.png │ │ ├── stickers_40.png │ │ ├── stickers_41.png │ │ ├── stickers_42.png │ │ ├── stickers_43.png │ │ ├── stickers_44.png │ │ ├── stickers_45.png │ │ ├── stickers_46.png │ │ ├── stickers_47.png │ │ ├── stickers_5.png │ │ ├── stickers_6.png │ │ ├── stickers_7.png │ │ ├── stickers_8.png │ │ ├── stickers_9.png │ │ ├── stickers_na.png │ │ ├── weather_color_0.webp │ │ ├── weather_color_1.png │ │ ├── weather_color_10.png │ │ ├── weather_color_11.png │ │ ├── weather_color_12.png │ │ ├── weather_color_13.png │ │ ├── weather_color_14.png │ │ ├── weather_color_15.png │ │ ├── weather_color_16.png │ │ ├── weather_color_17.png │ │ ├── weather_color_18.png │ │ ├── weather_color_19.png │ │ ├── weather_color_2.png │ │ ├── weather_color_20.png │ │ ├── weather_color_21.png │ │ ├── weather_color_22.png │ │ ├── weather_color_23.webp │ │ ├── weather_color_24.webp │ │ ├── weather_color_25.png │ │ ├── weather_color_26.webp │ │ ├── weather_color_27.webp │ │ ├── weather_color_28.png │ │ ├── weather_color_29.webp │ │ ├── weather_color_3.webp │ │ ├── weather_color_30.png │ │ ├── weather_color_31.webp │ │ ├── weather_color_32.png │ │ ├── weather_color_33.webp │ │ ├── weather_color_34.png │ │ ├── weather_color_35.png │ │ ├── weather_color_36.png │ │ ├── weather_color_37.webp │ │ ├── weather_color_38.webp │ │ ├── weather_color_39.webp │ │ ├── weather_color_4.webp │ │ ├── weather_color_40.webp │ │ ├── weather_color_41.png │ │ ├── weather_color_42.png │ │ ├── weather_color_43.png │ │ ├── weather_color_44.webp │ │ ├── weather_color_45.webp │ │ ├── weather_color_46.webp │ │ ├── weather_color_47.webp │ │ ├── weather_color_5.png │ │ ├── weather_color_6.png │ │ ├── weather_color_7.png │ │ ├── weather_color_8.png │ │ ├── weather_color_9.png │ │ ├── weather_color_na.png │ │ ├── weather_faded_0.png │ │ ├── weather_faded_1.png │ │ ├── weather_faded_10.png │ │ ├── weather_faded_11.png │ │ ├── weather_faded_12.png │ │ ├── weather_faded_13.png │ │ ├── weather_faded_14.png │ │ ├── weather_faded_15.png │ │ ├── weather_faded_16.png │ │ ├── weather_faded_17.png │ │ ├── weather_faded_18.png │ │ ├── weather_faded_19.png │ │ ├── weather_faded_2.png │ │ ├── weather_faded_20.png │ │ ├── weather_faded_21.png │ │ ├── weather_faded_22.png │ │ ├── weather_faded_23.png │ │ ├── weather_faded_24.png │ │ ├── weather_faded_25.png │ │ ├── weather_faded_26.png │ │ ├── weather_faded_27.png │ │ ├── weather_faded_28.png │ │ ├── weather_faded_29.png │ │ ├── weather_faded_3.png │ │ ├── weather_faded_30.png │ │ ├── weather_faded_31.png │ │ ├── weather_faded_32.png │ │ ├── weather_faded_33.png │ │ ├── weather_faded_34.png │ │ ├── weather_faded_35.png │ │ ├── weather_faded_36.png │ │ ├── weather_faded_37.png │ │ ├── weather_faded_38.png │ │ ├── weather_faded_39.png │ │ ├── weather_faded_4.png │ │ ├── weather_faded_40.png │ │ ├── weather_faded_41.png │ │ ├── weather_faded_42.png │ │ ├── weather_faded_43.png │ │ ├── weather_faded_44.png │ │ ├── weather_faded_45.png │ │ ├── weather_faded_46.png │ │ ├── weather_faded_47.png │ │ ├── weather_faded_5.png │ │ ├── weather_faded_6.png │ │ ├── weather_faded_7.png │ │ ├── weather_faded_8.png │ │ ├── weather_faded_9.png │ │ ├── weather_faded_na.png │ │ ├── weather_faded_refresh.png │ │ ├── weather_gs6_0.png │ │ ├── weather_gs6_1.png │ │ ├── weather_gs6_10.png │ │ ├── weather_gs6_11.png │ │ ├── weather_gs6_12.png │ │ ├── weather_gs6_13.png │ │ ├── weather_gs6_14.png │ │ ├── weather_gs6_15.png │ │ ├── weather_gs6_16.png │ │ ├── weather_gs6_17.png │ │ ├── weather_gs6_18.png │ │ ├── weather_gs6_19.png │ │ ├── weather_gs6_2.png │ │ ├── weather_gs6_20.png │ │ ├── weather_gs6_21.png │ │ ├── weather_gs6_22.png │ │ ├── weather_gs6_23.png │ │ ├── weather_gs6_24.png │ │ ├── weather_gs6_25.png │ │ ├── weather_gs6_26.png │ │ ├── weather_gs6_27.png │ │ ├── weather_gs6_28.png │ │ ├── weather_gs6_29.png │ │ ├── weather_gs6_3.png │ │ ├── weather_gs6_30.png │ │ ├── weather_gs6_31.png │ │ ├── weather_gs6_32.png │ │ ├── weather_gs6_33.png │ │ ├── weather_gs6_34.png │ │ ├── weather_gs6_35.png │ │ ├── weather_gs6_36.png │ │ ├── weather_gs6_37.png │ │ ├── weather_gs6_38.png │ │ ├── weather_gs6_39.png │ │ ├── weather_gs6_4.png │ │ ├── weather_gs6_40.png │ │ ├── weather_gs6_41.png │ │ ├── weather_gs6_42.png │ │ ├── weather_gs6_43.png │ │ ├── weather_gs6_44.png │ │ ├── weather_gs6_45.png │ │ ├── weather_gs6_46.png │ │ ├── weather_gs6_47.png │ │ ├── weather_gs6_5.png │ │ ├── weather_gs6_6.png │ │ ├── weather_gs6_7.png │ │ ├── weather_gs6_8.png │ │ ├── weather_gs6_9.png │ │ ├── weather_gs6_na.png │ │ ├── weather_gs6_refresh.png │ │ ├── weather_magical_0.png │ │ ├── weather_magical_1.png │ │ ├── weather_magical_10.png │ │ ├── weather_magical_11.png │ │ ├── weather_magical_12.png │ │ ├── weather_magical_13.png │ │ ├── weather_magical_14.png │ │ ├── weather_magical_15.png │ │ ├── weather_magical_16.png │ │ ├── weather_magical_17.png │ │ ├── weather_magical_18.png │ │ ├── weather_magical_19.png │ │ ├── weather_magical_2.png │ │ ├── weather_magical_20.png │ │ ├── weather_magical_21.png │ │ ├── weather_magical_22.png │ │ ├── weather_magical_23.webp │ │ ├── weather_magical_24.webp │ │ ├── weather_magical_25.png │ │ ├── weather_magical_26.png │ │ ├── weather_magical_27.webp │ │ ├── weather_magical_28.png │ │ ├── weather_magical_29.webp │ │ ├── weather_magical_3.png │ │ ├── weather_magical_30.png │ │ ├── weather_magical_31.webp │ │ ├── weather_magical_32.png │ │ ├── weather_magical_33.webp │ │ ├── weather_magical_34.png │ │ ├── weather_magical_35.png │ │ ├── weather_magical_36.png │ │ ├── weather_magical_37.png │ │ ├── weather_magical_38.png │ │ ├── weather_magical_39.png │ │ ├── weather_magical_4.png │ │ ├── weather_magical_40.png │ │ ├── weather_magical_41.png │ │ ├── weather_magical_42.png │ │ ├── weather_magical_43.png │ │ ├── weather_magical_44.webp │ │ ├── weather_magical_45.png │ │ ├── weather_magical_46.png │ │ ├── weather_magical_47.png │ │ ├── weather_magical_5.png │ │ ├── weather_magical_6.png │ │ ├── weather_magical_7.png │ │ ├── weather_magical_8.png │ │ ├── weather_magical_9.png │ │ ├── weather_magical_na.png │ │ ├── weather_miui_0.png │ │ ├── weather_miui_1.png │ │ ├── weather_miui_10.png │ │ ├── weather_miui_11.png │ │ ├── weather_miui_12.png │ │ ├── weather_miui_13.png │ │ ├── weather_miui_14.png │ │ ├── weather_miui_15.png │ │ ├── weather_miui_16.png │ │ ├── weather_miui_17.png │ │ ├── weather_miui_18.png │ │ ├── weather_miui_19.png │ │ ├── weather_miui_2.png │ │ ├── weather_miui_20.png │ │ ├── weather_miui_21.png │ │ ├── weather_miui_22.png │ │ ├── weather_miui_23.png │ │ ├── weather_miui_24.png │ │ ├── weather_miui_25.png │ │ ├── weather_miui_26.png │ │ ├── weather_miui_27.png │ │ ├── weather_miui_28.png │ │ ├── weather_miui_29.png │ │ ├── weather_miui_3.png │ │ ├── weather_miui_30.png │ │ ├── weather_miui_31.png │ │ ├── weather_miui_32.png │ │ ├── weather_miui_33.png │ │ ├── weather_miui_34.png │ │ ├── weather_miui_35.png │ │ ├── weather_miui_36.png │ │ ├── weather_miui_37.png │ │ ├── weather_miui_38.png │ │ ├── weather_miui_39.png │ │ ├── weather_miui_4.png │ │ ├── weather_miui_40.png │ │ ├── weather_miui_41.png │ │ ├── weather_miui_42.png │ │ ├── weather_miui_43.png │ │ ├── weather_miui_44.png │ │ ├── weather_miui_45.png │ │ ├── weather_miui_46.png │ │ ├── weather_miui_47.png │ │ ├── weather_miui_5.png │ │ ├── weather_miui_6.png │ │ ├── weather_miui_7.png │ │ ├── weather_miui_8.png │ │ ├── weather_miui_9.png │ │ ├── weather_miui_na.png │ │ ├── weather_sthul_0.webp │ │ ├── weather_sthul_1.png │ │ ├── weather_sthul_10.png │ │ ├── weather_sthul_11.png │ │ ├── weather_sthul_12.png │ │ ├── weather_sthul_13.webp │ │ ├── weather_sthul_14.png │ │ ├── weather_sthul_15.webp │ │ ├── weather_sthul_16.webp │ │ ├── weather_sthul_17.png │ │ ├── weather_sthul_18.png │ │ ├── weather_sthul_19.png │ │ ├── weather_sthul_2.png │ │ ├── weather_sthul_20.png │ │ ├── weather_sthul_21.png │ │ ├── weather_sthul_22.png │ │ ├── weather_sthul_23.webp │ │ ├── weather_sthul_24.png │ │ ├── weather_sthul_25.png │ │ ├── weather_sthul_26.png │ │ ├── weather_sthul_27.png │ │ ├── weather_sthul_28.png │ │ ├── weather_sthul_29.webp │ │ ├── weather_sthul_3.png │ │ ├── weather_sthul_30.png │ │ ├── weather_sthul_31.png │ │ ├── weather_sthul_32.png │ │ ├── weather_sthul_33.webp │ │ ├── weather_sthul_34.png │ │ ├── weather_sthul_35.png │ │ ├── weather_sthul_36.png │ │ ├── weather_sthul_37.png │ │ ├── weather_sthul_38.png │ │ ├── weather_sthul_39.png │ │ ├── weather_sthul_4.png │ │ ├── weather_sthul_40.png │ │ ├── weather_sthul_41.webp │ │ ├── weather_sthul_42.webp │ │ ├── weather_sthul_43.webp │ │ ├── weather_sthul_44.webp │ │ ├── weather_sthul_45.png │ │ ├── weather_sthul_46.png │ │ ├── weather_sthul_47.webp │ │ ├── weather_sthul_5.webp │ │ ├── weather_sthul_6.webp │ │ ├── weather_sthul_7.webp │ │ ├── weather_sthul_8.png │ │ ├── weather_sthul_9.png │ │ ├── weather_sthul_na.png │ │ ├── weather_tapas_0.png │ │ ├── weather_tapas_1.png │ │ ├── weather_tapas_10.png │ │ ├── weather_tapas_11.png │ │ ├── weather_tapas_12.png │ │ ├── weather_tapas_13.png │ │ ├── weather_tapas_14.png │ │ ├── weather_tapas_15.png │ │ ├── weather_tapas_16.png │ │ ├── weather_tapas_17.png │ │ ├── weather_tapas_18.png │ │ ├── weather_tapas_19.png │ │ ├── weather_tapas_2.png │ │ ├── weather_tapas_20.png │ │ ├── weather_tapas_21.png │ │ ├── weather_tapas_22.png │ │ ├── weather_tapas_23.png │ │ ├── weather_tapas_24.png │ │ ├── weather_tapas_25.png │ │ ├── weather_tapas_26.png │ │ ├── weather_tapas_27.png │ │ ├── weather_tapas_28.png │ │ ├── weather_tapas_29.png │ │ ├── weather_tapas_3.png │ │ ├── weather_tapas_30.png │ │ ├── weather_tapas_31.png │ │ ├── weather_tapas_32.png │ │ ├── weather_tapas_33.png │ │ ├── weather_tapas_34.png │ │ ├── weather_tapas_35.png │ │ ├── weather_tapas_36.png │ │ ├── weather_tapas_37.png │ │ ├── weather_tapas_38.png │ │ ├── weather_tapas_39.png │ │ ├── weather_tapas_4.png │ │ ├── weather_tapas_40.png │ │ ├── weather_tapas_41.png │ │ ├── weather_tapas_42.png │ │ ├── weather_tapas_43.png │ │ ├── weather_tapas_44.png │ │ ├── weather_tapas_45.png │ │ ├── weather_tapas_46.png │ │ ├── weather_tapas_47.png │ │ ├── weather_vclouds_0.webp │ │ ├── weather_vclouds_1.webp │ │ ├── weather_vclouds_10.webp │ │ ├── weather_vclouds_11.webp │ │ ├── weather_vclouds_12.webp │ │ ├── weather_vclouds_13.webp │ │ ├── weather_vclouds_14.webp │ │ ├── weather_vclouds_15.webp │ │ ├── weather_vclouds_16.webp │ │ ├── weather_vclouds_17.webp │ │ ├── weather_vclouds_18.webp │ │ ├── weather_vclouds_19.png │ │ ├── weather_vclouds_2.webp │ │ ├── weather_vclouds_20.png │ │ ├── weather_vclouds_21.png │ │ ├── weather_vclouds_22.png │ │ ├── weather_vclouds_23.png │ │ ├── weather_vclouds_24.png │ │ ├── weather_vclouds_25.webp │ │ ├── weather_vclouds_26.webp │ │ ├── weather_vclouds_27.webp │ │ ├── weather_vclouds_28.webp │ │ ├── weather_vclouds_29.webp │ │ ├── weather_vclouds_3.webp │ │ ├── weather_vclouds_30.webp │ │ ├── weather_vclouds_31.webp │ │ ├── weather_vclouds_32.webp │ │ ├── weather_vclouds_33.webp │ │ ├── weather_vclouds_34.webp │ │ ├── weather_vclouds_35.webp │ │ ├── weather_vclouds_36.png │ │ ├── weather_vclouds_37.webp │ │ ├── weather_vclouds_38.webp │ │ ├── weather_vclouds_39.webp │ │ ├── weather_vclouds_4.webp │ │ ├── weather_vclouds_40.webp │ │ ├── weather_vclouds_41.webp │ │ ├── weather_vclouds_42.webp │ │ ├── weather_vclouds_43.webp │ │ ├── weather_vclouds_44.png │ │ ├── weather_vclouds_45.webp │ │ ├── weather_vclouds_46.webp │ │ ├── weather_vclouds_47.webp │ │ ├── weather_vclouds_5.webp │ │ ├── weather_vclouds_6.webp │ │ ├── weather_vclouds_7.webp │ │ ├── weather_vclouds_8.webp │ │ ├── weather_vclouds_9.webp │ │ ├── weather_vclouds_na.png │ │ ├── weather_weezle_0.png │ │ ├── weather_weezle_1.png │ │ ├── weather_weezle_10.png │ │ ├── weather_weezle_11.png │ │ ├── weather_weezle_12.png │ │ ├── weather_weezle_13.png │ │ ├── weather_weezle_14.png │ │ ├── weather_weezle_15.png │ │ ├── weather_weezle_16.png │ │ ├── weather_weezle_17.png │ │ ├── weather_weezle_18.png │ │ ├── weather_weezle_19.png │ │ ├── weather_weezle_2.png │ │ ├── weather_weezle_20.png │ │ ├── weather_weezle_21.png │ │ ├── weather_weezle_22.png │ │ ├── weather_weezle_23.png │ │ ├── weather_weezle_24.webp │ │ ├── weather_weezle_25.webp │ │ ├── weather_weezle_26.png │ │ ├── weather_weezle_27.webp │ │ ├── weather_weezle_28.webp │ │ ├── weather_weezle_29.webp │ │ ├── weather_weezle_3.png │ │ ├── weather_weezle_30.webp │ │ ├── weather_weezle_31.webp │ │ ├── weather_weezle_32.webp │ │ ├── weather_weezle_33.webp │ │ ├── weather_weezle_34.webp │ │ ├── weather_weezle_35.png │ │ ├── weather_weezle_36.webp │ │ ├── weather_weezle_37.webp │ │ ├── weather_weezle_38.webp │ │ ├── weather_weezle_39.webp │ │ ├── weather_weezle_4.png │ │ ├── weather_weezle_40.webp │ │ ├── weather_weezle_41.png │ │ ├── weather_weezle_42.png │ │ ├── weather_weezle_43.png │ │ ├── weather_weezle_44.webp │ │ ├── weather_weezle_45.webp │ │ ├── weather_weezle_46.webp │ │ ├── weather_weezle_47.webp │ │ ├── weather_weezle_5.png │ │ ├── weather_weezle_6.png │ │ ├── weather_weezle_7.png │ │ ├── weather_weezle_8.png │ │ ├── weather_weezle_9.png │ │ └── weather_weezle_na.png │ │ ├── drawable-v24 │ │ ├── auto_bb_blocky_thumb.xml │ │ ├── auto_bb_blocky_thumb_pixel.xml │ │ ├── auto_bb_comet_thumb.xml │ │ ├── auto_bb_comet_thumb_pixel.xml │ │ ├── auto_bb_double_layer.xml │ │ ├── auto_bb_double_layer_pixel.xml │ │ ├── auto_bb_gradient_thumb.xml │ │ ├── auto_bb_gradient_thumb_pixel.xml │ │ ├── auto_bb_leafy_outline.xml │ │ ├── auto_bb_leafy_outline_pixel.xml │ │ ├── auto_bb_lighty.xml │ │ ├── auto_bb_lighty_pixel.xml │ │ ├── auto_bb_minimal_thumb.xml │ │ ├── auto_bb_minimal_thumb_pixel.xml │ │ ├── auto_bb_neumorph.xml │ │ ├── auto_bb_neumorph_outline.xml │ │ ├── auto_bb_neumorph_outline_pixel.xml │ │ ├── auto_bb_neumorph_pixel.xml │ │ ├── auto_bb_neumorph_thumb.xml │ │ ├── auto_bb_neumorph_thumb_pixel.xml │ │ ├── auto_bb_oldschool_thumb.xml │ │ ├── auto_bb_oldschool_thumb_pixel.xml │ │ ├── auto_bb_outline.xml │ │ ├── auto_bb_outline_pixel.xml │ │ ├── auto_bb_purfect.xml │ │ ├── auto_bb_purfect_pixel.xml │ │ ├── auto_bb_rounded.xml │ │ ├── auto_bb_rounded_pixel.xml │ │ ├── auto_bb_roundedclip.xml │ │ ├── auto_bb_roundedclip_pixel.xml │ │ ├── auto_bb_semi_transparent.xml │ │ ├── auto_bb_semi_transparent_pixel.xml │ │ ├── auto_bb_shaded_layer.xml │ │ ├── auto_bb_shaded_layer_pixel.xml │ │ ├── auto_bb_thin_outline.xml │ │ ├── auto_bb_thin_outline_pixel.xml │ │ ├── auto_bb_translucent_outline.xml │ │ ├── auto_bb_translucent_outline_pixel.xml │ │ ├── bb_blocky_thumb.xml │ │ ├── bb_blocky_thumb_pixel.xml │ │ ├── bb_comet_thumb.xml │ │ ├── bb_comet_thumb_pixel.xml │ │ ├── bb_double_layer.xml │ │ ├── bb_double_layer_pixel.xml │ │ ├── bb_gradient_thumb.xml │ │ ├── bb_gradient_thumb_pixel.xml │ │ ├── bb_inline.xml │ │ ├── bb_inline_pixel.xml │ │ ├── bb_leafy_outline.xml │ │ ├── bb_leafy_outline_pixel.xml │ │ ├── bb_lighty.xml │ │ ├── bb_lighty_pixel.xml │ │ ├── bb_minimal_thumb.xml │ │ ├── bb_minimal_thumb_pixel.xml │ │ ├── bb_neumorph.xml │ │ ├── bb_neumorph_outline.xml │ │ ├── bb_neumorph_outline_pixel.xml │ │ ├── bb_neumorph_pixel.xml │ │ ├── bb_neumorph_thumb.xml │ │ ├── bb_neumorph_thumb_pixel.xml │ │ ├── bb_oldschool_thumb.xml │ │ ├── bb_oldschool_thumb_pixel.xml │ │ ├── bb_outline.xml │ │ ├── bb_outline_pixel.xml │ │ ├── bb_purfect.xml │ │ ├── bb_purfect_pixel.xml │ │ ├── bb_rounded.xml │ │ ├── bb_rounded_pixel.xml │ │ ├── bb_roundedclip.xml │ │ ├── bb_roundedclip_pixel.xml │ │ ├── bb_semi_transparent.xml │ │ ├── bb_semi_transparent_pixel.xml │ │ ├── bb_shaded_layer.xml │ │ ├── bb_shaded_layer_pixel.xml │ │ ├── bb_thin_outline.xml │ │ ├── bb_thin_outline_pixel.xml │ │ ├── bb_translucent_outline.xml │ │ ├── bb_translucent_outline_pixel.xml │ │ ├── bottom_navbar_bg.xml │ │ ├── brightness_bg.xml │ │ ├── brightness_bg_pixel.xml │ │ ├── button.xml │ │ ├── button_round.xml │ │ ├── color_table_bottom_left.xml │ │ ├── color_table_bottom_right.xml │ │ ├── color_table_square.xml │ │ ├── color_table_top_left.xml │ │ ├── color_table_top_right.xml │ │ ├── container_bottom.xml │ │ ├── container_main.xml │ │ ├── container_main_less_rounded.xml │ │ ├── container_main_less_rounded_no_ripple.xml │ │ ├── container_main_no_ripple.xml │ │ ├── container_menu.xml │ │ ├── container_mid.xml │ │ ├── container_no_ripple.xml │ │ ├── container_outline.xml │ │ ├── container_selected.xml │ │ ├── container_semi_transparent.xml │ │ ├── container_top.xml │ │ ├── divider_accent.xml │ │ ├── dropdown_bg.xml │ │ ├── dropdown_item_bg.xml │ │ ├── flexbox_divider.xml │ │ ├── flexbox_divider_large.xml │ │ ├── ic_actions.xml │ │ ├── ic_android.webp │ │ ├── ic_app_icon.xml │ │ ├── ic_app_theme.xml │ │ ├── ic_app_updated.xml │ │ ├── ic_arrow_end.xml │ │ ├── ic_auto_update.xml │ │ ├── ic_auto_update_wifi_only.xml │ │ ├── ic_basic_colors.xml │ │ ├── ic_branding.xml │ │ ├── ic_brightness_full.xml │ │ ├── ic_brightness_low.xml │ │ ├── ic_brightness_off.xml │ │ ├── ic_brightness_off_white.xml │ │ ├── ic_cancel.xml │ │ ├── ic_card.xml │ │ ├── ic_changelog.xml │ │ ├── ic_check_update.xml │ │ ├── ic_clear_cache.xml │ │ ├── ic_close.xml │ │ ├── ic_collapse_arrow.webp │ │ ├── ic_colored_battery.xml │ │ ├── ic_credits.xml │ │ ├── ic_disable_everything.xml │ │ ├── ic_download.webp │ │ ├── ic_dynamic_color.xml │ │ ├── ic_expand_arrow.webp │ │ ├── ic_experimental.xml │ │ ├── ic_github.xml │ │ ├── ic_hide.webp │ │ ├── ic_home.xml │ │ ├── ic_home_as_up_indicator.xml │ │ ├── ic_home_extras.xml │ │ ├── ic_home_info.xml │ │ ├── ic_humidity_symbol.xml │ │ ├── ic_info.xml │ │ ├── ic_language.xml │ │ ├── ic_launcher_bg.xml │ │ ├── ic_launcher_bg2.xml │ │ ├── ic_launcher_fg.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_foreground_retro.xml │ │ ├── ic_launcher_foreground_themed.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── ic_link.xml │ │ ├── ic_media_player_icon.xml │ │ ├── ic_menu.xml │ │ ├── ic_minus.xml │ │ ├── ic_monet_engine.xml │ │ ├── ic_navbar_home.xml │ │ ├── ic_navbar_home_checked.xml │ │ ├── ic_navbar_home_unchecked.xml │ │ ├── ic_navbar_settings.xml │ │ ├── ic_navbar_settings_checked.xml │ │ ├── ic_navbar_settings_unchecked.xml │ │ ├── ic_navbar_tweaks.xml │ │ ├── ic_navbar_tweaks_checked.xml │ │ ├── ic_navbar_tweaks_unchecked.xml │ │ ├── ic_navbar_xposed.xml │ │ ├── ic_navbar_xposed_checked.xml │ │ ├── ic_navbar_xposed_unchecked.xml │ │ ├── ic_next.xml │ │ ├── ic_open.xml │ │ ├── ic_pause.xml │ │ ├── ic_pixel_device.xml │ │ ├── ic_play.xml │ │ ├── ic_plus.xml │ │ ├── ic_plus_minus.xml │ │ ├── ic_prev.xml │ │ ├── ic_qs_airplane.xml │ │ ├── ic_qs_bluetooth.xml │ │ ├── ic_qs_icon_and_label.xml │ │ ├── ic_qs_internet.xml │ │ ├── ic_qs_location.xml │ │ ├── ic_qs_row_column.xml │ │ ├── ic_qs_tile_size.xml │ │ ├── ic_qs_top_margin.xml │ │ ├── ic_reset.xml │ │ ├── ic_restart_device.xml │ │ ├── ic_restart_systemui_after_boot.xml │ │ ├── ic_ringer_mute.xml │ │ ├── ic_ringer_normal.xml │ │ ├── ic_ringer_vibrate.xml │ │ ├── ic_settings_icon_pack.xml │ │ ├── ic_smartphone.xml │ │ ├── ic_splash.xml │ │ ├── ic_styles_brightness.xml │ │ ├── ic_styles_icon_shape.xml │ │ ├── ic_styles_iconpack.xml │ │ ├── ic_styles_notification.xml │ │ ├── ic_styles_progress.xml │ │ ├── ic_styles_qs_shape.xml │ │ ├── ic_styles_signal_icons.xml │ │ ├── ic_styles_switch.xml │ │ ├── ic_styles_toast_frame.xml │ │ ├── ic_styles_wifi_icons.xml │ │ ├── ic_switch_outline_thumb_power_off.xml │ │ ├── ic_switch_outline_thumb_power_on.xml │ │ ├── ic_telegram.xml │ │ ├── ic_tick.xml │ │ ├── ic_tile_monet_engine.xml │ │ ├── ic_tile_notch_bar_killer.xml │ │ ├── ic_tile_pitch_black.xml │ │ ├── ic_tile_restart_systemui.xml │ │ ├── ic_tile_restart_systemui_aurora.xml │ │ ├── ic_tile_restart_systemui_gradicon.xml │ │ ├── ic_tile_restart_systemui_lorn.xml │ │ ├── ic_tile_restart_systemui_plumpy.xml │ │ ├── ic_tweaks_color.xml │ │ ├── ic_tweaks_media.xml │ │ ├── ic_tweaks_miscellaneous.xml │ │ ├── ic_tweaks_navbar.xml │ │ ├── ic_tweaks_qs_panel.xml │ │ ├── ic_tweaks_roundness.xml │ │ ├── ic_tweaks_statusbar.xml │ │ ├── ic_tweaks_volume.xml │ │ ├── ic_tweaks_xposed_menu.xml │ │ ├── ic_update.xml │ │ ├── ic_user.xml │ │ ├── ic_volume_audio.xml │ │ ├── ic_volume_media.xml │ │ ├── ic_volume_menu.xml │ │ ├── ic_wind_symbol.xml │ │ ├── ic_xposed_background_chip.xml │ │ ├── ic_xposed_clock.xml │ │ ├── ic_xposed_depth_wallpaper.xml │ │ ├── ic_xposed_disabled.xml │ │ ├── ic_xposed_header_image.xml │ │ ├── ic_xposed_lockscreen.xml │ │ ├── ic_xposed_lockscreen_widgets.xml │ │ ├── ic_xposed_misc.xml │ │ ├── ic_xposed_quick_settings.xml │ │ ├── ic_xposed_restart_systemui.xml │ │ ├── ic_xposed_themes.xml │ │ ├── ic_xposed_transparency_blur.xml │ │ ├── ic_xposed_warn.xml │ │ ├── icon_shape_cloudy.xml │ │ ├── icon_shape_cylinder.xml │ │ ├── icon_shape_flower.xml │ │ ├── icon_shape_force_round.xml │ │ ├── icon_shape_heart.xml │ │ ├── icon_shape_ios.xml │ │ ├── icon_shape_leaf.xml │ │ ├── icon_shape_none.xml │ │ ├── icon_shape_pebble.xml │ │ ├── icon_shape_rohie_meow.xml │ │ ├── icon_shape_rounded_hexagon.xml │ │ ├── icon_shape_rounded_rectangle.xml │ │ ├── icon_shape_samsung.xml │ │ ├── icon_shape_scroll.xml │ │ ├── icon_shape_square.xml │ │ ├── icon_shape_stretched.xml │ │ ├── icon_shape_tapered_rectangle.xml │ │ ├── icon_shape_teardrops.xml │ │ ├── icon_shape_vessel.xml │ │ ├── img_home_card_bg.webp │ │ ├── item_background_material.xml │ │ ├── item_background_material_error.xml │ │ ├── item_background_material_rounded.xml │ │ ├── item_master_background_material.xml │ │ ├── media_player_album_art_bg.xml │ │ ├── media_player_album_art_bg_black.xml │ │ ├── media_player_album_art_fg.xml │ │ ├── media_player_bg_accent.xml │ │ ├── media_player_bg_black.xml │ │ ├── media_player_bg_white.xml │ │ ├── media_playeralbum_art_bg_accent.xml │ │ ├── menu_icon_bg.xml │ │ ├── notif_bottom_outline.xml │ │ ├── notif_cyberponk.xml │ │ ├── notif_cyberponk_v2.xml │ │ ├── notif_default.xml │ │ ├── notif_dumbbell.xml │ │ ├── notif_duoline.xml │ │ ├── notif_faded.xml │ │ ├── notif_ios.xml │ │ ├── notif_layers.xml │ │ ├── notif_leafy_outline.xml │ │ ├── notif_lighty.xml │ │ ├── notif_neumorph.xml │ │ ├── notif_neumorph_outline.xml │ │ ├── notif_outline.xml │ │ ├── notif_pitch_black.xml │ │ ├── notif_semi_transparent.xml │ │ ├── notif_side_stack.xml │ │ ├── notif_stack.xml │ │ ├── notif_thin_outline.xml │ │ ├── notif_thread_line.xml │ │ ├── preview_acherus_airplane.xml │ │ ├── preview_acherus_location.xml │ │ ├── preview_acherus_signal.xml │ │ ├── preview_acherus_wifi.xml │ │ ├── preview_aquarium_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_aquarium_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_aquarium_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_aquarium_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_aurora_airplane.xml │ │ ├── preview_aurora_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_aurora_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_aurora_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_aurora_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_aurora_ic_wifi_signal_1.xml │ │ ├── preview_aurora_ic_wifi_signal_2.xml │ │ ├── preview_aurora_ic_wifi_signal_3.xml │ │ ├── preview_aurora_ic_wifi_signal_4.xml │ │ ├── preview_aurora_location.xml │ │ ├── preview_aurora_signal.xml │ │ ├── preview_aurora_wifi.xml │ │ ├── preview_bars_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_bars_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_bars_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_bars_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_bars_ic_wifi_signal_1.xml │ │ ├── preview_bars_ic_wifi_signal_2.xml │ │ ├── preview_bars_ic_wifi_signal_3.xml │ │ ├── preview_bars_ic_wifi_signal_4.xml │ │ ├── preview_bubble_v1_1.xml │ │ ├── preview_bubble_v1_2.xml │ │ ├── preview_bubble_v1_3.xml │ │ ├── preview_bubble_v1_4.xml │ │ ├── preview_bubble_v2_1.xml │ │ ├── preview_bubble_v2_2.xml │ │ ├── preview_bubble_v2_3.xml │ │ ├── preview_bubble_v2_4.xml │ │ ├── preview_butterfly_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_butterfly_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_butterfly_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_butterfly_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_circle_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_circle_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_circle_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_circle_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_circular_airplane.xml │ │ ├── preview_circular_location.xml │ │ ├── preview_circular_signal.xml │ │ ├── preview_circular_wifi.xml │ │ ├── preview_color_picker.xml │ │ ├── preview_color_picker_border.xml │ │ ├── preview_color_picker_large.xml │ │ ├── preview_color_picker_primary.xml │ │ ├── preview_color_picker_secondary.xml │ │ ├── preview_daun_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_daun_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_daun_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_daun_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_dec_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_dec_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_dec_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_dec_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_deep_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_deep_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_deep_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_deep_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_dora_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_dora_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_dora_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_dora_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_dora_ic_wifi_signal_1.xml │ │ ├── preview_dora_ic_wifi_signal_2.xml │ │ ├── preview_dora_ic_wifi_signal_3.xml │ │ ├── preview_dora_ic_wifi_signal_4.xml │ │ ├── preview_equal_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_equal_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_equal_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_equal_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_faint_ui_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_faint_ui_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_faint_ui_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_faint_ui_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_faint_ui_ic_wifi_signal_1.xml │ │ ├── preview_faint_ui_ic_wifi_signal_2.xml │ │ ├── preview_faint_ui_ic_wifi_signal_3.xml │ │ ├── preview_faint_ui_ic_wifi_signal_4.xml │ │ ├── preview_fan_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_fan_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_fan_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_fan_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_filled_airplane.xml │ │ ├── preview_filled_location.xml │ │ ├── preview_filled_signal.xml │ │ ├── preview_filled_wifi.xml │ │ ├── preview_gradicon_airplane.xml │ │ ├── preview_gradicon_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_gradicon_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_gradicon_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_gradicon_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_gradicon_ic_wifi_signal_1.xml │ │ ├── preview_gradicon_ic_wifi_signal_2.xml │ │ ├── preview_gradicon_ic_wifi_signal_3.xml │ │ ├── preview_gradicon_ic_wifi_signal_4.xml │ │ ├── preview_gradicon_location.xml │ │ ├── preview_gradicon_signal.xml │ │ ├── preview_gradicon_wifi.xml │ │ ├── preview_huawei_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_huawei_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_huawei_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_huawei_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_inside_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_inside_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_inside_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_inside_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_inside_ic_wifi_signal_1.xml │ │ ├── preview_inside_ic_wifi_signal_2.xml │ │ ├── preview_inside_ic_wifi_signal_3.xml │ │ ├── preview_inside_ic_wifi_signal_4.xml │ │ ├── preview_ios_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_ios_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_ios_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_ios_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_kai_airplane.xml │ │ ├── preview_kai_location.xml │ │ ├── preview_kai_signal.xml │ │ ├── preview_kai_wifi.xml │ │ ├── preview_lorn_airplane.xml │ │ ├── preview_lorn_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_lorn_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_lorn_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_lorn_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_lorn_ic_wifi_signal_1.xml │ │ ├── preview_lorn_ic_wifi_signal_2.xml │ │ ├── preview_lorn_ic_wifi_signal_3.xml │ │ ├── preview_lorn_ic_wifi_signal_4.xml │ │ ├── preview_lorn_location.xml │ │ ├── preview_lorn_signal.xml │ │ ├── preview_lorn_wifi.xml │ │ ├── preview_mini_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_mini_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_mini_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_mini_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_nothing_dot_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_nothing_dot_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_nothing_dot_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_nothing_dot_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_nothing_dot_ic_wifi_signal_1.xml │ │ ├── preview_nothing_dot_ic_wifi_signal_2.xml │ │ ├── preview_nothing_dot_ic_wifi_signal_3.xml │ │ ├── preview_nothing_dot_ic_wifi_signal_4.xml │ │ ├── preview_odin_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_odin_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_odin_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_odin_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_oos_airplane.xml │ │ ├── preview_oos_location.xml │ │ ├── preview_oos_signal.xml │ │ ├── preview_oos_wifi.xml │ │ ├── preview_outline_airplane.xml │ │ ├── preview_outline_location.xml │ │ ├── preview_outline_signal.xml │ │ ├── preview_outline_wifi.xml │ │ ├── preview_pills_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_pills_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_pills_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_pills_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_plumpy_airplane.xml │ │ ├── preview_plumpy_battery.xml │ │ ├── preview_plumpy_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_plumpy_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_plumpy_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_plumpy_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_plumpy_ic_wifi_signal_1.xml │ │ ├── preview_plumpy_ic_wifi_signal_2.xml │ │ ├── preview_plumpy_ic_wifi_signal_3.xml │ │ ├── preview_plumpy_ic_wifi_signal_4.xml │ │ ├── preview_plumpy_location.xml │ │ ├── preview_plumpy_signal.xml │ │ ├── preview_plumpy_vibrate.xml │ │ ├── preview_plumpy_wifi.xml │ │ ├── preview_pui_airplane.xml │ │ ├── preview_pui_location.xml │ │ ├── preview_pui_signal.xml │ │ ├── preview_pui_wifi.xml │ │ ├── preview_rel_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_rel_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_rel_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_rel_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_roman_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_roman_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_roman_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_roman_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_round_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_round_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_round_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_round_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_round_ic_wifi_signal_1.xml │ │ ├── preview_round_ic_wifi_signal_2.xml │ │ ├── preview_round_ic_wifi_signal_3.xml │ │ ├── preview_round_ic_wifi_signal_4.xml │ │ ├── preview_rounded_airplane.xml │ │ ├── preview_rounded_location.xml │ │ ├── preview_rounded_signal.xml │ │ ├── preview_rounded_wifi.xml │ │ ├── preview_sam_airplane.xml │ │ ├── preview_sam_location.xml │ │ ├── preview_sam_signal.xml │ │ ├── preview_sam_wifi.xml │ │ ├── preview_scroll_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_scroll_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_scroll_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_scroll_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_sea_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_sea_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_sea_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_sea_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_seekbar_blocky_thumb.xml │ │ ├── preview_seekbar_default.xml │ │ ├── preview_seekbar_divided.xml │ │ ├── preview_seekbar_gradient_thumb.xml │ │ ├── preview_seekbar_inline.xml │ │ ├── preview_seekbar_lighty.xml │ │ ├── preview_seekbar_minimal_thumb.xml │ │ ├── preview_seekbar_no_thumb.xml │ │ ├── preview_seekbar_oldschool_thumb.xml │ │ ├── preview_seekbar_outline_thumb.xml │ │ ├── preview_seekbar_thin_track.xml │ │ ├── preview_sneaky_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_sneaky_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_sneaky_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_sneaky_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_sneaky_ic_wifi_signal_1.xml │ │ ├── preview_sneaky_ic_wifi_signal_2.xml │ │ ├── preview_sneaky_ic_wifi_signal_3.xml │ │ ├── preview_sneaky_ic_wifi_signal_4.xml │ │ ├── preview_stack_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_stack_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_stack_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_stack_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_stroke_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_stroke_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_stroke_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_stroke_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_stroke_ic_wifi_signal_1.xml │ │ ├── preview_stroke_ic_wifi_signal_2.xml │ │ ├── preview_stroke_ic_wifi_signal_3.xml │ │ ├── preview_stroke_ic_wifi_signal_4.xml │ │ ├── preview_victor_airplane.xml │ │ ├── preview_victor_location.xml │ │ ├── preview_victor_signal.xml │ │ ├── preview_victor_wifi.xml │ │ ├── preview_wannui_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_wannui_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_wannui_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_wannui_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_wavy_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_wavy_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_wavy_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_wavy_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_wavy_ic_wifi_signal_1.xml │ │ ├── preview_wavy_ic_wifi_signal_2.xml │ │ ├── preview_wavy_ic_wifi_signal_3.xml │ │ ├── preview_wavy_ic_wifi_signal_4.xml │ │ ├── preview_weed_ic_wifi_signal_1.xml │ │ ├── preview_weed_ic_wifi_signal_2.xml │ │ ├── preview_weed_ic_wifi_signal_3.xml │ │ ├── preview_weed_ic_wifi_signal_4.xml │ │ ├── preview_windows_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_windows_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_windows_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_windows_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_wing_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_wing_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_wing_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_wing_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_xperia_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_xperia_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_xperia_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_xperia_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_xperia_ic_wifi_signal_1.xml │ │ ├── preview_xperia_ic_wifi_signal_2.xml │ │ ├── preview_xperia_ic_wifi_signal_3.xml │ │ ├── preview_xperia_ic_wifi_signal_4.xml │ │ ├── preview_zigzag_ic_signal_cellular_1_4_bar.xml │ │ ├── preview_zigzag_ic_signal_cellular_2_4_bar.xml │ │ ├── preview_zigzag_ic_signal_cellular_3_4_bar.xml │ │ ├── preview_zigzag_ic_signal_cellular_4_4_bar.xml │ │ ├── preview_zigzag_ic_wifi_signal_1.xml │ │ ├── preview_zigzag_ic_wifi_signal_2.xml │ │ ├── preview_zigzag_ic_wifi_signal_3.xml │ │ ├── preview_zigzag_ic_wifi_signal_4.xml │ │ ├── qs_shape_bookmark_arrow_disabled_bg.xml │ │ ├── qs_shape_bookmark_arrow_disabled_bg_pixel.xml │ │ ├── qs_shape_bookmark_arrow_enabled_bg.xml │ │ ├── qs_shape_bookmark_arrow_enabled_bg_pixel.xml │ │ ├── qs_shape_bookmark_arrow_fg.xml │ │ ├── qs_shape_bookmark_arrow_fg_pixel.xml │ │ ├── qs_shape_bookmark_disabled.xml │ │ ├── qs_shape_bookmark_disabled_pixel.xml │ │ ├── qs_shape_bookmark_enabled.xml │ │ ├── qs_shape_bookmark_enabled_pixel.xml │ │ ├── qs_shape_bottom_outline_disabled.xml │ │ ├── qs_shape_bottom_outline_disabled_pixel.xml │ │ ├── qs_shape_bottom_outline_enabled.xml │ │ ├── qs_shape_bottom_outline_enabled_pixel.xml │ │ ├── qs_shape_cyberponk_disabled.xml │ │ ├── qs_shape_cyberponk_disabled_pixel.xml │ │ ├── qs_shape_cyberponk_enabled.xml │ │ ├── qs_shape_cyberponk_enabled_pixel.xml │ │ ├── qs_shape_cyberponk_v2_disabled.xml │ │ ├── qs_shape_cyberponk_v2_disabled_pixel.xml │ │ ├── qs_shape_cyberponk_v2_enabled.xml │ │ ├── qs_shape_cyberponk_v2_enabled_pixel.xml │ │ ├── qs_shape_default_disabled.xml │ │ ├── qs_shape_default_disabled_pixel.xml │ │ ├── qs_shape_default_enabled.xml │ │ ├── qs_shape_default_enabled_pixel.xml │ │ ├── qs_shape_divided_disabled.xml │ │ ├── qs_shape_divided_disabled_pixel.xml │ │ ├── qs_shape_divided_enabled.xml │ │ ├── qs_shape_divided_enabled_pixel.xml │ │ ├── qs_shape_doublelayer_disabled.xml │ │ ├── qs_shape_doublelayer_disabled_pixel.xml │ │ ├── qs_shape_doublelayer_enabled.xml │ │ ├── qs_shape_doublelayer_enabled_pixel.xml │ │ ├── qs_shape_leafy_outline_disabled.xml │ │ ├── qs_shape_leafy_outline_disabled_pixel.xml │ │ ├── qs_shape_leafy_outline_enabled.xml │ │ ├── qs_shape_leafy_outline_enabled_pixel.xml │ │ ├── qs_shape_lighty_disabled.xml │ │ ├── qs_shape_lighty_disabled_pixel.xml │ │ ├── qs_shape_lighty_enabled.xml │ │ ├── qs_shape_lighty_enabled_pixel.xml │ │ ├── qs_shape_neumorph_disabled.xml │ │ ├── qs_shape_neumorph_disabled_pixel.xml │ │ ├── qs_shape_neumorph_enabled.xml │ │ ├── qs_shape_neumorph_enabled_pixel.xml │ │ ├── qs_shape_neumorph_outline_disabled.xml │ │ ├── qs_shape_neumorph_outline_disabled_pixel.xml │ │ ├── qs_shape_neumorph_outline_enabled.xml │ │ ├── qs_shape_neumorph_outline_enabled_pixel.xml │ │ ├── qs_shape_outline_disabled.xml │ │ ├── qs_shape_outline_disabled_pixel.xml │ │ ├── qs_shape_outline_enabled.xml │ │ ├── qs_shape_outline_enabled_pixel.xml │ │ ├── qs_shape_preview_disabled.xml │ │ ├── qs_shape_preview_enabled.xml │ │ ├── qs_shape_purfect_disabled.xml │ │ ├── qs_shape_purfect_disabled_pixel.xml │ │ ├── qs_shape_purfect_enabled.xml │ │ ├── qs_shape_purfect_enabled_pixel.xml │ │ ├── qs_shape_reflected_disabled.xml │ │ ├── qs_shape_reflected_disabled_pixel.xml │ │ ├── qs_shape_reflected_enabled.xml │ │ ├── qs_shape_reflected_enabled_pixel.xml │ │ ├── qs_shape_reflected_fill_disabled.xml │ │ ├── qs_shape_reflected_fill_disabled_pixel.xml │ │ ├── qs_shape_reflected_fill_enabled.xml │ │ ├── qs_shape_reflected_fill_enabled_pixel.xml │ │ ├── qs_shape_semi_transparent_disabled.xml │ │ ├── qs_shape_semi_transparent_disabled_pixel.xml │ │ ├── qs_shape_semi_transparent_enabled.xml │ │ ├── qs_shape_semi_transparent_enabled_pixel.xml │ │ ├── qs_shape_shadedlayer_disabled.xml │ │ ├── qs_shape_shadedlayer_disabled_pixel.xml │ │ ├── qs_shape_shadedlayer_enabled.xml │ │ ├── qs_shape_shadedlayer_enabled_pixel.xml │ │ ├── qs_shape_surround_disabled.xml │ │ ├── qs_shape_surround_disabled_pixel.xml │ │ ├── qs_shape_surround_enabled.xml │ │ ├── qs_shape_surround_enabled_pixel.xml │ │ ├── qs_shape_thin_outline_disabled.xml │ │ ├── qs_shape_thin_outline_disabled_pixel.xml │ │ ├── qs_shape_thin_outline_enabled.xml │ │ ├── qs_shape_thin_outline_enabled_pixel.xml │ │ ├── qs_shape_translucent_outline_disabled.xml │ │ ├── qs_shape_translucent_outline_disabled_pixel.xml │ │ ├── qs_shape_translucent_outline_enabled.xml │ │ ├── qs_shape_translucent_outline_enabled_pixel.xml │ │ ├── radio_sb_button_bg.xml │ │ ├── radio_sb_tab_bg.xml │ │ ├── radio_sb_text_color.xml │ │ ├── seekbar_background.xml │ │ ├── seekbar_progress.xml │ │ ├── seekbar_progress_drawable.xml │ │ ├── seekbar_thumb.xml │ │ ├── switch_checkmark_thumb.xml │ │ ├── switch_checkmark_thumb_off.webp │ │ ├── switch_checkmark_thumb_on.webp │ │ ├── switch_checkmark_track.xml │ │ ├── switch_emoji_thumb.xml │ │ ├── switch_emoji_thumb_off.webp │ │ ├── switch_emoji_thumb_on.webp │ │ ├── switch_emoji_track.xml │ │ ├── switch_foggy_thumb.xml │ │ ├── switch_foggy_thumb_off.webp │ │ ├── switch_foggy_thumb_on.webp │ │ ├── switch_foggy_track.xml │ │ ├── switch_ios_thumb.xml │ │ ├── switch_ios_track.xml │ │ ├── switch_material_thumb.xml │ │ ├── switch_material_track.xml │ │ ├── switch_minimal_thumb.xml │ │ ├── switch_minimal_track.xml │ │ ├── switch_neumorph_thumb.xml │ │ ├── switch_neumorph_track.xml │ │ ├── switch_outline_thumb.xml │ │ ├── switch_outline_track.xml │ │ ├── switch_realme_thumb.xml │ │ ├── switch_realme_track.xml │ │ ├── switch_shaded_thumb.xml │ │ ├── switch_shaded_track.xml │ │ ├── switch_thumb.xml │ │ ├── switch_thumb_disabled.xml │ │ ├── switch_thumb_off.xml │ │ ├── switch_thumb_on.xml │ │ ├── switch_tiny_thumb.xml │ │ ├── switch_tiny_track.xml │ │ ├── switch_track.xml │ │ ├── switch_track_disabled.xml │ │ ├── switch_track_off.xml │ │ ├── switch_track_on.xml │ │ ├── toast_frame_style_1.xml │ │ ├── toast_frame_style_10.xml │ │ ├── toast_frame_style_11.xml │ │ ├── toast_frame_style_12.xml │ │ ├── toast_frame_style_2.xml │ │ ├── toast_frame_style_3.xml │ │ ├── toast_frame_style_4.xml │ │ ├── toast_frame_style_5.xml │ │ ├── toast_frame_style_6.xml │ │ ├── toast_frame_style_7.xml │ │ ├── toast_frame_style_8.xml │ │ ├── toast_frame_style_9.xml │ │ ├── top_appbar_bg.xml │ │ ├── volume_background.xml │ │ ├── volume_container.xml │ │ ├── volume_default.xml │ │ ├── volume_double_layer.xml │ │ ├── volume_gradient.xml │ │ ├── volume_neumorph.xml │ │ ├── volume_neumorph_outline.xml │ │ ├── volume_neumorph_outline_ringer.xml │ │ ├── volume_outline.xml │ │ ├── volume_outline_ringer.xml │ │ └── volume_shaded_layer.xml │ │ ├── drawable │ │ ├── action_bar_item_background_material.xml │ │ ├── action_bar_item_background_material_error.xml │ │ ├── ambient_indication_pill_background.xml │ │ ├── arc_progress.xml │ │ ├── calendar_bg.webp │ │ ├── circle.xml │ │ ├── clock_bg.webp │ │ ├── container.xml │ │ ├── container_background_accent.xml │ │ ├── container_preference_category.xml │ │ ├── container_small.xml │ │ ├── custom_background.xml │ │ ├── custom_background_1.xml │ │ ├── custom_background_2.xml │ │ ├── custom_background_less_rounded.xml │ │ ├── date_box_str_border.xml │ │ ├── date_str_accent.xml │ │ ├── date_str_border.xml │ │ ├── date_str_borderacc.xml │ │ ├── date_str_bordergrad.xml │ │ ├── date_str_gradient.xml │ │ ├── default_avatar.webp │ │ ├── google_new_dark_0.xml │ │ ├── google_new_dark_1.xml │ │ ├── google_new_dark_10.xml │ │ ├── google_new_dark_11.xml │ │ ├── google_new_dark_12.xml │ │ ├── google_new_dark_13.xml │ │ ├── google_new_dark_14.xml │ │ ├── google_new_dark_15.xml │ │ ├── google_new_dark_16.xml │ │ ├── google_new_dark_17.xml │ │ ├── google_new_dark_18.xml │ │ ├── google_new_dark_19.xml │ │ ├── google_new_dark_2.xml │ │ ├── google_new_dark_20.xml │ │ ├── google_new_dark_21.xml │ │ ├── google_new_dark_22.xml │ │ ├── google_new_dark_23.xml │ │ ├── google_new_dark_24.xml │ │ ├── google_new_dark_25.xml │ │ ├── google_new_dark_26.xml │ │ ├── google_new_dark_27.xml │ │ ├── google_new_dark_28.xml │ │ ├── google_new_dark_29.xml │ │ ├── google_new_dark_3.xml │ │ ├── google_new_dark_30.xml │ │ ├── google_new_dark_31.xml │ │ ├── google_new_dark_32.xml │ │ ├── google_new_dark_33.xml │ │ ├── google_new_dark_34.xml │ │ ├── google_new_dark_35.xml │ │ ├── google_new_dark_36.xml │ │ ├── google_new_dark_37.xml │ │ ├── google_new_dark_38.xml │ │ ├── google_new_dark_39.xml │ │ ├── google_new_dark_4.xml │ │ ├── google_new_dark_40.xml │ │ ├── google_new_dark_41.xml │ │ ├── google_new_dark_42.xml │ │ ├── google_new_dark_43.xml │ │ ├── google_new_dark_44.xml │ │ ├── google_new_dark_45.xml │ │ ├── google_new_dark_46.xml │ │ ├── google_new_dark_47.xml │ │ ├── google_new_dark_5.xml │ │ ├── google_new_dark_6.xml │ │ ├── google_new_dark_7.xml │ │ ├── google_new_dark_8.xml │ │ ├── google_new_dark_9.xml │ │ ├── google_new_dark_na.xml │ │ ├── google_new_light_0.xml │ │ ├── google_new_light_1.xml │ │ ├── google_new_light_10.xml │ │ ├── google_new_light_11.xml │ │ ├── google_new_light_12.xml │ │ ├── google_new_light_13.xml │ │ ├── google_new_light_14.xml │ │ ├── google_new_light_15.xml │ │ ├── google_new_light_16.xml │ │ ├── google_new_light_17.xml │ │ ├── google_new_light_18.xml │ │ ├── google_new_light_19.xml │ │ ├── google_new_light_2.xml │ │ ├── google_new_light_20.xml │ │ ├── google_new_light_21.xml │ │ ├── google_new_light_22.xml │ │ ├── google_new_light_23.xml │ │ ├── google_new_light_24.xml │ │ ├── google_new_light_25.xml │ │ ├── google_new_light_26.xml │ │ ├── google_new_light_27.xml │ │ ├── google_new_light_28.xml │ │ ├── google_new_light_29.xml │ │ ├── google_new_light_3.xml │ │ ├── google_new_light_30.xml │ │ ├── google_new_light_31.xml │ │ ├── google_new_light_32.xml │ │ ├── google_new_light_33.xml │ │ ├── google_new_light_34.xml │ │ ├── google_new_light_35.xml │ │ ├── google_new_light_36.xml │ │ ├── google_new_light_37.xml │ │ ├── google_new_light_38.xml │ │ ├── google_new_light_39.xml │ │ ├── google_new_light_4.xml │ │ ├── google_new_light_40.xml │ │ ├── google_new_light_41.xml │ │ ├── google_new_light_42.xml │ │ ├── google_new_light_43.xml │ │ ├── google_new_light_44.xml │ │ ├── google_new_light_45.xml │ │ ├── google_new_light_46.xml │ │ ├── google_new_light_47.xml │ │ ├── google_new_light_5.xml │ │ ├── google_new_light_6.xml │ │ ├── google_new_light_7.xml │ │ ├── google_new_light_8.xml │ │ ├── google_new_light_9.xml │ │ ├── google_new_light_na.xml │ │ ├── google_pixel_wallpaper.webp │ │ ├── hexagon_shape.xml │ │ ├── ic_404_error.xml │ │ ├── ic_adidas.xml │ │ ├── ic_alien.xml │ │ ├── ic_amogus.xml │ │ ├── ic_android_logo.xml │ │ ├── ic_app_logo.xml │ │ ├── ic_apple_logo.xml │ │ ├── ic_avengers.xml │ │ ├── ic_batman.xml │ │ ├── ic_batman_tdk.xml │ │ ├── ic_battery.xml │ │ ├── ic_beats.xml │ │ ├── ic_biohazard.xml │ │ ├── ic_blackberry.xml │ │ ├── ic_bluetooth_connected.xml │ │ ├── ic_bluetooth_disconnected.xml │ │ ├── ic_calculator.xml │ │ ├── ic_cannabis.xml │ │ ├── ic_captain_america.xml │ │ ├── ic_charging_asus.xml │ │ ├── ic_charging_bold.xml │ │ ├── ic_charging_buddy.xml │ │ ├── ic_charging_evplug.xml │ │ ├── ic_charging_idc.xml │ │ ├── ic_charging_ios.xml │ │ ├── ic_charging_koplak.xml │ │ ├── ic_charging_miui.xml │ │ ├── ic_charging_mmk.xml │ │ ├── ic_charging_moto.xml │ │ ├── ic_charging_nokia.xml │ │ ├── ic_charging_plug.xml │ │ ├── ic_charging_powercable.xml │ │ ├── ic_charging_powercord.xml │ │ ├── ic_charging_powerstation.xml │ │ ├── ic_charging_realme.xml │ │ ├── ic_charging_soak.xml │ │ ├── ic_charging_stres.xml │ │ ├── ic_charging_strip.xml │ │ ├── ic_charging_usbcable.xml │ │ ├── ic_charging_xiaomi.xml │ │ ├── ic_chevron_end.xml │ │ ├── ic_clear.xml │ │ ├── ic_emoticon_cool.xml │ │ ├── ic_emoticon_devil.xml │ │ ├── ic_fire.xml │ │ ├── ic_flash.xml │ │ ├── ic_gender_female.xml │ │ ├── ic_gender_male.xml │ │ ├── ic_gender_male_female.xml │ │ ├── ic_ghost.xml │ │ ├── ic_heart.xml │ │ ├── ic_history.xml │ │ ├── ic_human_female.xml │ │ ├── ic_human_male.xml │ │ ├── ic_human_male_female.xml │ │ ├── ic_info_duotone.xml │ │ ├── ic_ios_device.webp │ │ ├── ic_ios_device_scaled.xml │ │ ├── ic_ironman.xml │ │ ├── ic_launcher.xml │ │ ├── ic_lock.xml │ │ ├── ic_memory.xml │ │ ├── ic_mint_logo.xml │ │ ├── ic_nike.xml │ │ ├── ic_ninja.xml │ │ ├── ic_op_media_player_action_next.xml │ │ ├── ic_op_media_player_action_pause.xml │ │ ├── ic_op_media_player_action_play.xml │ │ ├── ic_op_media_player_action_prev.xml │ │ ├── ic_op_media_player_icon.xml │ │ ├── ic_op_media_player_output_switcher.xml │ │ ├── ic_pac_man.xml │ │ ├── ic_puma.xml │ │ ├── ic_qs_wifi_disconnected.xml │ │ ├── ic_refresh.xml │ │ ├── ic_robot.xml │ │ ├── ic_rog.xml │ │ ├── ic_search.xml │ │ ├── ic_spiderman.xml │ │ ├── ic_superman.xml │ │ ├── ic_temperature.xml │ │ ├── ic_translate.xml │ │ ├── ic_tux_logo.xml │ │ ├── ic_ubuntu_logo.xml │ │ ├── ic_upload_file.xml │ │ ├── ic_vibrate.xml │ │ ├── ic_volume_eq.xml │ │ ├── ic_volume_up.webp │ │ ├── ic_widget_media.xml │ │ ├── ic_widget_power.xml │ │ ├── ic_wind.xml │ │ ├── ic_windows.xml │ │ ├── ic_xbox.xml │ │ ├── ic_xposed_album_art.xml │ │ ├── ic_xposed_lockscreen_weather.xml │ │ ├── ic_xposed_op_qs_header.xml │ │ ├── ios_widget_line_progress_track.xml │ │ ├── lockscreen_clock_10_background.xml │ │ ├── lockscreen_clock_24_bg.xml │ │ ├── lockscreen_clock_24_logo.webp │ │ ├── lockscreen_clock_25_logo.webp │ │ ├── lockscreen_clock_26_container_bg.webp │ │ ├── lockscreen_clock_26_logo2.webp │ │ ├── lockscreen_clock_26_semi_transparent_bg.xml │ │ ├── lockscreen_clock_27_container_bg.webp │ │ ├── lockscreen_clock_27_logo.webp │ │ ├── lockscreen_clock_27_semi_transparent_bg.xml │ │ ├── lockscreen_clock_28_bg.xml │ │ ├── lockscreen_clock_29_bg.webp │ │ ├── lockscreen_clock_30_content_bg.webp │ │ ├── lockscreen_clock_30_logo.webp │ │ ├── lockscreen_clock_30_red_dot.webp │ │ ├── lockscreen_clock_30_violet_dot.webp │ │ ├── lockscreen_clock_30_yellow_dot.webp │ │ ├── lockscreen_clock_32_bg_filled.xml │ │ ├── lockscreen_clock_32_bg_outline.xml │ │ ├── lockscreen_clock_32_ic_date.webp │ │ ├── lockscreen_clock_32_ic_time.webp │ │ ├── lockscreen_clock_32_logo.webp │ │ ├── lockscreen_clock_33_bg.xml │ │ ├── lockscreen_clock_34_hour_bg.xml │ │ ├── lockscreen_clock_34_minute_bg.xml │ │ ├── lockscreen_clock_35_day_bg.xml │ │ ├── lockscreen_clock_35_logo.webp │ │ ├── lockscreen_clock_35_logo_bg.xml │ │ ├── lockscreen_clock_35_name_bg.xml │ │ ├── lockscreen_clock_37_content_bg.xml │ │ ├── lockscreen_clock_37_day_bg.xml │ │ ├── lockscreen_clock_37_logo.webp │ │ ├── lockscreen_clock_37_logo_bg.xml │ │ ├── lockscreen_clock_39_day_bg.xml │ │ ├── lockscreen_clock_39_logo.webp │ │ ├── lockscreen_clock_39_logo_bg.xml │ │ ├── lockscreen_clock_40_bg.webp │ │ ├── lockscreen_clock_41_day_bg.xml │ │ ├── lockscreen_clock_41_time_bg.xml │ │ ├── lockscreen_clock_42_divider.xml │ │ ├── lockscreen_clock_42_logo.webp │ │ ├── lockscreen_clock_44_date_bg.xml │ │ ├── lockscreen_clock_44_divider.xml │ │ ├── lockscreen_clock_45_bg.xml │ │ ├── lockscreen_clock_46_bg.xml │ │ ├── lockscreen_clock_46_logo.webp │ │ ├── lockscreen_clock_47_bg1.xml │ │ ├── lockscreen_clock_47_bg2.xml │ │ ├── lockscreen_clock_47_bg3.xml │ │ ├── lockscreen_clock_47_bg4.xml │ │ ├── lockscreen_clock_47_ic_lock.webp │ │ ├── lockscreen_clock_48_bg.xml │ │ ├── lockscreen_clock_49_bg.webp │ │ ├── lockscreen_clock_50_bg.xml │ │ ├── lockscreen_clock_50_dot.xml │ │ ├── lockscreen_clock_50_dot2.xml │ │ ├── lockscreen_clock_52_ic_date.webp │ │ ├── lockscreen_clock_52_ic_time.webp │ │ ├── lockscreen_clock_53_bg1.xml │ │ ├── lockscreen_clock_53_bg2.xml │ │ ├── lockscreen_clock_53_bg3.xml │ │ ├── lockscreen_clock_53_logo.webp │ │ ├── lockscreen_clock_54_divider1.xml │ │ ├── lockscreen_clock_54_divider2.xml │ │ ├── lockscreen_clock_55_bg1.xml │ │ ├── lockscreen_clock_55_bg2.xml │ │ ├── lockscreen_clock_55_bg3.xml │ │ ├── lockscreen_clock_55_bg4.xml │ │ ├── lockscreen_clock_55_outline1.xml │ │ ├── lockscreen_clock_55_outline2.xml │ │ ├── lockscreen_clock_58_bg1.xml │ │ ├── lockscreen_clock_58_bg3.xml │ │ ├── lockscreen_clock_58_stroke.xml │ │ ├── lockscreen_clock_60_arrow.xml │ │ ├── lockscreen_clock_60_hr_bg.xml │ │ ├── lockscreen_clock_60_min_bg.xml │ │ ├── lockscreen_clock_60_star_bg.xml │ │ ├── lockscreen_widget_background_circle.xml │ │ ├── ls_clock_img.webp │ │ ├── nothing_0.xml │ │ ├── nothing_1.xml │ │ ├── nothing_10.xml │ │ ├── nothing_11.xml │ │ ├── nothing_12.xml │ │ ├── nothing_13.xml │ │ ├── nothing_14.xml │ │ ├── nothing_15.xml │ │ ├── nothing_16.xml │ │ ├── nothing_17.xml │ │ ├── nothing_18.xml │ │ ├── nothing_19.xml │ │ ├── nothing_2.xml │ │ ├── nothing_20.xml │ │ ├── nothing_21.xml │ │ ├── nothing_22.xml │ │ ├── nothing_23.xml │ │ ├── nothing_24.xml │ │ ├── nothing_25.xml │ │ ├── nothing_26.xml │ │ ├── nothing_27.xml │ │ ├── nothing_28.xml │ │ ├── nothing_29.xml │ │ ├── nothing_3.xml │ │ ├── nothing_30.xml │ │ ├── nothing_31.xml │ │ ├── nothing_32.xml │ │ ├── nothing_33.xml │ │ ├── nothing_34.xml │ │ ├── nothing_35.xml │ │ ├── nothing_36.xml │ │ ├── nothing_37.xml │ │ ├── nothing_38.xml │ │ ├── nothing_39.xml │ │ ├── nothing_4.xml │ │ ├── nothing_40.xml │ │ ├── nothing_41.xml │ │ ├── nothing_42.xml │ │ ├── nothing_43.xml │ │ ├── nothing_44.xml │ │ ├── nothing_45.xml │ │ ├── nothing_46.xml │ │ ├── nothing_47.xml │ │ ├── nothing_5.xml │ │ ├── nothing_6.xml │ │ ├── nothing_7.xml │ │ ├── nothing_8.xml │ │ ├── nothing_9.xml │ │ ├── nothing_na.xml │ │ ├── onboarding_img_1.xml │ │ ├── onboarding_img_2.xml │ │ ├── onboarding_img_3.xml │ │ ├── ongoing_action_chip_progress_bar.xml │ │ ├── outline_0.xml │ │ ├── outline_1.xml │ │ ├── outline_10.xml │ │ ├── outline_11.xml │ │ ├── outline_12.xml │ │ ├── outline_13.xml │ │ ├── outline_14.xml │ │ ├── outline_15.xml │ │ ├── outline_16.xml │ │ ├── outline_17.xml │ │ ├── outline_18.xml │ │ ├── outline_19.xml │ │ ├── outline_2.xml │ │ ├── outline_20.xml │ │ ├── outline_21.xml │ │ ├── outline_22.xml │ │ ├── outline_23.xml │ │ ├── outline_24.xml │ │ ├── outline_25.xml │ │ ├── outline_26.xml │ │ ├── outline_27.xml │ │ ├── outline_28.xml │ │ ├── outline_29.xml │ │ ├── outline_3.xml │ │ ├── outline_30.xml │ │ ├── outline_31.xml │ │ ├── outline_32.xml │ │ ├── outline_33.xml │ │ ├── outline_34.xml │ │ ├── outline_35.xml │ │ ├── outline_36.xml │ │ ├── outline_37.xml │ │ ├── outline_38.xml │ │ ├── outline_39.xml │ │ ├── outline_4.xml │ │ ├── outline_40.xml │ │ ├── outline_41.xml │ │ ├── outline_42.xml │ │ ├── outline_43.xml │ │ ├── outline_44.xml │ │ ├── outline_45.xml │ │ ├── outline_46.xml │ │ ├── outline_47.xml │ │ ├── outline_5.xml │ │ ├── outline_6.xml │ │ ├── outline_7.xml │ │ ├── outline_8.xml │ │ ├── outline_9.xml │ │ ├── outline_na.xml │ │ ├── preview_bg.xml │ │ ├── progress_bar_ios_battery.xml │ │ ├── round.xml │ │ ├── search_hint_color.xml │ │ ├── text_field_corners.xml │ │ ├── time_container_background.xml │ │ ├── volume_row_seekbar_progress_icon.xml │ │ ├── weatherclient_0.xml │ │ ├── weatherclient_1.xml │ │ ├── weatherclient_10.xml │ │ ├── weatherclient_11.xml │ │ ├── weatherclient_12.xml │ │ ├── weatherclient_13.xml │ │ ├── weatherclient_14.xml │ │ ├── weatherclient_15.xml │ │ ├── weatherclient_16.xml │ │ ├── weatherclient_17.xml │ │ ├── weatherclient_18.xml │ │ ├── weatherclient_19.xml │ │ ├── weatherclient_20.xml │ │ ├── weatherclient_21.xml │ │ ├── weatherclient_22.xml │ │ ├── weatherclient_23.xml │ │ ├── weatherclient_24.xml │ │ ├── weatherclient_25.xml │ │ ├── weatherclient_26.xml │ │ ├── weatherclient_27.xml │ │ ├── weatherclient_28.xml │ │ ├── weatherclient_29.xml │ │ ├── weatherclient_3.xml │ │ ├── weatherclient_30.xml │ │ ├── weatherclient_31.xml │ │ ├── weatherclient_32.xml │ │ ├── weatherclient_33.xml │ │ ├── weatherclient_34.xml │ │ ├── weatherclient_35.xml │ │ ├── weatherclient_36.xml │ │ ├── weatherclient_37.xml │ │ ├── weatherclient_38.xml │ │ ├── weatherclient_39.xml │ │ ├── weatherclient_4.xml │ │ ├── weatherclient_40.xml │ │ ├── weatherclient_41.xml │ │ ├── weatherclient_42.xml │ │ ├── weatherclient_43.xml │ │ ├── weatherclient_44.xml │ │ ├── weatherclient_45.xml │ │ ├── weatherclient_46.xml │ │ ├── weatherclient_47.xml │ │ ├── weatherclient_5.xml │ │ ├── weatherclient_6.xml │ │ ├── weatherclient_7.xml │ │ ├── weatherclient_8.xml │ │ ├── weatherclient_9.xml │ │ ├── weatherclient_na.xml │ │ ├── widget_bg.xml │ │ └── widget_progress_track.xml │ │ ├── font │ │ ├── age.otf │ │ ├── astthillabeltaden.otf │ │ ├── bebasneue.ttf │ │ ├── bebasneue_bold.ttf │ │ ├── br_sc.ttf │ │ ├── cattyabrown.ttf │ │ ├── colopro.ttf │ │ ├── concert_one.ttf │ │ ├── consolas.otf │ │ ├── detoks.otf │ │ ├── dot57.otf │ │ ├── filled.ttf │ │ ├── filled1.ttf │ │ ├── fontsfree_net_carthart.ttf │ │ ├── future.ttf │ │ ├── futurist_fixed_width_bold.ttf │ │ ├── general_sans.ttf │ │ ├── hollow.ttf │ │ ├── hollow1.ttf │ │ ├── japanese3017.ttf │ │ ├── jet_brains_mono.ttf │ │ ├── jkademo.ttf │ │ ├── lovelo.otf │ │ ├── montserrat.otf │ │ ├── montserrat_bold.ttf │ │ ├── oduda_bold.otf │ │ ├── sans_bold.ttf │ │ ├── sf_pro_stencil.ttf │ │ ├── slim.ttf │ │ ├── steelfish_rounded_bd.ttf │ │ └── techno_various.ttf │ │ ├── layout-land │ │ ├── view_error_dialog.xml │ │ ├── view_onboarding_page.xml │ │ └── view_onboarding_page_item.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_onboarding.xml │ │ ├── activity_weather.xml │ │ ├── bottom_sheet_layout.xml │ │ ├── clock_carousel.xml │ │ ├── clock_carousel_view.xml │ │ ├── cpv_preference_circle.xml │ │ ├── cpv_preference_circle_large.xml │ │ ├── cpv_preference_square.xml │ │ ├── cpv_preference_square_large.xml │ │ ├── custom_preference_category.xml │ │ ├── custom_preference_color.xml │ │ ├── custom_preference_edit_text.xml │ │ ├── custom_preference_filepicker.xml │ │ ├── custom_preference_list.xml │ │ ├── custom_preference_master_switch.xml │ │ ├── custom_preference_menu.xml │ │ ├── custom_preference_recyclerview.xml │ │ ├── custom_preference_slider.xml │ │ ├── custom_preference_switch.xml │ │ ├── custom_preference_time_picker.xml │ │ ├── custom_preference_two_target.xml │ │ ├── fragment_app_updates.xml │ │ ├── fragment_basic_colors.xml │ │ ├── fragment_brightness_bar.xml │ │ ├── fragment_brightness_bar_pixel.xml │ │ ├── fragment_changelog.xml │ │ ├── fragment_color_engine.xml │ │ ├── fragment_colored_battery.xml │ │ ├── fragment_credits.xml │ │ ├── fragment_experimental.xml │ │ ├── fragment_icon_pack.xml │ │ ├── fragment_icon_shape.xml │ │ ├── fragment_media_icons.xml │ │ ├── fragment_media_player.xml │ │ ├── fragment_miscellaneous.xml │ │ ├── fragment_navigation_bar.xml │ │ ├── fragment_notification.xml │ │ ├── fragment_notification_pixel.xml │ │ ├── fragment_preference_container.xml │ │ ├── fragment_preference_container_home.xml │ │ ├── fragment_preference_container_no_toolbar.xml │ │ ├── fragment_progress_bar.xml │ │ ├── fragment_qs_icon_label.xml │ │ ├── fragment_qs_panel_tile.xml │ │ ├── fragment_qs_panel_tile_pixel.xml │ │ ├── fragment_qs_row_column.xml │ │ ├── fragment_qs_tile_size.xml │ │ ├── fragment_settings_icons.xml │ │ ├── fragment_statusbar.xml │ │ ├── fragment_switch.xml │ │ ├── fragment_toast_frame.xml │ │ ├── fragment_ui_roundness.xml │ │ ├── fragment_volume_panel.xml │ │ ├── fragment_xposed_clock_chip.xml │ │ ├── fragment_xposed_location_browse.xml │ │ ├── fragment_xposed_lockscreen_clock.xml │ │ ├── fragment_xposed_status_icons_chip.xml │ │ ├── fragment_xposed_volume_panel.xml │ │ ├── preference_category.xml │ │ ├── preference_footer.xml │ │ ├── preference_list_item.xml │ │ ├── preference_material_switch.xml │ │ ├── preference_selector_with_widget.xml │ │ ├── preference_widget_checkbox.xml │ │ ├── preference_widget_radiobutton.xml │ │ ├── preview_header_clock_0.xml │ │ ├── preview_header_clock_1.xml │ │ ├── preview_header_clock_2.xml │ │ ├── preview_header_clock_3.xml │ │ ├── preview_header_clock_4.xml │ │ ├── preview_header_clock_5.xml │ │ ├── preview_header_clock_6.xml │ │ ├── preview_header_clock_7.xml │ │ ├── preview_header_clock_8.xml │ │ ├── preview_header_clock_9.xml │ │ ├── preview_lockscreen_clock_0.xml │ │ ├── preview_lockscreen_clock_1.xml │ │ ├── preview_lockscreen_clock_10.xml │ │ ├── preview_lockscreen_clock_11.xml │ │ ├── preview_lockscreen_clock_12.xml │ │ ├── preview_lockscreen_clock_13.xml │ │ ├── preview_lockscreen_clock_14.xml │ │ ├── preview_lockscreen_clock_15.xml │ │ ├── preview_lockscreen_clock_16.xml │ │ ├── preview_lockscreen_clock_17.xml │ │ ├── preview_lockscreen_clock_18.xml │ │ ├── preview_lockscreen_clock_19.xml │ │ ├── preview_lockscreen_clock_2.xml │ │ ├── preview_lockscreen_clock_20.xml │ │ ├── preview_lockscreen_clock_21.xml │ │ ├── preview_lockscreen_clock_22.xml │ │ ├── preview_lockscreen_clock_23.xml │ │ ├── preview_lockscreen_clock_24.xml │ │ ├── preview_lockscreen_clock_25.xml │ │ ├── preview_lockscreen_clock_26.xml │ │ ├── preview_lockscreen_clock_27.xml │ │ ├── preview_lockscreen_clock_28.xml │ │ ├── preview_lockscreen_clock_29.xml │ │ ├── preview_lockscreen_clock_3.xml │ │ ├── preview_lockscreen_clock_30.xml │ │ ├── preview_lockscreen_clock_31.xml │ │ ├── preview_lockscreen_clock_32.xml │ │ ├── preview_lockscreen_clock_33.xml │ │ ├── preview_lockscreen_clock_34.xml │ │ ├── preview_lockscreen_clock_35.xml │ │ ├── preview_lockscreen_clock_36.xml │ │ ├── preview_lockscreen_clock_37.xml │ │ ├── preview_lockscreen_clock_38.xml │ │ ├── preview_lockscreen_clock_39.xml │ │ ├── preview_lockscreen_clock_4.xml │ │ ├── preview_lockscreen_clock_40.xml │ │ ├── preview_lockscreen_clock_41.xml │ │ ├── preview_lockscreen_clock_42.xml │ │ ├── preview_lockscreen_clock_43.xml │ │ ├── preview_lockscreen_clock_44.xml │ │ ├── preview_lockscreen_clock_45.xml │ │ ├── preview_lockscreen_clock_46.xml │ │ ├── preview_lockscreen_clock_47.xml │ │ ├── preview_lockscreen_clock_48.xml │ │ ├── preview_lockscreen_clock_49.xml │ │ ├── preview_lockscreen_clock_5.xml │ │ ├── preview_lockscreen_clock_50.xml │ │ ├── preview_lockscreen_clock_51.xml │ │ ├── preview_lockscreen_clock_52.xml │ │ ├── preview_lockscreen_clock_53.xml │ │ ├── preview_lockscreen_clock_54.xml │ │ ├── preview_lockscreen_clock_55.xml │ │ ├── preview_lockscreen_clock_56.xml │ │ ├── preview_lockscreen_clock_57.xml │ │ ├── preview_lockscreen_clock_58.xml │ │ ├── preview_lockscreen_clock_59.xml │ │ ├── preview_lockscreen_clock_6.xml │ │ ├── preview_lockscreen_clock_60.xml │ │ ├── preview_lockscreen_clock_7.xml │ │ ├── preview_lockscreen_clock_8.xml │ │ ├── preview_lockscreen_clock_9.xml │ │ ├── screen_preview_section.xml │ │ ├── searchpreference_fragment.xml │ │ ├── searchpreference_list_item_history.xml │ │ ├── searchpreference_list_item_result.xml │ │ ├── searchpreference_preference.xml │ │ ├── searchpreference_searchbar.xml │ │ ├── simple_spinner_dropdown_item.xml │ │ ├── simple_spinner_item.xml │ │ ├── view_bottom_sheet_dialog_layout.xml │ │ ├── view_clock_preview_header.xml │ │ ├── view_clock_preview_lockscreen.xml │ │ ├── view_color_table.xml │ │ ├── view_current_weather.xml │ │ ├── view_device_widget.xml │ │ ├── view_edit_text_dialog.xml │ │ ├── view_error_dialog.xml │ │ ├── view_header.xml │ │ ├── view_header_expandable.xml │ │ ├── view_home_card.xml │ │ ├── view_icon_shape.xml │ │ ├── view_info_dialog.xml │ │ ├── view_installation_dialog.xml │ │ ├── view_list_forecast_day_item.xml │ │ ├── view_list_forecast_hour_item.xml │ │ ├── view_list_icon_item.xml │ │ ├── view_list_info_header.xml │ │ ├── view_list_info_item.xml │ │ ├── view_list_item_location_browse.xml │ │ ├── view_list_option_brightnessbar.xml │ │ ├── view_list_option_brightnessbar_pixel.xml │ │ ├── view_list_option_iconpack.xml │ │ ├── view_list_option_mediaplayer_icons.xml │ │ ├── view_list_option_notification.xml │ │ ├── view_list_option_progressbar.xml │ │ ├── view_list_option_qsshape.xml │ │ ├── view_list_option_qsshape_pixel.xml │ │ ├── view_list_option_settings_icons.xml │ │ ├── view_list_option_switch.xml │ │ ├── view_list_option_weather_icons.xml │ │ ├── view_loading_dialog.xml │ │ ├── view_media_player_preview_accent.xml │ │ ├── view_media_player_preview_black.xml │ │ ├── view_media_player_preview_system.xml │ │ ├── view_new_update.xml │ │ ├── view_onboarding_page.xml │ │ ├── view_onboarding_page_item.xml │ │ ├── view_pill_shape.xml │ │ ├── view_radio_button.xml │ │ ├── view_radio_dialog.xml │ │ ├── view_reboot.xml │ │ ├── view_section_title.xml │ │ ├── view_section_title_notif.xml │ │ ├── view_settings_about.xml │ │ ├── view_settings_general.xml │ │ ├── view_settings_misc.xml │ │ ├── view_settings_update.xml │ │ ├── view_settings_xposed.xml │ │ ├── view_toast_frame.xml │ │ ├── view_volume_panel_preview_no_bg.xml │ │ ├── view_volume_panel_preview_thick_bg.xml │ │ ├── view_volume_panel_preview_thin_bg.xml │ │ ├── view_widget_bottomsheet.xml │ │ ├── view_widget_colorpicker.xml │ │ ├── view_widget_colorpicker_small.xml │ │ ├── view_widget_filepicker.xml │ │ ├── view_widget_master_switch.xml │ │ ├── view_widget_menu.xml │ │ ├── view_widget_radiodialog.xml │ │ ├── view_widget_slider.xml │ │ ├── view_widget_switch.xml │ │ ├── view_widget_title.xml │ │ ├── view_xposed_battery_charging_icon.xml │ │ ├── view_xposed_battery_color.xml │ │ ├── view_xposed_battery_dimension.xml │ │ ├── view_xposed_battery_misc.xml │ │ ├── view_xposed_hook_check.xml │ │ └── wallpaper_preview_card.xml │ │ ├── menu │ │ ├── bottom_nav_menu.xml │ │ ├── bottom_nav_menu_xposed_only.xml │ │ ├── default_menu.xml │ │ ├── search_menu.xml │ │ ├── search_more.xml │ │ └── settings_menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_retro.xml │ │ ├── ic_launcher_round.xml │ │ ├── ic_launcher_round_retro.xml │ │ ├── ic_launcher_round_themed.xml │ │ └── ic_launcher_themed.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── com_drdisagree_iconify_keep.xml │ │ └── loading_anim.lottie │ │ ├── values-af-rZA │ │ └── strings.xml │ │ ├── values-ar-rSA │ │ └── strings.xml │ │ ├── values-ca-rES │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ └── strings.xml │ │ ├── values-da-rDK │ │ └── strings.xml │ │ ├── values-de-rDE │ │ └── strings.xml │ │ ├── values-el-rGR │ │ └── strings.xml │ │ ├── values-es-rES │ │ └── strings.xml │ │ ├── values-fa-rIR │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ └── strings.xml │ │ ├── values-in-rID │ │ └── strings.xml │ │ ├── values-it-rIT │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ └── strings.xml │ │ ├── values-ldrtl │ │ └── dimens.xml │ │ ├── values-night │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ ├── values-nl-rNL │ │ └── strings.xml │ │ ├── values-no-rNO │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-ro-rRO │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ └── strings.xml │ │ ├── values-sr-rSP │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ └── strings.xml │ │ ├── values-vi-rVN │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── battery_configs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── ids.xml │ │ ├── integers.xml │ │ ├── op_qs_configs.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ ├── carousel_scene.xml │ │ ├── data_extraction_rules.xml │ │ ├── home.xml │ │ ├── locales_config.xml │ │ ├── onboarding_motions.xml │ │ ├── settings.xml │ │ ├── tweaks.xml │ │ ├── xposed.xml │ │ ├── xposed_background_chip.xml │ │ ├── xposed_battery_style.xml │ │ ├── xposed_depth_wallpaper.xml │ │ ├── xposed_dual_statusbar.xml │ │ ├── xposed_header_clock.xml │ │ ├── xposed_header_image.xml │ │ ├── xposed_lockscreen.xml │ │ ├── xposed_lockscreen_album_art.xml │ │ ├── xposed_lockscreen_clock.xml │ │ ├── xposed_lockscreen_weather.xml │ │ ├── xposed_lockscreen_widget.xml │ │ ├── xposed_op_qs_header.xml │ │ ├── xposed_others.xml │ │ ├── xposed_qs_margins.xml │ │ ├── xposed_quick_settings.xml │ │ ├── xposed_statusbar.xml │ │ ├── xposed_statusbar_logo.xml │ │ ├── xposed_themes.xml │ │ ├── xposed_transparency_blur.xml │ │ ├── xposed_volume_panel.xml │ │ └── xposed_weather_settings.xml │ └── standard │ ├── AndroidManifest.xml │ └── java │ └── com │ └── drdisagree │ └── iconify │ ├── SplashActivity.kt │ ├── services │ └── RootProviderProxy.kt │ ├── ui │ └── fragments │ │ └── xposed │ │ └── DepthWallpaper.kt │ └── xposed │ └── modules │ ├── extras │ └── utils │ │ └── BitmapSubjectSegmenter.kt │ └── lockscreen │ └── depthwallpaper │ ├── DepthWallpaperA14.kt │ └── DepthWallpaperA15.kt ├── crowdin.yml ├── docs ├── contributors.md └── translators.md ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── 8.png │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── latestVersion.json └── settings.gradle.kts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/resources/banner.png -------------------------------------------------------------------------------- /.github/resources/bmc-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/resources/bmc-button.png -------------------------------------------------------------------------------- /.github/resources/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/resources/features.png -------------------------------------------------------------------------------- /.github/workflows/build_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/workflows/build_debug.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/workflows/crowdin.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin_download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/workflows/crowdin_download.yml -------------------------------------------------------------------------------- /.github/workflows/fetch_contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.github/workflows/fetch_contributors.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-android-optimize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/proguard-android-optimize.txt -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/proguard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/proguard.pro -------------------------------------------------------------------------------- /app/src/foss/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/foss/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/CompileOnDemand/com.android.settings/cheatsheet: -------------------------------------------------------------------------------- 1 | SIP -> Settings Icon Pack -------------------------------------------------------------------------------- /app/src/main/assets/CompileOnDemand/com.google.android.apps.wellbeing/cheatsheet: -------------------------------------------------------------------------------- 1 | SIP -> Settings Icon Pack -------------------------------------------------------------------------------- /app/src/main/assets/CompileOnDemand/com.google.android.gms/cheatsheet: -------------------------------------------------------------------------------- 1 | SIP -> Settings Icon Pack -------------------------------------------------------------------------------- /app/src/main/assets/Fonts/SFUIText-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/assets/Fonts/SFUIText-Bold.otf -------------------------------------------------------------------------------- /app/src/main/assets/Keystore/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/assets/Keystore/testkey.pk8 -------------------------------------------------------------------------------- /app/src/main/assets/Keystore/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/assets/Keystore/testkey.x509.pem -------------------------------------------------------------------------------- /app/src/main/assets/Misc/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/assets/Misc/contributors.json -------------------------------------------------------------------------------- /app/src/main/assets/Misc/translators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/assets/Misc/translators.json -------------------------------------------------------------------------------- /app/src/main/assets/Overlays/android/cheatsheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/assets/Overlays/android/cheatsheet -------------------------------------------------------------------------------- /app/src/main/assets/Overlays/com.android.settings/cheatsheet: -------------------------------------------------------------------------------- 1 | SIP -> Settings Icon Pack 2 | SWITCH -> Toggle Switch -------------------------------------------------------------------------------- /app/src/main/assets/Overlays/com.android.systemui/IPSUI10/res/anim/ic_caret_down_right_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/assets/Overlays/com.android.systemui/IPSUI10/res/anim/ic_caret_up_right_animation.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/assets/Overlays/com.google.android.apps.wellbeing/cheatsheet: -------------------------------------------------------------------------------- 1 | SIP -> Settings Icon Pack -------------------------------------------------------------------------------- /app/src/main/assets/Overlays/com.google.android.gms/cheatsheet: -------------------------------------------------------------------------------- 1 | SIP -> Settings Icon Pack -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- 1 | com.drdisagree.iconify.xposed.InitHook -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/jniLibs/arm64-v8a/libaapt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/arm64-v8a/libaapt.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/arm64-v8a/libaapt2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/arm64-v8a/libaapt2.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/arm64-v8a/libzipalign.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/arm64-v8a/libzipalign.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libaapt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/armeabi-v7a/libaapt.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libaapt2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/armeabi-v7a/libaapt2.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libzipalign.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/armeabi-v7a/libzipalign.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libaapt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/x86/libaapt.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libaapt2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/x86/libaapt2.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libzipalign.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/x86/libzipalign.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86_64/libaapt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/x86_64/libaapt.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86_64/libaapt2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/x86_64/libaapt2.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86_64/libzipalign.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/jniLibs/x86_64/libzipalign.so -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_card_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_card_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_card_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_card_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_fade_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_fade_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_fade_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_fade_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_in_out_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_in_out_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_in_out_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_in_out_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_shrink_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_shrink_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_shrink_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_shrink_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_slide_down_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_slide_down_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_slide_in_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_slide_in_left.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_slide_left_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_slide_left_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_slide_out_right.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_slide_up_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_slide_up_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_slide_up_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_slide_up_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_spin_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_spin_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_spin_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_spin_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_split_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_split_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_split_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_split_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_swipe_left_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_swipe_left_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_windmill_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_windmill_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_windmill_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_windmill_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_zoom_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_zoom_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_zoom_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/animate_zoom_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/card_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/card_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/fade.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fragment_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/fragment_fade_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fragment_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/fragment_fade_out.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/from_left_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/from_left_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/from_left_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/from_left_out.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/from_right_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/from_right_in.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/from_right_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/anim/from_right_out.xml -------------------------------------------------------------------------------- /app/src/main/res/color/bottom_nav_icon_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/color/bottom_nav_icon_color.xml -------------------------------------------------------------------------------- /app/src/main/res/color/color_material_ripple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/color/color_material_ripple.xml -------------------------------------------------------------------------------- /app/src/main/res/color/color_switch_track_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/color/color_switch_track_off.xml -------------------------------------------------------------------------------- /app/src/main/res/color/color_switch_track_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/color/color_switch_track_on.xml -------------------------------------------------------------------------------- /app/src/main/res/color/holo_blue_dark_alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/color/holo_blue_dark_alpha.xml -------------------------------------------------------------------------------- /app/src/main/res/color/holo_blue_light_alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/color/holo_blue_light_alpha.xml -------------------------------------------------------------------------------- /app/src/main/res/color/text_color_primary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/color/text_color_primary.xml -------------------------------------------------------------------------------- /app/src/main/res/color/text_color_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/color/text_color_secondary.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night-v24/bb_lighty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-night-v24/bb_lighty.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_22.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_23.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_25.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_26.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_27.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_28.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_29.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_30.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_31.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_32.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_33.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_34.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_35.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_37.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_38.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_39.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_40.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_41.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_42.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_43.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_44.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_45.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_46.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_47.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/google_na.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/google_na.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/marshmallow_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/marshmallow_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_10.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_11.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_12.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_13.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_14.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_15.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_17.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_19.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_20.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_21.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_22.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_23.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_25.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_26.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_27.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_28.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_29.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_30.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_31.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_32.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_33.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_34.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_35.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_37.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_38.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_39.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_40.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_41.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_42.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_43.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_44.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_45.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_46.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_47.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/stickers_na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/stickers_na.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_7.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_8.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/weather_gs6_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-nodpi/weather_gs6_9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/auto_bb_lighty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/auto_bb_lighty.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/auto_bb_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/auto_bb_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/auto_bb_purfect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/auto_bb_purfect.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/auto_bb_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/auto_bb_rounded.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_blocky_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_blocky_thumb.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_comet_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_comet_thumb.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_double_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_double_layer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_inline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_inline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_inline_pixel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_inline_pixel.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_lighty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_lighty.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_lighty_pixel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_lighty_pixel.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_neumorph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_neumorph.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_purfect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_purfect.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_rounded.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_roundedclip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_roundedclip.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_shaded_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_shaded_layer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/bb_thin_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/bb_thin_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/brightness_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/brightness_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/button_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/button_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/container_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/container_main.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/container_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/container_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/container_mid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/container_mid.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/container_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/container_top.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/divider_accent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/divider_accent.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/dropdown_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/dropdown_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/flexbox_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/flexbox_divider.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_actions.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_android.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_android.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_app_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_app_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_app_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_app_theme.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_app_updated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_app_updated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_arrow_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_arrow_end.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_auto_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_auto_update.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_basic_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_basic_colors.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_branding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_branding.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_cancel.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_card.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_changelog.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_check_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_check_update.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_clear_cache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_clear_cache.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_close.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_credits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_credits.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_download.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_download.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_experimental.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_github.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_hide.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_hide.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_home.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_home_extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_home_extras.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_home_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_home_info.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_info.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_language.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_launcher_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_bg2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_launcher_bg2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_fg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_launcher_fg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_link.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_minus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_monet_engine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_monet_engine.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_navbar_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_navbar_home.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_next.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_open.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_pause.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_pixel_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_pixel_device.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_play.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_plus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_plus_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_plus_minus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_prev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_prev.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_qs_airplane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_qs_airplane.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_qs_bluetooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_qs_bluetooth.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_qs_internet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_qs_internet.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_qs_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_qs_location.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_qs_tile_size.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_qs_tile_size.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_reset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_reset.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_ringer_mute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_ringer_mute.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_smartphone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_smartphone.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_splash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_telegram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_telegram.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_tick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_tick.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_tweaks_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_tweaks_color.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_tweaks_media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_tweaks_media.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_update.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_user.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_volume_audio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_volume_audio.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_volume_media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_volume_media.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_volume_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_volume_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_wind_symbol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_wind_symbol.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_xposed_clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_xposed_clock.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_xposed_misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_xposed_misc.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_xposed_warn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/ic_xposed_warn.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/icon_shape_ios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/icon_shape_ios.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/icon_shape_leaf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/icon_shape_leaf.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/icon_shape_none.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/icon_shape_none.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/menu_icon_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/menu_icon_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_cyberponk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_cyberponk.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_default.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_dumbbell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_dumbbell.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_duoline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_duoline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_faded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_faded.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_ios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_ios.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_layers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_layers.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_lighty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_lighty.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_neumorph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_neumorph.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/notif_stack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/notif_stack.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/radio_sb_tab_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/radio_sb_tab_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/seekbar_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/seekbar_thumb.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/switch_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/switch_thumb.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/switch_thumb_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/switch_thumb_on.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/switch_track.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/switch_track.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/switch_track_on.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/switch_track_on.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/top_appbar_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/top_appbar_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/volume_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/volume_default.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/volume_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/volume_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/volume_neumorph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/volume_neumorph.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/volume_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable-v24/volume_outline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/arc_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/arc_progress.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/calendar_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/calendar_bg.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/clock_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/clock_bg.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/container.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/container_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/container_small.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/custom_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/custom_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/custom_background_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/custom_background_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/custom_background_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/custom_background_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_box_str_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/date_box_str_border.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_str_accent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/date_str_accent.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_str_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/date_str_border.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_str_borderacc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/date_str_borderacc.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_str_bordergrad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/date_str_bordergrad.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/date_str_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/date_str_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/default_avatar.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/default_avatar.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_0.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_10.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_11.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_12.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_13.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_14.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_15.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_16.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_17.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_18.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_19.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_20.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_21.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_22.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_23.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_25.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_26.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_26.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_27.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_27.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_28.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_28.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_29.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_29.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_30.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_30.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_31.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_31.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_32.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_33.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_33.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_34.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_34.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_35.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_35.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_36.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_37.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_37.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_38.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_38.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_39.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_39.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_4.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_40.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_40.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_41.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_42.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_42.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_43.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_43.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_44.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_44.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_45.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_45.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_46.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_46.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_47.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_47.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_5.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_6.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_7.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_8.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_9.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_dark_na.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_dark_na.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_0.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_10.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_11.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_12.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_13.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_14.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_15.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_16.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_17.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_18.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_19.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_20.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_21.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_22.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_23.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_new_light_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/google_new_light_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/hexagon_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/hexagon_shape.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_404_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_404_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_adidas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_adidas.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_alien.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_alien.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_amogus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_amogus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_android_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_android_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_app_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_app_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_apple_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_apple_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_avengers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_avengers.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_batman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_batman.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_batman_tdk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_batman_tdk.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_battery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_beats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_beats.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_biohazard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_biohazard.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_blackberry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_blackberry.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_calculator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_calculator.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cannabis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_cannabis.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_asus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_asus.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_bold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_bold.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_buddy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_buddy.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_idc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_idc.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_ios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_ios.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_miui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_miui.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_mmk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_mmk.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_moto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_moto.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_nokia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_nokia.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_plug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_plug.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_soak.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_soak.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_stres.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_stres.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_charging_strip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_charging_strip.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_chevron_end.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_chevron_end.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_clear.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_emoticon_cool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_emoticon_cool.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_emoticon_devil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_emoticon_devil.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_fire.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_fire.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_flash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_flash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_gender_female.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_gender_female.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_gender_male.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_gender_male.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_ghost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_ghost.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_heart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_history.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_human_female.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_human_female.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_human_male.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_human_male.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info_duotone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_info_duotone.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_ios_device.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_ios_device.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_ironman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_ironman.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_memory.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_mint_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_mint_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_nike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_nike.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_ninja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_ninja.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pac_man.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_pac_man.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_puma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_puma.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_robot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_robot.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_rog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_rog.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_spiderman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_spiderman.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_superman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_superman.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_temperature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_temperature.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_translate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_translate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tux_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_tux_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_ubuntu_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_ubuntu_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_upload_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_upload_file.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_vibrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_vibrate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_eq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_volume_eq.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_up.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_volume_up.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_widget_media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_widget_media.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_widget_power.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_widget_power.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_wind.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_windows.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_xbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ic_xbox.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ls_clock_img.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/ls_clock_img.webp -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_0.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_10.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_11.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_12.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_13.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_14.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_15.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_16.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_17.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_18.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_19.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_20.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_21.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_22.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_23.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_25.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_26.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_26.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_27.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_27.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_28.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_28.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_29.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_29.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_30.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_30.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_31.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_31.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_32.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_33.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_33.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_34.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_34.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_35.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_35.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_36.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_37.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_37.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_38.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_38.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_39.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_39.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_4.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_40.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_40.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_41.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_42.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_42.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_43.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_43.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_44.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_44.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_45.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_45.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_46.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_46.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_47.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_47.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_5.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_6.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_7.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_8.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_9.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/nothing_na.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/nothing_na.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/onboarding_img_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/onboarding_img_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/onboarding_img_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/onboarding_img_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/onboarding_img_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/onboarding_img_3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_0.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_10.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_11.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_12.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_13.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_14.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_15.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_16.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_17.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_18.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_19.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_20.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_21.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_22.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_23.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_25.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_26.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_26.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_27.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_27.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_28.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_28.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_29.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_29.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_30.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_30.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_31.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_31.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_32.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_33.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_33.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_34.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_34.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_35.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_35.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_36.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_37.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_37.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_38.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_38.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_39.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_39.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_4.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_40.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_40.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_41.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_42.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_42.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_43.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_43.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_44.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_44.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_45.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_45.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_46.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_46.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_47.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_47.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_5.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_6.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_7.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_8.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_9.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_na.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/outline_na.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/preview_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/preview_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/search_hint_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/search_hint_color.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_0.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_10.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_11.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_12.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_13.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_14.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_15.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_16.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_17.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_18.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_19.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_20.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_21.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_22.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_23.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_25.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_26.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_26.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_27.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_27.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_28.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_28.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_29.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_29.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_3.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_30.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_30.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_31.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_31.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_32.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_33.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_33.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_34.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_34.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_35.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_35.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_36.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_37.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_37.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_38.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_38.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_39.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_39.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_4.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_40.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_40.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_41.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_42.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_42.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_43.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_43.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_44.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_44.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_45.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_45.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_46.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_46.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_47.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_47.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_5.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_6.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_7.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_8.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_9.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weatherclient_na.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/weatherclient_na.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/drawable/widget_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/font/age.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/age.otf -------------------------------------------------------------------------------- /app/src/main/res/font/astthillabeltaden.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/astthillabeltaden.otf -------------------------------------------------------------------------------- /app/src/main/res/font/bebasneue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/bebasneue.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/bebasneue_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/bebasneue_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/br_sc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/br_sc.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/cattyabrown.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/cattyabrown.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/colopro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/colopro.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/concert_one.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/concert_one.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/consolas.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/consolas.otf -------------------------------------------------------------------------------- /app/src/main/res/font/detoks.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/detoks.otf -------------------------------------------------------------------------------- /app/src/main/res/font/dot57.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/dot57.otf -------------------------------------------------------------------------------- /app/src/main/res/font/filled.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/filled.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/filled1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/filled1.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/future.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/future.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/general_sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/general_sans.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/hollow.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/hollow.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/hollow1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/hollow1.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/japanese3017.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/japanese3017.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/jet_brains_mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/jet_brains_mono.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/jkademo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/jkademo.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/lovelo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/lovelo.otf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/montserrat.otf -------------------------------------------------------------------------------- /app/src/main/res/font/montserrat_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/montserrat_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/oduda_bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/oduda_bold.otf -------------------------------------------------------------------------------- /app/src/main/res/font/sans_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/sans_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/sf_pro_stencil.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/sf_pro_stencil.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/slim.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/slim.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/steelfish_rounded_bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/steelfish_rounded_bd.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/techno_various.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/font/techno_various.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_onboarding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/activity_onboarding.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_weather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/activity_weather.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/bottom_sheet_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/bottom_sheet_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/clock_carousel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/clock_carousel.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/clock_carousel_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/clock_carousel_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/fragment_changelog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_credits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/fragment_credits.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_icon_pack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/fragment_icon_pack.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_icon_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/fragment_icon_shape.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_statusbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/fragment_statusbar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/fragment_switch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/preference_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/preference_category.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/preference_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/preference_footer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/simple_spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/simple_spinner_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_color_table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_color_table.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_device_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_device_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_error_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_error_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_home_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_home_card.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_icon_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_icon_shape.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_info_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_info_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_list_icon_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_list_icon_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_list_info_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_list_info_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_loading_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_loading_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_new_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_new_update.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_pill_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_pill_shape.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_radio_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_radio_button.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_radio_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_radio_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_reboot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_reboot.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_section_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_section_title.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_settings_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_settings_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_settings_misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_settings_misc.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_toast_frame.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_widget_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_widget_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_widget_slider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_widget_slider.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_widget_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_widget_switch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/view_widget_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/layout/view_widget_title.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/bottom_nav_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/menu/bottom_nav_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/default_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/menu/default_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/search_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/menu/search_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/search_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/menu/search_more.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/settings_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/menu/settings_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/raw/loading_anim.lottie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/raw/loading_anim.lottie -------------------------------------------------------------------------------- /app/src/main/res/values-af-rZA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-af-rZA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ar-rSA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-ar-rSA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-ca-rES/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs-rCZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-cs-rCZ/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da-rDK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-da-rDK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de-rDE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-de-rDE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el-rGR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-el-rGR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-es-rES/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa-rIR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-fa-rIR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi-rFI/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-fi-rFI/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-fr-rFR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu-rHU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-hu-rHU/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in-rID/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-in-rID/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-it-rIT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-ja-rJP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko-rKR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-ko-rKR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ldrtl/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-ldrtl/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-night/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl-rNL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-nl-rNL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-no-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-no-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-pl-rPL/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro-rRO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-ro-rRO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr-rSP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-sr-rSP/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv-rSE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-sv-rSE/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk-rUA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-uk-rUA/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi-rVN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-vi-rVN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/battery_configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/battery_configs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /app/src/main/res/values/op_qs_configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/op_qs_configs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/carousel_scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/carousel_scene.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/home.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/onboarding_motions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/onboarding_motions.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/tweaks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/tweaks.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_background_chip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_background_chip.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_battery_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_battery_style.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_depth_wallpaper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_depth_wallpaper.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_dual_statusbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_dual_statusbar.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_header_clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_header_clock.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_header_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_header_image.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_lockscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_lockscreen.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_op_qs_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_op_qs_header.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_others.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_others.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_qs_margins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_qs_margins.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_quick_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_quick_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_statusbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_statusbar.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_statusbar_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_statusbar_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/xposed_volume_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/main/res/xml/xposed_volume_panel.xml -------------------------------------------------------------------------------- /app/src/standard/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/app/src/standard/AndroidManifest.xml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/docs/contributors.md -------------------------------------------------------------------------------- /docs/translators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/docs/translators.md -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Customize Boring Android UI -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Iconify -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/gradlew.bat -------------------------------------------------------------------------------- /latestVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/latestVersion.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/Iconify/HEAD/settings.gradle.kts --------------------------------------------------------------------------------