├── .gradle ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ ├── cache.properties │ └── outputFiles.bin ├── checksums │ ├── checksums.lock │ ├── md5-checksums.bin │ └── sha1-checksums.bin ├── vcs-1 │ └── gc.properties ├── workspace-id.txt └── workspace-id.txt.lock ├── .idea ├── .gitignore ├── assetWizardSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── libraries │ ├── Gradle__androidx_activity_activity_1_1_0_aar.xml │ ├── Gradle__androidx_annotation_annotation_1_2_0.xml │ ├── Gradle__androidx_annotation_annotation_experimental_1_0_0_aar.xml │ ├── Gradle__androidx_appcompat_appcompat_1_2_0_aar.xml │ ├── Gradle__androidx_appcompat_appcompat_resources_1_2_0_aar.xml │ ├── Gradle__androidx_arch_core_core_common_2_1_0.xml │ ├── Gradle__androidx_arch_core_core_runtime_2_1_0_aar.xml │ ├── Gradle__androidx_cardview_cardview_1_0_0_aar.xml │ ├── Gradle__androidx_collection_collection_1_1_0.xml │ ├── Gradle__androidx_constraintlayout_constraintlayout_2_0_1_aar.xml │ ├── Gradle__androidx_constraintlayout_constraintlayout_solver_2_0_1.xml │ ├── Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml │ ├── Gradle__androidx_core_core_1_5_0_aar.xml │ ├── Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml │ ├── Gradle__androidx_customview_customview_1_1_0_aar.xml │ ├── Gradle__androidx_documentfile_documentfile_1_0_0_aar.xml │ ├── Gradle__androidx_drawerlayout_drawerlayout_1_1_1_aar.xml │ ├── Gradle__androidx_dynamicanimation_dynamicanimation_1_0_0_aar.xml │ ├── Gradle__androidx_fragment_fragment_1_2_5_aar.xml │ ├── Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml │ ├── Gradle__androidx_legacy_legacy_support_core_utils_1_0_0_aar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_common_2_2_0.xml │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_core_2_2_0_aar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_runtime_2_2_0_aar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_viewmodel_2_2_0_aar.xml │ ├── Gradle__androidx_lifecycle_lifecycle_viewmodel_savedstate_2_2_0_aar.xml │ ├── Gradle__androidx_loader_loader_1_0_0_aar.xml │ ├── Gradle__androidx_localbroadcastmanager_localbroadcastmanager_1_0_0_aar.xml │ ├── Gradle__androidx_print_print_1_0_0_aar.xml │ ├── Gradle__androidx_recyclerview_recyclerview_1_1_0_aar.xml │ ├── Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml │ ├── Gradle__androidx_transition_transition_1_2_0_aar.xml │ ├── Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml │ ├── Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml │ ├── Gradle__androidx_versionedparcelable_versionedparcelable_1_1_1_aar.xml │ ├── Gradle__androidx_viewpager2_viewpager2_1_0_0_aar.xml │ ├── Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml │ ├── Gradle__com_android_billingclient_billing_2_0_1_aar.xml │ ├── Gradle__com_android_support_support_annotations_28_0_0.xml │ ├── Gradle__com_anjlab_android_iab_v3_library_1_1_0.xml │ ├── Gradle__com_github_javiersantos_PiracyChecker_1_2_5_aar.xml │ ├── Gradle__com_google_android_material_material_1_6_1_aar.xml │ ├── Gradle__org_jetbrains_annotations_13_0.xml │ ├── Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_41.xml │ ├── Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_41.xml │ ├── Gradle__org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_3_41.xml │ └── Gradle__org_jetbrains_kotlin_kotlin_stdlib_jdk8_1_3_41.xml ├── misc.xml ├── modules.xml ├── modules │ ├── AnotherTheme.iml │ └── app │ │ ├── AnotherTheme.app.androidTest.iml │ │ ├── AnotherTheme.app.iml │ │ ├── AnotherTheme.app.main.iml │ │ └── AnotherTheme.app.unitTest.iml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── ThemerConstants.gradle ├── build.gradle ├── build │ ├── generated │ │ ├── res │ │ │ └── resValues │ │ │ │ ├── debug │ │ │ │ └── values │ │ │ │ │ └── gradleResValues.xml │ │ │ │ └── release │ │ │ │ └── values │ │ │ │ └── gradleResValues.xml │ │ └── source │ │ │ └── buildConfig │ │ │ ├── debug │ │ │ └── com │ │ │ │ └── drdisagree │ │ │ │ └── anothertheme │ │ │ │ └── BuildConfig.java │ │ │ └── release │ │ │ └── com │ │ │ └── drdisagree │ │ │ └── anothertheme │ │ │ └── BuildConfig.java │ ├── intermediates │ │ ├── aapt_proguard_file │ │ │ └── release │ │ │ │ └── aapt_rules.txt │ │ ├── annotation_processor_list │ │ │ └── release │ │ │ │ └── annotationProcessors.json │ │ ├── blame │ │ │ └── res │ │ │ │ └── release │ │ │ │ ├── multi-v2 │ │ │ │ ├── release.json │ │ │ │ ├── values-af.json │ │ │ │ ├── values-am.json │ │ │ │ ├── values-ar.json │ │ │ │ ├── values-as.json │ │ │ │ ├── values-az.json │ │ │ │ ├── values-b+es+419.json │ │ │ │ ├── values-b+sr+Latn.json │ │ │ │ ├── values-be.json │ │ │ │ ├── values-bg.json │ │ │ │ ├── values-bn.json │ │ │ │ ├── values-bs.json │ │ │ │ ├── values-ca.json │ │ │ │ ├── values-cs.json │ │ │ │ ├── values-da.json │ │ │ │ ├── values-de.json │ │ │ │ ├── values-el.json │ │ │ │ ├── values-en-rAU.json │ │ │ │ ├── values-en-rCA.json │ │ │ │ ├── values-en-rGB.json │ │ │ │ ├── values-en-rIN.json │ │ │ │ ├── values-en-rXC.json │ │ │ │ ├── values-es-rUS.json │ │ │ │ ├── values-es.json │ │ │ │ ├── values-et.json │ │ │ │ ├── values-eu.json │ │ │ │ ├── values-fa.json │ │ │ │ ├── values-fi.json │ │ │ │ ├── values-fr-rCA.json │ │ │ │ ├── values-fr.json │ │ │ │ ├── values-gl.json │ │ │ │ ├── values-gu.json │ │ │ │ ├── values-h320dp-port-v13.json │ │ │ │ ├── values-h360dp-land-v13.json │ │ │ │ ├── values-h480dp-land-v13.json │ │ │ │ ├── values-h550dp-port-v13.json │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ ├── values-hi.json │ │ │ │ ├── values-hr.json │ │ │ │ ├── values-hu.json │ │ │ │ ├── values-hy.json │ │ │ │ ├── values-in.json │ │ │ │ ├── values-is.json │ │ │ │ ├── values-it.json │ │ │ │ ├── values-iw.json │ │ │ │ ├── values-ja.json │ │ │ │ ├── values-ka.json │ │ │ │ ├── values-kk.json │ │ │ │ ├── values-km.json │ │ │ │ ├── values-kn.json │ │ │ │ ├── values-ko.json │ │ │ │ ├── values-ky.json │ │ │ │ ├── values-land.json │ │ │ │ ├── values-large-v4.json │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ ├── values-ldrtl-v17.json │ │ │ │ ├── values-lo.json │ │ │ │ ├── values-lt.json │ │ │ │ ├── values-lv.json │ │ │ │ ├── values-mk.json │ │ │ │ ├── values-ml.json │ │ │ │ ├── values-mn.json │ │ │ │ ├── values-mr.json │ │ │ │ ├── values-ms.json │ │ │ │ ├── values-my.json │ │ │ │ ├── values-nb.json │ │ │ │ ├── values-ne.json │ │ │ │ ├── values-night-v8.json │ │ │ │ ├── values-nl.json │ │ │ │ ├── values-or.json │ │ │ │ ├── values-pa.json │ │ │ │ ├── values-pl.json │ │ │ │ ├── values-port.json │ │ │ │ ├── values-pt-rBR.json │ │ │ │ ├── values-pt-rPT.json │ │ │ │ ├── values-pt.json │ │ │ │ ├── values-ro.json │ │ │ │ ├── values-ru.json │ │ │ │ ├── values-si.json │ │ │ │ ├── values-sk.json │ │ │ │ ├── values-sl.json │ │ │ │ ├── values-small-v4.json │ │ │ │ ├── values-sq.json │ │ │ │ ├── values-sr.json │ │ │ │ ├── values-sv.json │ │ │ │ ├── values-sw.json │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ ├── values-ta.json │ │ │ │ ├── values-te.json │ │ │ │ ├── values-th.json │ │ │ │ ├── values-tl.json │ │ │ │ ├── values-tr.json │ │ │ │ ├── values-uk.json │ │ │ │ ├── values-ur.json │ │ │ │ ├── values-uz.json │ │ │ │ ├── values-v16.json │ │ │ │ ├── values-v17.json │ │ │ │ ├── values-v18.json │ │ │ │ ├── values-v21.json │ │ │ │ ├── values-v22.json │ │ │ │ ├── values-v23.json │ │ │ │ ├── values-v24.json │ │ │ │ ├── values-v25.json │ │ │ │ ├── values-v26.json │ │ │ │ ├── values-v28.json │ │ │ │ ├── values-v31.json │ │ │ │ ├── values-vi.json │ │ │ │ ├── values-w320dp-land-v13.json │ │ │ │ ├── values-w360dp-port-v13.json │ │ │ │ ├── values-w480dp-port-v13.json │ │ │ │ ├── values-w600dp-land-v13.json │ │ │ │ ├── values-watch-v20.json │ │ │ │ ├── values-watch-v21.json │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ ├── values-zh-rCN.json │ │ │ │ ├── values-zh-rHK.json │ │ │ │ ├── values-zh-rTW.json │ │ │ │ ├── values-zu.json │ │ │ │ └── values.json │ │ │ │ └── single │ │ │ │ └── release.json │ │ ├── bundle_manifest │ │ │ └── release │ │ │ │ └── bundle-manifest │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output.json │ │ ├── compile_and_runtime_not_namespaced_r_class_jar │ │ │ └── release │ │ │ │ └── R.jar │ │ ├── dex │ │ │ └── release │ │ │ │ └── minifyReleaseWithR8 │ │ │ │ └── classes.dex │ │ ├── incremental │ │ │ ├── mergeReleaseAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseShaders │ │ │ │ └── merger.xml │ │ │ ├── packageRelease │ │ │ │ └── tmp │ │ │ │ │ └── release │ │ │ │ │ ├── dex-renamer-state.txt │ │ │ │ │ └── zip-cache │ │ │ │ │ ├── androidResources │ │ │ │ │ └── javaResources0 │ │ │ ├── release-mergeJavaRes │ │ │ │ └── merge-state │ │ │ └── release-mergeNativeLibs │ │ │ │ └── merge-state │ │ ├── instant_app_manifest │ │ │ └── release │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output.json │ │ ├── javac │ │ │ └── release │ │ │ │ └── classes │ │ │ │ └── com │ │ │ │ └── drdisagree │ │ │ │ └── anothertheme │ │ │ │ └── BuildConfig.class │ │ ├── manifest_merge_blame_file │ │ │ └── release │ │ │ │ └── manifest-merger-blame-release-report.txt │ │ ├── merged_assets │ │ │ └── release │ │ │ │ └── out │ │ │ │ └── overlays │ │ │ │ ├── android │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type1a.enc │ │ │ │ ├── type1a_Enable_Filled_Battery.xml.enc │ │ │ │ ├── type1b.enc │ │ │ │ ├── type1b_(Filled)_(Landscape)_Battery_Buddy.xml.enc │ │ │ │ ├── type1b_(Filled)_Battery_Buddy.xml.enc │ │ │ │ ├── type1b_(Filled)_Battery_Inverter.xml.enc │ │ │ │ ├── type1b_(Filled)_Battery_Love.xml.enc │ │ │ │ ├── type1b_(Filled)_Battery_Plumpy.xml.enc │ │ │ │ ├── type1b_(Filled)_Battery_Rounded.xml.enc │ │ │ │ ├── type1b_(Landscape)_Battery_FaintUI.xml.enc │ │ │ │ ├── type1b_(Landscape)_Battery_Peas.xml.enc │ │ │ │ ├── type1b_(Landscape_LR)_LBattery_Hyper.xml.enc │ │ │ │ ├── type1b_(Landscape_LR)_LBattery_iOS.xml.enc │ │ │ │ ├── type1b_(Landscape_LR)_RBattery_Hyper.xml.enc │ │ │ │ ├── type1b_(Landscape_LR)_RBattery_iOS.xml.enc │ │ │ │ ├── type1b_Battery_AiirO.xml.enc │ │ │ │ ├── type1b_Battery_Aurora.xml.enc │ │ │ │ ├── type1b_Battery_Capsule.xml.enc │ │ │ │ ├── type1b_Battery_Dual.xml.enc │ │ │ │ ├── type1b_Battery_Forlorn.xml.enc │ │ │ │ ├── type1b_Battery_Leaf.xml.enc │ │ │ │ ├── type1b_Battery_Pill.xml.enc │ │ │ │ ├── type1b_Battery_Portrait_iOS.xml.enc │ │ │ │ ├── type1b_Battery_Simple.xml.enc │ │ │ │ ├── type1b_Battery_Unable.xml.enc │ │ │ │ ├── type1b_Battery_Wonder.xml.enc │ │ │ │ ├── type1b_Battery_ZigZag.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_ab_back_material.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_dark.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_light.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_settings.xml.enc │ │ │ │ │ │ ├── ic_accessibility_reduce_bright_colors_foreground.xml.enc │ │ │ │ │ │ ├── ic_account_circle.xml.enc │ │ │ │ │ │ ├── ic_action_open.xml.enc │ │ │ │ │ │ ├── ic_app_volume.xml.enc │ │ │ │ │ │ ├── ic_audio_alarm.xml.enc │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_media.xml.enc │ │ │ │ │ │ ├── ic_audio_media_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif_vibrate.xml.enc │ │ │ │ │ │ ├── ic_audio_vol.xml.enc │ │ │ │ │ │ ├── ic_audio_vol_mute.xml.enc │ │ │ │ │ │ ├── ic_battery.xml.enc │ │ │ │ │ │ ├── ic_battery_80_24dp.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_brightness_full.xml.enc │ │ │ │ │ │ ├── ic_brightness_low.xml.enc │ │ │ │ │ │ ├── ic_brightness_medium.xml.enc │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml.enc │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml.enc │ │ │ │ │ │ ├── ic_bt_network_pan.xml.enc │ │ │ │ │ │ ├── ic_camera.xml.enc │ │ │ │ │ │ ├── ic_camera_allowed.xml.enc │ │ │ │ │ │ ├── ic_camera_blocked.xml.enc │ │ │ │ │ │ ├── ic_chevron_end.xml.enc │ │ │ │ │ │ ├── ic_chevron_start.xml.enc │ │ │ │ │ │ ├── ic_clear.xml.enc │ │ │ │ │ │ ├── ic_clear_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_close.xml.enc │ │ │ │ │ │ ├── ic_collapse_bundle.xml.enc │ │ │ │ │ │ ├── ic_collapse_notification.xml.enc │ │ │ │ │ │ ├── ic_dialog_alert_material.xml.enc │ │ │ │ │ │ ├── ic_doc_audio.xml.enc │ │ │ │ │ │ ├── ic_eject_24dp.xml.enc │ │ │ │ │ │ ├── ic_expand_bundle.xml.enc │ │ │ │ │ │ ├── ic_expand_more.xml.enc │ │ │ │ │ │ ├── ic_expand_more_48dp.xml.enc │ │ │ │ │ │ ├── ic_expand_notification.xml.enc │ │ │ │ │ │ ├── ic_feedback.xml.enc │ │ │ │ │ │ ├── ic_gaming_notif.xml.enc │ │ │ │ │ │ ├── ic_go_search_api_material.xml.enc │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_info.xml.enc │ │ │ │ │ │ ├── ic_info_outline.xml.enc │ │ │ │ │ │ ├── ic_info_outline_24.xml.enc │ │ │ │ │ │ ├── ic_link.xml.enc │ │ │ │ │ │ ├── ic_location.xml.enc │ │ │ │ │ │ ├── ic_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_lockdown.xml.enc │ │ │ │ │ │ ├── ic_lock_open.xml.enc │ │ │ │ │ │ ├── ic_lock_power_off.xml.enc │ │ │ │ │ │ ├── ic_lockscreen_ime.xml.enc │ │ │ │ │ │ ├── ic_media_seamless.xml.enc │ │ │ │ │ │ ├── ic_menu.xml.enc │ │ │ │ │ │ ├── ic_menu_moreoverflow_material.xml.enc │ │ │ │ │ │ ├── ic_mic.xml.enc │ │ │ │ │ │ ├── ic_mic_allowed.xml.enc │ │ │ │ │ │ ├── ic_mic_blocked.xml.enc │ │ │ │ │ │ ├── ic_mode_edit.xml.enc │ │ │ │ │ │ ├── ic_notification_block.xml.enc │ │ │ │ │ │ ├── ic_notifications_alert.xml.enc │ │ │ │ │ │ ├── ic_notifications_alerted.xml.enc │ │ │ │ │ │ ├── ic_phone.xml.enc │ │ │ │ │ │ ├── ic_qs_airplane.xml.enc │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml.enc │ │ │ │ │ │ ├── ic_qs_battery_saver.xml.enc │ │ │ │ │ │ ├── ic_qs_bluetooth.xml.enc │ │ │ │ │ │ ├── ic_qs_dnd.xml.enc │ │ │ │ │ │ ├── ic_qs_flashlight.xml.enc │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml.enc │ │ │ │ │ │ ├── ic_qs_heads_up.xml.enc │ │ │ │ │ │ ├── ic_qs_night_display_on.xml.enc │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml.enc │ │ │ │ │ │ ├── ic_qs_usb_tether.xml.enc │ │ │ │ │ │ ├── ic_refresh.xml.enc │ │ │ │ │ │ ├── ic_reply_notification.xml.enc │ │ │ │ │ │ ├── ic_restart.xml.enc │ │ │ │ │ │ ├── ic_schedule.xml.enc │ │ │ │ │ │ ├── ic_screenshot.xml.enc │ │ │ │ │ │ ├── ic_sd_card_48dp.xml.enc │ │ │ │ │ │ ├── ic_search_api_material.xml.enc │ │ │ │ │ │ ├── ic_settings_24dp.xml.enc │ │ │ │ │ │ ├── ic_settings_bluetooth.xml.enc │ │ │ │ │ │ ├── ic_signal_location.xml.enc │ │ │ │ │ │ ├── ic_sleep.xml.enc │ │ │ │ │ │ ├── ic_slice_send.xml.enc │ │ │ │ │ │ ├── ic_usb_48dp.xml.enc │ │ │ │ │ │ ├── ic_voice_search_api_material.xml.enc │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml.enc │ │ │ │ │ │ ├── perm_group_activity_recognition.xml.enc │ │ │ │ │ │ ├── perm_group_aural.xml.enc │ │ │ │ │ │ ├── perm_group_calendar.xml.enc │ │ │ │ │ │ ├── perm_group_call_log.xml.enc │ │ │ │ │ │ ├── perm_group_camera.xml.enc │ │ │ │ │ │ ├── perm_group_contacts.xml.enc │ │ │ │ │ │ ├── perm_group_location.xml.enc │ │ │ │ │ │ ├── perm_group_microphone.xml.enc │ │ │ │ │ │ ├── perm_group_nearby_devices.xml.enc │ │ │ │ │ │ ├── perm_group_phone_calls.xml.enc │ │ │ │ │ │ ├── perm_group_sensors.xml.enc │ │ │ │ │ │ ├── perm_group_sms.xml.enc │ │ │ │ │ │ ├── perm_group_storage.xml.enc │ │ │ │ │ │ ├── perm_group_visual.xml.enc │ │ │ │ │ │ ├── stat_notify_call_mute.xml.enc │ │ │ │ │ │ ├── stat_notify_missed_call.xml.enc │ │ │ │ │ │ ├── stat_sys_battery_0.xml.enc │ │ │ │ │ │ ├── stat_sys_data_usb.xml.enc │ │ │ │ │ │ ├── stat_sys_speakerphone.xml.enc │ │ │ │ │ │ ├── stat_sys_tether_wifi.xml.enc │ │ │ │ │ │ └── status_bar_notification_section_header_clear_btn.xml.enc │ │ │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── perm_group_network.png.enc │ │ │ │ │ │ └── perm_group_shortrange_network.png.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_ab_back_material.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_dark.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_light.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_settings.xml.enc │ │ │ │ │ │ ├── ic_accessibility_reduce_bright_colors_foreground.xml.enc │ │ │ │ │ │ ├── ic_account_circle.xml.enc │ │ │ │ │ │ ├── ic_action_open.xml.enc │ │ │ │ │ │ ├── ic_app_volume.xml.enc │ │ │ │ │ │ ├── ic_audio_alarm.xml.enc │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_media.xml.enc │ │ │ │ │ │ ├── ic_audio_media_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif_vibrate.xml.enc │ │ │ │ │ │ ├── ic_audio_vol.xml.enc │ │ │ │ │ │ ├── ic_audio_vol_mute.xml.enc │ │ │ │ │ │ ├── ic_battery.xml.enc │ │ │ │ │ │ ├── ic_battery_80_24dp.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_brightness_full.xml.enc │ │ │ │ │ │ ├── ic_brightness_low.xml.enc │ │ │ │ │ │ ├── ic_brightness_medium.xml.enc │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml.enc │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml.enc │ │ │ │ │ │ ├── ic_bt_network_pan.xml.enc │ │ │ │ │ │ ├── ic_camera.xml.enc │ │ │ │ │ │ ├── ic_camera_allowed.xml.enc │ │ │ │ │ │ ├── ic_camera_blocked.xml.enc │ │ │ │ │ │ ├── ic_chevron_end.xml.enc │ │ │ │ │ │ ├── ic_chevron_start.xml.enc │ │ │ │ │ │ ├── ic_clear.xml.enc │ │ │ │ │ │ ├── ic_clear_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_close.xml.enc │ │ │ │ │ │ ├── ic_collapse_bundle.xml.enc │ │ │ │ │ │ ├── ic_collapse_notification.xml.enc │ │ │ │ │ │ ├── ic_dialog_alert_material.xml.enc │ │ │ │ │ │ ├── ic_doc_audio.xml.enc │ │ │ │ │ │ ├── ic_eject_24dp.xml.enc │ │ │ │ │ │ ├── ic_expand_bundle.xml.enc │ │ │ │ │ │ ├── ic_expand_more.xml.enc │ │ │ │ │ │ ├── ic_expand_more_48dp.xml.enc │ │ │ │ │ │ ├── ic_expand_notification.xml.enc │ │ │ │ │ │ ├── ic_feedback.xml.enc │ │ │ │ │ │ ├── ic_gaming_notif.xml.enc │ │ │ │ │ │ ├── ic_go_search_api_material.xml.enc │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_info.xml.enc │ │ │ │ │ │ ├── ic_info_outline.xml.enc │ │ │ │ │ │ ├── ic_info_outline_24.xml.enc │ │ │ │ │ │ ├── ic_link.xml.enc │ │ │ │ │ │ ├── ic_location.xml.enc │ │ │ │ │ │ ├── ic_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_lockdown.xml.enc │ │ │ │ │ │ ├── ic_lock_open.xml.enc │ │ │ │ │ │ ├── ic_lock_power_off.xml.enc │ │ │ │ │ │ ├── ic_lockscreen_ime.xml.enc │ │ │ │ │ │ ├── ic_media_seamless.xml.enc │ │ │ │ │ │ ├── ic_menu.xml.enc │ │ │ │ │ │ ├── ic_menu_moreoverflow_material.xml.enc │ │ │ │ │ │ ├── ic_mic.xml.enc │ │ │ │ │ │ ├── ic_mic_allowed.xml.enc │ │ │ │ │ │ ├── ic_mic_blocked.xml.enc │ │ │ │ │ │ ├── ic_mode_edit.xml.enc │ │ │ │ │ │ ├── ic_notification_block.xml.enc │ │ │ │ │ │ ├── ic_notifications_alert.xml.enc │ │ │ │ │ │ ├── ic_notifications_alerted.xml.enc │ │ │ │ │ │ ├── ic_phone.xml.enc │ │ │ │ │ │ ├── ic_qs_airplane.xml.enc │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml.enc │ │ │ │ │ │ ├── ic_qs_battery_saver.xml.enc │ │ │ │ │ │ ├── ic_qs_bluetooth.xml.enc │ │ │ │ │ │ ├── ic_qs_dnd.xml.enc │ │ │ │ │ │ ├── ic_qs_flashlight.xml.enc │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml.enc │ │ │ │ │ │ ├── ic_qs_heads_up.xml.enc │ │ │ │ │ │ ├── ic_qs_night_display_on.xml.enc │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml.enc │ │ │ │ │ │ ├── ic_qs_usb_tether.xml.enc │ │ │ │ │ │ ├── ic_refresh.xml.enc │ │ │ │ │ │ ├── ic_reply_notification.xml.enc │ │ │ │ │ │ ├── ic_restart.xml.enc │ │ │ │ │ │ ├── ic_schedule.xml.enc │ │ │ │ │ │ ├── ic_screenshot.xml.enc │ │ │ │ │ │ ├── ic_sd_card_48dp.xml.enc │ │ │ │ │ │ ├── ic_search_api_material.xml.enc │ │ │ │ │ │ ├── ic_settings_24dp.xml.enc │ │ │ │ │ │ ├── ic_settings_bluetooth.xml.enc │ │ │ │ │ │ ├── ic_signal_location.xml.enc │ │ │ │ │ │ ├── ic_sleep.xml.enc │ │ │ │ │ │ ├── ic_slice_send.xml.enc │ │ │ │ │ │ ├── ic_usb_48dp.xml.enc │ │ │ │ │ │ ├── ic_voice_search_api_material.xml.enc │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml.enc │ │ │ │ │ │ ├── perm_group_activity_recognition.xml.enc │ │ │ │ │ │ ├── perm_group_aural.xml.enc │ │ │ │ │ │ ├── perm_group_calendar.xml.enc │ │ │ │ │ │ ├── perm_group_call_log.xml.enc │ │ │ │ │ │ ├── perm_group_camera.xml.enc │ │ │ │ │ │ ├── perm_group_contacts.xml.enc │ │ │ │ │ │ ├── perm_group_location.xml.enc │ │ │ │ │ │ ├── perm_group_microphone.xml.enc │ │ │ │ │ │ ├── perm_group_nearby_devices.xml.enc │ │ │ │ │ │ ├── perm_group_phone_calls.xml.enc │ │ │ │ │ │ ├── perm_group_sensors.xml.enc │ │ │ │ │ │ ├── perm_group_sms.xml.enc │ │ │ │ │ │ ├── perm_group_storage.xml.enc │ │ │ │ │ │ ├── perm_group_visual.xml.enc │ │ │ │ │ │ ├── stat_notify_call_mute.xml.enc │ │ │ │ │ │ ├── stat_notify_missed_call.xml.enc │ │ │ │ │ │ ├── stat_sys_battery_0.xml.enc │ │ │ │ │ │ ├── stat_sys_data_usb.xml.enc │ │ │ │ │ │ ├── stat_sys_speakerphone.xml.enc │ │ │ │ │ │ ├── stat_sys_tether_wifi.xml.enc │ │ │ │ │ │ └── status_bar_notification_section_header_clear_btn.xml.enc │ │ │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── perm_group_network.png.enc │ │ │ │ │ │ └── perm_group_shortrange_network.png.enc │ │ │ │ ├── type2_(Icons)_Lorn │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_ab_back_material.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_dark.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_light.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_settings.xml.enc │ │ │ │ │ │ ├── ic_accessibility_reduce_bright_colors_foreground.xml.enc │ │ │ │ │ │ ├── ic_account_circle.xml.enc │ │ │ │ │ │ ├── ic_action_open.xml.enc │ │ │ │ │ │ ├── ic_app_volume.xml.enc │ │ │ │ │ │ ├── ic_audio_alarm.xml.enc │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_media.xml.enc │ │ │ │ │ │ ├── ic_audio_media_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif_vibrate.xml.enc │ │ │ │ │ │ ├── ic_audio_vol.xml.enc │ │ │ │ │ │ ├── ic_audio_vol_mute.xml.enc │ │ │ │ │ │ ├── ic_battery.xml.enc │ │ │ │ │ │ ├── ic_battery_80_24dp.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_brightness_full.xml.enc │ │ │ │ │ │ ├── ic_brightness_low.xml.enc │ │ │ │ │ │ ├── ic_brightness_medium.xml.enc │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml.enc │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml.enc │ │ │ │ │ │ ├── ic_bt_network_pan.xml.enc │ │ │ │ │ │ ├── ic_camera.xml.enc │ │ │ │ │ │ ├── ic_camera_allowed.xml.enc │ │ │ │ │ │ ├── ic_camera_blocked.xml.enc │ │ │ │ │ │ ├── ic_chevron_end.xml.enc │ │ │ │ │ │ ├── ic_chevron_start.xml.enc │ │ │ │ │ │ ├── ic_clear.xml.enc │ │ │ │ │ │ ├── ic_clear_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_close.xml.enc │ │ │ │ │ │ ├── ic_collapse_bundle.xml.enc │ │ │ │ │ │ ├── ic_collapse_notification.xml.enc │ │ │ │ │ │ ├── ic_dialog_alert_material.xml.enc │ │ │ │ │ │ ├── ic_doc_audio.xml.enc │ │ │ │ │ │ ├── ic_eject_24dp.xml.enc │ │ │ │ │ │ ├── ic_expand_bundle.xml.enc │ │ │ │ │ │ ├── ic_expand_more.xml.enc │ │ │ │ │ │ ├── ic_expand_more_48dp.xml.enc │ │ │ │ │ │ ├── ic_expand_notification.xml.enc │ │ │ │ │ │ ├── ic_feedback.xml.enc │ │ │ │ │ │ ├── ic_gaming_notif.xml.enc │ │ │ │ │ │ ├── ic_go_search_api_material.xml.enc │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_info.xml.enc │ │ │ │ │ │ ├── ic_info_outline.xml.enc │ │ │ │ │ │ ├── ic_info_outline_24.xml.enc │ │ │ │ │ │ ├── ic_link.xml.enc │ │ │ │ │ │ ├── ic_location.xml.enc │ │ │ │ │ │ ├── ic_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_lockdown.xml.enc │ │ │ │ │ │ ├── ic_lock_open.xml.enc │ │ │ │ │ │ ├── ic_lock_power_off.xml.enc │ │ │ │ │ │ ├── ic_lockscreen_ime.xml.enc │ │ │ │ │ │ ├── ic_media_seamless.xml.enc │ │ │ │ │ │ ├── ic_menu.xml.enc │ │ │ │ │ │ ├── ic_menu_overflow_material.xml.enc │ │ │ │ │ │ ├── ic_mic.xml.enc │ │ │ │ │ │ ├── ic_mic_allowed.xml.enc │ │ │ │ │ │ ├── ic_mic_blocked.xml.enc │ │ │ │ │ │ ├── ic_mode_edit.xml.enc │ │ │ │ │ │ ├── ic_notification_block.xml.enc │ │ │ │ │ │ ├── ic_notifications_alert.xml.enc │ │ │ │ │ │ ├── ic_notifications_alerted.xml.enc │ │ │ │ │ │ ├── ic_phone.xml.enc │ │ │ │ │ │ ├── ic_qs_airplane.xml.enc │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml.enc │ │ │ │ │ │ ├── ic_qs_battery_saver.xml.enc │ │ │ │ │ │ ├── ic_qs_bluetooth.xml.enc │ │ │ │ │ │ ├── ic_qs_dnd.xml.enc │ │ │ │ │ │ ├── ic_qs_flashlight.xml.enc │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml.enc │ │ │ │ │ │ ├── ic_qs_heads_up.xml.enc │ │ │ │ │ │ ├── ic_qs_night_display_on.xml.enc │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml.enc │ │ │ │ │ │ ├── ic_qs_usb_tether.xml.enc │ │ │ │ │ │ ├── ic_refresh.xml.enc │ │ │ │ │ │ ├── ic_reply_notification.xml.enc │ │ │ │ │ │ ├── ic_restart.xml.enc │ │ │ │ │ │ ├── ic_schedule.xml.enc │ │ │ │ │ │ ├── ic_screenshot.xml.enc │ │ │ │ │ │ ├── ic_sd_card_48dp.xml.enc │ │ │ │ │ │ ├── ic_search_api_material.xml.enc │ │ │ │ │ │ ├── ic_settings_24dp.xml.enc │ │ │ │ │ │ ├── ic_settings_bluetooth.xml.enc │ │ │ │ │ │ ├── ic_signal_location.xml.enc │ │ │ │ │ │ ├── ic_sleep.xml.enc │ │ │ │ │ │ ├── ic_slice_send.xml.enc │ │ │ │ │ │ ├── ic_usb_48dp.xml.enc │ │ │ │ │ │ ├── ic_voice_search_api_material.xml.enc │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml.enc │ │ │ │ │ │ ├── perm_group_activity_recognition.xml.enc │ │ │ │ │ │ ├── perm_group_aural.xml.enc │ │ │ │ │ │ ├── perm_group_calendar.xml.enc │ │ │ │ │ │ ├── perm_group_call_log.xml.enc │ │ │ │ │ │ ├── perm_group_camera.xml.enc │ │ │ │ │ │ ├── perm_group_contacts.xml.enc │ │ │ │ │ │ ├── perm_group_location.xml.enc │ │ │ │ │ │ ├── perm_group_microphone.xml.enc │ │ │ │ │ │ ├── perm_group_nearby_devices.xml.enc │ │ │ │ │ │ ├── perm_group_phone_calls.xml.enc │ │ │ │ │ │ ├── perm_group_sensors.xml.enc │ │ │ │ │ │ ├── perm_group_sms.xml.enc │ │ │ │ │ │ ├── perm_group_storage.xml.enc │ │ │ │ │ │ ├── perm_group_visual.xml.enc │ │ │ │ │ │ ├── stat_notify_call_mute.xml.enc │ │ │ │ │ │ ├── stat_notify_missed_call.xml.enc │ │ │ │ │ │ ├── stat_sys_battery_0.xml.enc │ │ │ │ │ │ ├── stat_sys_data_usb.xml.enc │ │ │ │ │ │ ├── stat_sys_speakerphone.xml.enc │ │ │ │ │ │ ├── stat_sys_tether_wifi.xml.enc │ │ │ │ │ │ └── status_bar_notification_section_header_clear_btn.xml.enc │ │ │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── perm_group_network.png.enc │ │ │ │ │ │ └── perm_group_shortrange_network.png.enc │ │ │ │ ├── type2_(Icons)_Plumpy │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_ab_back_material.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_dark.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_light.xml.enc │ │ │ │ │ │ ├── ic_ab_back_material_settings.xml.enc │ │ │ │ │ │ ├── ic_accessibility_reduce_bright_colors_foreground.xml.enc │ │ │ │ │ │ ├── ic_account_circle.xml.enc │ │ │ │ │ │ ├── ic_action_open.xml.enc │ │ │ │ │ │ ├── ic_app_volume.xml.enc │ │ │ │ │ │ ├── ic_audio_alarm.xml.enc │ │ │ │ │ │ ├── ic_audio_alarm_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_media.xml.enc │ │ │ │ │ │ ├── ic_audio_media_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif_mute.xml.enc │ │ │ │ │ │ ├── ic_audio_ring_notif_vibrate.xml.enc │ │ │ │ │ │ ├── ic_audio_vol.xml.enc │ │ │ │ │ │ ├── ic_audio_vol_mute.xml.enc │ │ │ │ │ │ ├── ic_battery.xml.enc │ │ │ │ │ │ ├── ic_battery_80_24dp.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_share_icon.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_brightness_full.xml.enc │ │ │ │ │ │ ├── ic_brightness_low.xml.enc │ │ │ │ │ │ ├── ic_brightness_medium.xml.enc │ │ │ │ │ │ ├── ic_bt_headphones_a2dp.xml.enc │ │ │ │ │ │ ├── ic_bt_headset_hfp.xml.enc │ │ │ │ │ │ ├── ic_bt_network_pan.xml.enc │ │ │ │ │ │ ├── ic_camera.xml.enc │ │ │ │ │ │ ├── ic_camera_allowed.xml.enc │ │ │ │ │ │ ├── ic_camera_blocked.xml.enc │ │ │ │ │ │ ├── ic_chevron_end.xml.enc │ │ │ │ │ │ ├── ic_chevron_start.xml.enc │ │ │ │ │ │ ├── ic_clear.xml.enc │ │ │ │ │ │ ├── ic_clear_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_close.xml.enc │ │ │ │ │ │ ├── ic_collapse_bundle.xml.enc │ │ │ │ │ │ ├── ic_collapse_notification.xml.enc │ │ │ │ │ │ ├── ic_dialog_alert_material.xml.enc │ │ │ │ │ │ ├── ic_doc_audio.xml.enc │ │ │ │ │ │ ├── ic_eject_24dp.xml.enc │ │ │ │ │ │ ├── ic_expand_bundle.xml.enc │ │ │ │ │ │ ├── ic_expand_more.xml.enc │ │ │ │ │ │ ├── ic_expand_more_48dp.xml.enc │ │ │ │ │ │ ├── ic_expand_notification.xml.enc │ │ │ │ │ │ ├── ic_feedback.xml.enc │ │ │ │ │ │ ├── ic_gaming_notif.xml.enc │ │ │ │ │ │ ├── ic_go_search_api_material.xml.enc │ │ │ │ │ │ ├── ic_hotspot_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_info.xml.enc │ │ │ │ │ │ ├── ic_info_outline.xml.enc │ │ │ │ │ │ ├── ic_info_outline_24.xml.enc │ │ │ │ │ │ ├── ic_link.xml.enc │ │ │ │ │ │ ├── ic_location.xml.enc │ │ │ │ │ │ ├── ic_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_lockdown.xml.enc │ │ │ │ │ │ ├── ic_lock_open.xml.enc │ │ │ │ │ │ ├── ic_lock_power_off.xml.enc │ │ │ │ │ │ ├── ic_lockscreen_ime.xml.enc │ │ │ │ │ │ ├── ic_media_seamless.xml.enc │ │ │ │ │ │ ├── ic_menu.xml.enc │ │ │ │ │ │ ├── ic_menu_moreoverflow_material.xml.enc │ │ │ │ │ │ ├── ic_mic.xml.enc │ │ │ │ │ │ ├── ic_mic_allowed.xml.enc │ │ │ │ │ │ ├── ic_mic_blocked.xml.enc │ │ │ │ │ │ ├── ic_mode_edit.xml.enc │ │ │ │ │ │ ├── ic_notification_block.xml.enc │ │ │ │ │ │ ├── ic_notifications_alert.xml.enc │ │ │ │ │ │ ├── ic_notifications_alerted.xml.enc │ │ │ │ │ │ ├── ic_phone.xml.enc │ │ │ │ │ │ ├── ic_qs_airplane.xml.enc │ │ │ │ │ │ ├── ic_qs_auto_rotate.xml.enc │ │ │ │ │ │ ├── ic_qs_battery_saver.xml.enc │ │ │ │ │ │ ├── ic_qs_bluetooth.xml.enc │ │ │ │ │ │ ├── ic_qs_dnd.xml.enc │ │ │ │ │ │ ├── ic_qs_flashlight.xml.enc │ │ │ │ │ │ ├── ic_qs_gaming_mode.xml.enc │ │ │ │ │ │ ├── ic_qs_heads_up.xml.enc │ │ │ │ │ │ ├── ic_qs_night_display_on.xml.enc │ │ │ │ │ │ ├── ic_qs_ui_mode_night.xml.enc │ │ │ │ │ │ ├── ic_qs_usb_tether.xml.enc │ │ │ │ │ │ ├── ic_refresh.xml.enc │ │ │ │ │ │ ├── ic_reply_notification.xml.enc │ │ │ │ │ │ ├── ic_restart.xml.enc │ │ │ │ │ │ ├── ic_schedule.xml.enc │ │ │ │ │ │ ├── ic_screenshot.xml.enc │ │ │ │ │ │ ├── ic_sd_card_48dp.xml.enc │ │ │ │ │ │ ├── ic_search_api_material.xml.enc │ │ │ │ │ │ ├── ic_settings_24dp.xml.enc │ │ │ │ │ │ ├── ic_settings_bluetooth.xml.enc │ │ │ │ │ │ ├── ic_signal_location.xml.enc │ │ │ │ │ │ ├── ic_sleep.xml.enc │ │ │ │ │ │ ├── ic_slice_send.xml.enc │ │ │ │ │ │ ├── ic_usb_48dp.xml.enc │ │ │ │ │ │ ├── ic_voice_search_api_material.xml.enc │ │ │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml.enc │ │ │ │ │ │ ├── perm_group_activity_recognition.xml.enc │ │ │ │ │ │ ├── perm_group_aural.xml.enc │ │ │ │ │ │ ├── perm_group_calendar.xml.enc │ │ │ │ │ │ ├── perm_group_call_log.xml.enc │ │ │ │ │ │ ├── perm_group_camera.xml.enc │ │ │ │ │ │ ├── perm_group_contacts.xml.enc │ │ │ │ │ │ ├── perm_group_location.xml.enc │ │ │ │ │ │ ├── perm_group_microphone.xml.enc │ │ │ │ │ │ ├── perm_group_nearby_devices.xml.enc │ │ │ │ │ │ ├── perm_group_phone_calls.xml.enc │ │ │ │ │ │ ├── perm_group_sensors.xml.enc │ │ │ │ │ │ ├── perm_group_sms.xml.enc │ │ │ │ │ │ ├── perm_group_storage.xml.enc │ │ │ │ │ │ ├── perm_group_visual.xml.enc │ │ │ │ │ │ ├── stat_notify_call_mute.xml.enc │ │ │ │ │ │ ├── stat_notify_missed_call.xml.enc │ │ │ │ │ │ ├── stat_sys_battery_0.xml.enc │ │ │ │ │ │ ├── stat_sys_data_usb.xml.enc │ │ │ │ │ │ ├── stat_sys_speakerphone.xml.enc │ │ │ │ │ │ ├── stat_sys_tether_wifi.xml.enc │ │ │ │ │ │ └── status_bar_notification_section_header_clear_btn.xml.enc │ │ │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── perm_group_network.png.enc │ │ │ │ │ │ └── perm_group_shortrange_network.png.enc │ │ │ │ ├── type2_(Signal)_AiirO │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Bold │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Capsule │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Forlorn │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Glummy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Hollow │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Japanese │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Koala │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Lineal │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Linear │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Ory │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Router │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Scale │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Spiral │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Tower │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_Waffle │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_ZigZag │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ ├── type2_(Signal)_iOS │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation.xml.enc │ │ │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_wifi_signal_3.xml.enc │ │ │ │ │ │ └── ic_wifi_signal_4.xml.enc │ │ │ │ └── type2_(Tweak)_Signal_Data_Cross_Remover_[Custom_Rom] │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── placebo_placeholder.xml.enc │ │ │ │ │ └── values │ │ │ │ │ ├── dimens.xml.enc │ │ │ │ │ └── strings.xml.enc │ │ │ │ ├── app.lawnchair │ │ │ │ ├── attention.enc │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── abc_ic_ab_back_material.xml.enc │ │ │ │ │ ├── ic_about.xml.enc │ │ │ │ │ ├── ic_allapps_search.xml.enc │ │ │ │ │ ├── ic_app_drawer.xml.enc │ │ │ │ │ ├── ic_clear_all_recents.xml.enc │ │ │ │ │ ├── ic_discord.xml.enc │ │ │ │ │ ├── ic_dock.xml.enc │ │ │ │ │ ├── ic_edit.xml.enc │ │ │ │ │ ├── ic_empty_recents.xml.enc │ │ │ │ │ ├── ic_folder.xml.enc │ │ │ │ │ ├── ic_general.xml.enc │ │ │ │ │ ├── ic_github.xml.enc │ │ │ │ │ ├── ic_gm_close_24.xml.enc │ │ │ │ │ ├── ic_help.xml.enc │ │ │ │ │ ├── ic_home_screen.xml.enc │ │ │ │ │ ├── ic_info_no_shadow.xml.enc │ │ │ │ │ ├── ic_lens.xml.enc │ │ │ │ │ ├── ic_new_releases.xml.enc │ │ │ │ │ ├── ic_palette.xml.enc │ │ │ │ │ ├── ic_qsb_search.xml.enc │ │ │ │ │ ├── ic_quickstep.xml.enc │ │ │ │ │ ├── ic_remove_no_shadow.xml.enc │ │ │ │ │ ├── ic_screenshot.xml.enc │ │ │ │ │ ├── ic_setting.xml.enc │ │ │ │ │ ├── ic_share.xml.enc │ │ │ │ │ ├── ic_smartspace.xml.enc │ │ │ │ │ ├── ic_split_screen.xml.enc │ │ │ │ │ ├── ic_twitter.xml.enc │ │ │ │ │ ├── ic_uninstall_no_shadow.xml.enc │ │ │ │ │ ├── ic_wallpaper.xml.enc │ │ │ │ │ ├── ic_warning.xml.enc │ │ │ │ │ └── ic_widget.xml.enc │ │ │ │ ├── app.revanced.android.youtube │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_google_chip_close.xml.enc │ │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_pause_disabled.xml.enc │ │ │ │ │ │ ├── player_next.xml.enc │ │ │ │ │ │ ├── player_pause.xml.enc │ │ │ │ │ │ ├── player_play.xml.enc │ │ │ │ │ │ ├── player_prev.xml.enc │ │ │ │ │ │ ├── quantum_ic_clear_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_google_chip_close.xml.enc │ │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_pause_disabled.xml.enc │ │ │ │ │ │ ├── player_next.xml.enc │ │ │ │ │ │ ├── player_pause.xml.enc │ │ │ │ │ │ ├── player_play.xml.enc │ │ │ │ │ │ ├── player_prev.xml.enc │ │ │ │ │ │ ├── quantum_ic_clear_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_google_chip_close.xml.enc │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml.enc │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml.enc │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml.enc │ │ │ │ │ ├── ic_notifications_pause_disabled.xml.enc │ │ │ │ │ ├── ic_notifications_play_arrow_disabled.xml.enc │ │ │ │ │ ├── player_next.xml.enc │ │ │ │ │ ├── player_pause.xml.enc │ │ │ │ │ ├── player_play.xml.enc │ │ │ │ │ ├── player_prev.xml.enc │ │ │ │ │ ├── quantum_ic_clear_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_48.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml.enc │ │ │ │ ├── code.name.monkey.retromusic │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ ├── drawable-anydpi-v24 │ │ │ │ │ │ └── ic_notification.xml.enc │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_close.xml.enc │ │ │ │ │ │ ├── ic_favorite.xml.enc │ │ │ │ │ │ ├── ic_favorite_border.xml.enc │ │ │ │ │ │ ├── ic_pause_white_48dp.xml.enc │ │ │ │ │ │ ├── ic_play_arrow_white_48dp.xml.enc │ │ │ │ │ │ ├── ic_skip_next_round_white_32dp.xml.enc │ │ │ │ │ │ └── ic_skip_previous_round_white_32dp.xml.enc │ │ │ │ │ └── drawable │ │ │ │ │ │ └── ic_notification.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ ├── drawable-anydpi-v24 │ │ │ │ │ │ └── ic_notification.xml.enc │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_close.xml.enc │ │ │ │ │ │ ├── ic_favorite.xml.enc │ │ │ │ │ │ ├── ic_favorite_border.xml.enc │ │ │ │ │ │ ├── ic_pause_white_48dp.xml.enc │ │ │ │ │ │ ├── ic_play_arrow_white_48dp.xml.enc │ │ │ │ │ │ ├── ic_skip_next_round_white_32dp.xml.enc │ │ │ │ │ │ └── ic_skip_previous_round_white_32dp.xml.enc │ │ │ │ │ └── drawable │ │ │ │ │ │ └── ic_notification.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ ├── drawable-anydpi-v24 │ │ │ │ │ └── ic_notification.xml.enc │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ ├── ic_close.xml.enc │ │ │ │ │ ├── ic_favorite.xml.enc │ │ │ │ │ ├── ic_favorite_border.xml.enc │ │ │ │ │ ├── ic_pause_white_48dp.xml.enc │ │ │ │ │ ├── ic_play_arrow_white_48dp.xml.enc │ │ │ │ │ ├── ic_skip_next_round_white_32dp.xml.enc │ │ │ │ │ └── ic_skip_previous_round_white_32dp.xml.enc │ │ │ │ │ └── drawable │ │ │ │ │ └── ic_notification.xml.enc │ │ │ │ ├── com.android.settings.icons │ │ │ │ ├── attention.enc │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type1a.enc │ │ │ │ ├── type1a_(Icon_Color)_Follow_Accent.xml.enc │ │ │ │ ├── type1a_(Icon_Color)_Follow_System_[Inverse].xml.enc │ │ │ │ ├── type1b.enc │ │ │ │ ├── type1b_(Shape)_Circle.xml.enc │ │ │ │ ├── type1b_(Shape)_Rounded_Square.xml.enc │ │ │ │ ├── type1b_(Shape)_Square.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Aurora)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Aurora)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Aurora)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Aurora)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Bubble)_No_Config │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ ├── type2_(Bubble_v2)_No_Config │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ ├── type2_(FaintUI)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(FaintUI)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(FaintUI)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(FaintUI)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Plumpy)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Plumpy)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Plumpy)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ └── type2_(Plumpy)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ ├── ic_apps.xml.enc │ │ │ │ │ ├── ic_apps_home.xml.enc │ │ │ │ │ ├── ic_cherish.xml.enc │ │ │ │ │ ├── ic_custom_notifications.xml.enc │ │ │ │ │ ├── ic_custom_wallpaper.xml.enc │ │ │ │ │ ├── ic_devices_home.xml.enc │ │ │ │ │ ├── ic_devices_other.xml.enc │ │ │ │ │ ├── ic_home_sound.xml.enc │ │ │ │ │ ├── ic_homepage_search.xml.enc │ │ │ │ │ ├── ic_homepage_search_oos.xml.enc │ │ │ │ │ ├── ic_krypton.xml.enc │ │ │ │ │ ├── ic_menu_play_store.xml.enc │ │ │ │ │ ├── ic_monet.xml.enc │ │ │ │ │ ├── ic_notifications.xml.enc │ │ │ │ │ ├── ic_op_settings_wireless.xml.enc │ │ │ │ │ ├── ic_phone_info.xml.enc │ │ │ │ │ ├── ic_phone_info_home.xml.enc │ │ │ │ │ ├── ic_phone_info_op.xml.enc │ │ │ │ │ ├── ic_powerhub.xml.enc │ │ │ │ │ ├── ic_settings_accessibility.xml.enc │ │ │ │ │ ├── ic_settings_accessibility_home.xml.enc │ │ │ │ │ ├── ic_settings_accounts.xml.enc │ │ │ │ │ ├── ic_settings_accounts_home.xml.enc │ │ │ │ │ ├── ic_settings_ancientsettings.xml.enc │ │ │ │ │ ├── ic_settings_appearance.xml.enc │ │ │ │ │ ├── ic_settings_battery_home.xml.enc │ │ │ │ │ ├── ic_settings_battery_op.xml.enc │ │ │ │ │ ├── ic_settings_battery_white.xml.enc │ │ │ │ │ ├── ic_settings_cogs.xml.enc │ │ │ │ │ ├── ic_settings_delete.xml.enc │ │ │ │ │ ├── ic_settings_derpspace.xml.enc │ │ │ │ │ ├── ic_settings_disable.xml.enc │ │ │ │ │ ├── ic_settings_display_home.xml.enc │ │ │ │ │ ├── ic_settings_display_op.xml.enc │ │ │ │ │ ├── ic_settings_display_white.xml.enc │ │ │ │ │ ├── ic_settings_emergency.xml.enc │ │ │ │ │ ├── ic_settings_emergency_op.xml.enc │ │ │ │ │ ├── ic_settings_enable.xml.enc │ │ │ │ │ ├── ic_settings_evolution.xml.enc │ │ │ │ │ ├── ic_settings_extensions.xml.enc │ │ │ │ │ ├── ic_settings_fireworks.xml.enc │ │ │ │ │ ├── ic_settings_force_stop.xml.enc │ │ │ │ │ ├── ic_settings_location.xml.enc │ │ │ │ │ ├── ic_settings_location_home.xml.enc │ │ │ │ │ ├── ic_settings_octavi.xml.enc │ │ │ │ │ ├── ic_settings_open.xml.enc │ │ │ │ │ ├── ic_settings_privacy.xml.enc │ │ │ │ │ ├── ic_settings_privacy_home.xml.enc │ │ │ │ │ ├── ic_settings_privacy_op.xml.enc │ │ │ │ │ ├── ic_settings_security_home.xml.enc │ │ │ │ │ ├── ic_settings_security_op.xml.enc │ │ │ │ │ ├── ic_settings_security_white.xml.enc │ │ │ │ │ ├── ic_settings_superior_homepage.xml.enc │ │ │ │ │ ├── ic_settings_syberia_white.xml.enc │ │ │ │ │ ├── ic_settings_system_dashboard_home.xml.enc │ │ │ │ │ ├── ic_settings_system_dashboard_op.xml.enc │ │ │ │ │ ├── ic_settings_system_dashboard_white.xml.enc │ │ │ │ │ ├── ic_settings_themes.xml.enc │ │ │ │ │ ├── ic_settings_wallpaper_white.xml.enc │ │ │ │ │ ├── ic_settings_wireless.xml.enc │ │ │ │ │ ├── ic_storage_home.xml.enc │ │ │ │ │ ├── ic_storage_op.xml.enc │ │ │ │ │ ├── ic_storage_white.xml.enc │ │ │ │ │ ├── ic_tresdin.xml.enc │ │ │ │ │ ├── ic_user.xml.enc │ │ │ │ │ ├── ic_volume_up_24dp.xml.enc │ │ │ │ │ ├── ic_yaap_settings_icon.xml.enc │ │ │ │ │ ├── op_ic_homepage_google.xml.enc │ │ │ │ │ ├── op_ic_homepage_sound.xml.enc │ │ │ │ │ └── op_ic_homepage_wellbeing.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── com.android.systemui.navbars │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Navigation_Bar)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_sysbar_back.xml.enc │ │ │ │ │ │ ├── ic_sysbar_back2.xml.enc │ │ │ │ │ │ ├── ic_sysbar_back_hw.xml.enc │ │ │ │ │ │ ├── ic_sysbar_back_quick_step.xml.enc │ │ │ │ │ │ ├── ic_sysbar_home.xml.enc │ │ │ │ │ │ ├── ic_sysbar_home2.xml.enc │ │ │ │ │ │ ├── ic_sysbar_home_hw.xml.enc │ │ │ │ │ │ ├── ic_sysbar_home_quick_step.xml.enc │ │ │ │ │ │ ├── ic_sysbar_recent.xml.enc │ │ │ │ │ │ ├── ic_sysbar_recent2.xml.enc │ │ │ │ │ │ └── ic_sysbar_recent_hw.xml.enc │ │ │ │ ├── type2_(Navigation_Bar)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_sysbar_back.xml.enc │ │ │ │ │ │ ├── ic_sysbar_back2.xml.enc │ │ │ │ │ │ ├── ic_sysbar_back_hw.xml.enc │ │ │ │ │ │ ├── ic_sysbar_back_quick_step.xml.enc │ │ │ │ │ │ ├── ic_sysbar_home.xml.enc │ │ │ │ │ │ ├── ic_sysbar_home2.xml.enc │ │ │ │ │ │ ├── ic_sysbar_home_hw.xml.enc │ │ │ │ │ │ ├── ic_sysbar_home_quick_step.xml.enc │ │ │ │ │ │ ├── ic_sysbar_recent.xml.enc │ │ │ │ │ │ ├── ic_sysbar_recent2.xml.enc │ │ │ │ │ │ └── ic_sysbar_recent_hw.xml.enc │ │ │ │ └── type2_(Navigation_Bar)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_sysbar_back.xml.enc │ │ │ │ │ ├── ic_sysbar_back2.xml.enc │ │ │ │ │ ├── ic_sysbar_back_hw.xml.enc │ │ │ │ │ ├── ic_sysbar_back_quick_step.xml.enc │ │ │ │ │ ├── ic_sysbar_home.xml.enc │ │ │ │ │ ├── ic_sysbar_home2.xml.enc │ │ │ │ │ ├── ic_sysbar_home_hw.xml.enc │ │ │ │ │ ├── ic_sysbar_home_quick_step.xml.enc │ │ │ │ │ ├── ic_sysbar_recent.xml.enc │ │ │ │ │ ├── ic_sysbar_recent2.xml.enc │ │ │ │ │ └── ic_sysbar_recent_hw.xml.enc │ │ │ │ ├── com.android.systemui.statusbars │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type1a.enc │ │ │ │ ├── type1a_Battery_AiirO_Size_Fix.xml.enc │ │ │ │ ├── type1a_Battery_Buddy_Size_Fix.xml.enc │ │ │ │ ├── type1a_Battery_Capsule_Size_Fix.xml.enc │ │ │ │ ├── type1a_Battery_FaintUI_Size_Fix.xml.enc │ │ │ │ ├── type1a_Battery_Forlorn_Size_Fix.xml.enc │ │ │ │ ├── type1a_Battery_Inverter_Size_Fix.xml.enc │ │ │ │ ├── type1a_Battery_Landscape_LR_Size_Fix.xml.enc │ │ │ │ ├── type1a_Battery_Landscape_Module_Fix.xml.enc │ │ │ │ ├── type1a_Battery_Love_Size_Fix.xml.enc │ │ │ │ ├── type1a_Battery_Peas_Size_Fix.xml.enc │ │ │ │ ├── type1a_Battery_Unable_Size_Fix.xml.enc │ │ │ │ ├── type1b.enc │ │ │ │ ├── type1b_(Padding)_Battery_0dp.xml.enc │ │ │ │ ├── type1b_(Padding)_Battery_1dp.xml.enc │ │ │ │ ├── type1b_(Padding)_Battery_2dp.xml.enc │ │ │ │ ├── type1b_(Padding)_Battery_3dp.xml.enc │ │ │ │ ├── type1b_(Padding)_Battery_4dp.xml.enc │ │ │ │ ├── type1b_(Padding)_Signal_1dp.xml.enc │ │ │ │ ├── type1b_(Padding)_Signal_2dp.xml.enc │ │ │ │ ├── type1b_(Padding)_Signal_3dp.xml.enc │ │ │ │ ├── type1b_(Padding)_Signal_4dp.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(LTE)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_1x_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_3g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_lte_mobiledata.xml.enc │ │ │ │ │ │ └── ic_lte_plus_mobiledata.xml.enc │ │ │ │ ├── type2_(LTE)_Aurora_Fake_5G │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_1x_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_3g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_lte_mobiledata.xml.enc │ │ │ │ │ │ └── ic_lte_plus_mobiledata.xml.enc │ │ │ │ ├── type2_(LTE)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_1x_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_3g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_lte_mobiledata.xml.enc │ │ │ │ │ │ └── ic_lte_plus_mobiledata.xml.enc │ │ │ │ ├── type2_(LTE)_FaintUI_Fake_5G │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_1x_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_3g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_lte_mobiledata.xml.enc │ │ │ │ │ │ └── ic_lte_plus_mobiledata.xml.enc │ │ │ │ ├── type2_(LTE)_Lorn │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_1x_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_3g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_lte_mobiledata.xml.enc │ │ │ │ │ │ └── ic_lte_plus_mobiledata.xml.enc │ │ │ │ ├── type2_(LTE)_Lorn_Fake_5G │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_1x_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_3g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_lte_mobiledata.xml.enc │ │ │ │ │ │ └── ic_lte_plus_mobiledata.xml.enc │ │ │ │ ├── type2_(LTE)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_1x_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_3g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_hd2_volte.xml.enc │ │ │ │ │ │ ├── ic_hd_volte.xml.enc │ │ │ │ │ │ ├── ic_lte_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_volte.xml.enc │ │ │ │ │ │ ├── ic_volte1.xml.enc │ │ │ │ │ │ ├── ic_volte2.xml.enc │ │ │ │ │ │ ├── ic_volte3.xml.enc │ │ │ │ │ │ ├── ic_volte4.xml.enc │ │ │ │ │ │ ├── ic_volte5.xml.enc │ │ │ │ │ │ ├── ic_volte6.xml.enc │ │ │ │ │ │ ├── ic_volte7.xml.enc │ │ │ │ │ │ ├── ic_volte8.xml.enc │ │ │ │ │ │ ├── ic_volte9.xml.enc │ │ │ │ │ │ ├── ic_volte_emui.xml.enc │ │ │ │ │ │ ├── ic_volte_miui.xml.enc │ │ │ │ │ │ ├── ic_volte_no_voice.xml.enc │ │ │ │ │ │ ├── stat_sys_volte.xml.enc │ │ │ │ │ │ ├── stat_sys_volte_slot1.xml.enc │ │ │ │ │ │ ├── stat_sys_volte_slot12.xml.enc │ │ │ │ │ │ ├── stat_sys_volte_slot2.xml.enc │ │ │ │ │ │ └── volte.xml.enc │ │ │ │ ├── type2_(LTE)_Plumpy_Fake_5G │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_1x_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_3g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_4g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_5g_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_e_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_g_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_h_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_hd2_volte.xml.enc │ │ │ │ │ │ ├── ic_hd_volte.xml.enc │ │ │ │ │ │ ├── ic_lte_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_lte_plus_mobiledata.xml.enc │ │ │ │ │ │ ├── ic_volte.xml.enc │ │ │ │ │ │ ├── ic_volte1.xml.enc │ │ │ │ │ │ ├── ic_volte2.xml.enc │ │ │ │ │ │ ├── ic_volte3.xml.enc │ │ │ │ │ │ ├── ic_volte4.xml.enc │ │ │ │ │ │ ├── ic_volte5.xml.enc │ │ │ │ │ │ ├── ic_volte6.xml.enc │ │ │ │ │ │ ├── ic_volte7.xml.enc │ │ │ │ │ │ ├── ic_volte8.xml.enc │ │ │ │ │ │ ├── ic_volte9.xml.enc │ │ │ │ │ │ ├── ic_volte_emui.xml.enc │ │ │ │ │ │ ├── ic_volte_miui.xml.enc │ │ │ │ │ │ ├── ic_volte_no_voice.xml.enc │ │ │ │ │ │ ├── stat_sys_volte.xml.enc │ │ │ │ │ │ ├── stat_sys_volte_slot1.xml.enc │ │ │ │ │ │ ├── stat_sys_volte_slot12.xml.enc │ │ │ │ │ │ ├── stat_sys_volte_slot2.xml.enc │ │ │ │ │ │ └── volte.xml.enc │ │ │ │ ├── type2_(Statusbar)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_access_alarms_big.xml.enc │ │ │ │ │ │ ├── ic_access_alarms_small.xml.enc │ │ │ │ │ │ ├── ic_camera.xml.enc │ │ │ │ │ │ ├── ic_headset.xml.enc │ │ │ │ │ │ ├── ic_headset_mic.xml.enc │ │ │ │ │ │ ├── stat_notify_image.xml.enc │ │ │ │ │ │ ├── stat_notify_image_error.xml.enc │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml.enc │ │ │ │ │ │ ├── stat_sys_alarm.xml.enc │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml.enc │ │ │ │ │ │ ├── stat_sys_branded_vpn.xml.enc │ │ │ │ │ │ ├── stat_sys_camera.xml.enc │ │ │ │ │ │ ├── stat_sys_cast.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_10.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml.enc │ │ │ │ │ │ ├── stat_sys_data_saver.xml.enc │ │ │ │ │ │ ├── stat_sys_dnd.xml.enc │ │ │ │ │ │ ├── stat_sys_flashlight.xml.enc │ │ │ │ │ │ ├── stat_sys_headset.xml.enc │ │ │ │ │ │ ├── stat_sys_headset_mic.xml.enc │ │ │ │ │ │ ├── stat_sys_hotspot.xml.enc │ │ │ │ │ │ ├── stat_sys_mic_none.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_down.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_down_arrow.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_up.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_up_arrow.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_updown.xml.enc │ │ │ │ │ │ ├── stat_sys_nfc.xml.enc │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml.enc │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml.enc │ │ │ │ │ │ ├── stat_sys_sensors_off.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_in.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_inout.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_none.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_out.xml.enc │ │ │ │ │ │ └── stat_sys_vpn_ic.xml.enc │ │ │ │ ├── type2_(Statusbar)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_access_alarms_big.xml.enc │ │ │ │ │ │ ├── ic_access_alarms_small.xml.enc │ │ │ │ │ │ ├── ic_camera.xml.enc │ │ │ │ │ │ ├── ic_headset.xml.enc │ │ │ │ │ │ ├── ic_headset_mic.xml.enc │ │ │ │ │ │ ├── stat_notify_image.xml.enc │ │ │ │ │ │ ├── stat_notify_image_error.xml.enc │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml.enc │ │ │ │ │ │ ├── stat_sys_alarm.xml.enc │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml.enc │ │ │ │ │ │ ├── stat_sys_branded_vpn.xml.enc │ │ │ │ │ │ ├── stat_sys_camera.xml.enc │ │ │ │ │ │ ├── stat_sys_cast.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_10.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml.enc │ │ │ │ │ │ ├── stat_sys_data_saver.xml.enc │ │ │ │ │ │ ├── stat_sys_dnd.xml.enc │ │ │ │ │ │ ├── stat_sys_flashlight.xml.enc │ │ │ │ │ │ ├── stat_sys_headset.xml.enc │ │ │ │ │ │ ├── stat_sys_headset_mic.xml.enc │ │ │ │ │ │ ├── stat_sys_hotspot.xml.enc │ │ │ │ │ │ ├── stat_sys_mic_none.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_down.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_down_arrow.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_up.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_up_arrow.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_updown.xml.enc │ │ │ │ │ │ ├── stat_sys_nfc.xml.enc │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml.enc │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml.enc │ │ │ │ │ │ ├── stat_sys_sensors_off.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_in.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_inout.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_none.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_out.xml.enc │ │ │ │ │ │ └── stat_sys_vpn_ic.xml.enc │ │ │ │ ├── type2_(Statusbar)_Lorn │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_access_alarms_big.xml.enc │ │ │ │ │ │ ├── ic_access_alarms_small.xml.enc │ │ │ │ │ │ ├── ic_camera.xml.enc │ │ │ │ │ │ ├── ic_headset.xml.enc │ │ │ │ │ │ ├── ic_headset_mic.xml.enc │ │ │ │ │ │ ├── stat_notify_image.xml.enc │ │ │ │ │ │ ├── stat_notify_image_error.xml.enc │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml.enc │ │ │ │ │ │ ├── stat_sys_alarm.xml.enc │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml.enc │ │ │ │ │ │ ├── stat_sys_branded_vpn.xml.enc │ │ │ │ │ │ ├── stat_sys_camera.xml.enc │ │ │ │ │ │ ├── stat_sys_cast.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_10.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml.enc │ │ │ │ │ │ ├── stat_sys_data_saver.xml.enc │ │ │ │ │ │ ├── stat_sys_dnd.xml.enc │ │ │ │ │ │ ├── stat_sys_flashlight.xml.enc │ │ │ │ │ │ ├── stat_sys_headset.xml.enc │ │ │ │ │ │ ├── stat_sys_headset_mic.xml.enc │ │ │ │ │ │ ├── stat_sys_hotspot.xml.enc │ │ │ │ │ │ ├── stat_sys_mic_none.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_down.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_down_arrow.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_up.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_up_arrow.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_updown.xml.enc │ │ │ │ │ │ ├── stat_sys_nfc.xml.enc │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml.enc │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml.enc │ │ │ │ │ │ ├── stat_sys_sensors_off.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_in.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_inout.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_none.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_out.xml.enc │ │ │ │ │ │ └── stat_sys_vpn_ic.xml.enc │ │ │ │ ├── type2_(Statusbar)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_access_alarms_big.xml.enc │ │ │ │ │ │ ├── ic_access_alarms_small.xml.enc │ │ │ │ │ │ ├── ic_camera.xml.enc │ │ │ │ │ │ ├── ic_headset.xml.enc │ │ │ │ │ │ ├── ic_headset_mic.xml.enc │ │ │ │ │ │ ├── stat_notify_image.xml.enc │ │ │ │ │ │ ├── stat_notify_image_error.xml.enc │ │ │ │ │ │ ├── stat_sys_airplane_mode.xml.enc │ │ │ │ │ │ ├── stat_sys_alarm.xml.enc │ │ │ │ │ │ ├── stat_sys_alarm_dim.xml.enc │ │ │ │ │ │ ├── stat_sys_branded_vpn.xml.enc │ │ │ │ │ │ ├── stat_sys_camera.xml.enc │ │ │ │ │ │ ├── stat_sys_cast.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_0.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_1.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_10.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_2.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_3.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_4.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_5.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_6.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_7.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_8.xml.enc │ │ │ │ │ │ ├── stat_sys_data_bluetooth_connected_battery_9.xml.enc │ │ │ │ │ │ ├── stat_sys_data_saver.xml.enc │ │ │ │ │ │ ├── stat_sys_dnd.xml.enc │ │ │ │ │ │ ├── stat_sys_flashlight.xml.enc │ │ │ │ │ │ ├── stat_sys_headset.xml.enc │ │ │ │ │ │ ├── stat_sys_headset_mic.xml.enc │ │ │ │ │ │ ├── stat_sys_hotspot.xml.enc │ │ │ │ │ │ ├── stat_sys_mic_none.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_down.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_down_arrow.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_up.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_up_arrow.xml.enc │ │ │ │ │ │ ├── stat_sys_network_traffic_updown.xml.enc │ │ │ │ │ │ ├── stat_sys_nfc.xml.enc │ │ │ │ │ │ ├── stat_sys_ringer_silent.xml.enc │ │ │ │ │ │ ├── stat_sys_ringer_vibrate.xml.enc │ │ │ │ │ │ ├── stat_sys_sensors_off.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_in.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_inout.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_none.xml.enc │ │ │ │ │ │ ├── stat_sys_signal_stacked_out.xml.enc │ │ │ │ │ │ └── stat_sys_vpn_ic.xml.enc │ │ │ │ ├── type2_(Tweak)_Signal_Data_Cross_Remover_[Stock_Rom] │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ │ └── placebo_placeholder.xml.enc │ │ │ │ │ └── drawable │ │ │ │ │ │ └── stat_sys_data_disabled.xml.enc │ │ │ │ └── type2_(Tweak)_Signal_Roaming_Icon_Remover │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── placebo_placeholder.xml.enc │ │ │ │ │ └── drawable │ │ │ │ │ └── stat_sys_roaming.xml.enc │ │ │ │ ├── com.android.systemui │ │ │ │ ├── attention.enc │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type0.xml.enc │ │ │ │ ├── type1a.enc │ │ │ │ ├── type1a_Battery_Background_Color_Accent.xml.enc │ │ │ │ ├── type1a_Battery_Foreground_Color_Accent.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_camera_alt_24dp.xml.enc │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_device_lock_off.xml.enc │ │ │ │ │ │ ├── ic_device_lock_on.xml.enc │ │ │ │ │ │ ├── ic_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_24dp.xml.enc │ │ │ │ │ │ ├── ic_lock_face.xml.enc │ │ │ │ │ │ ├── ic_lock_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_open.xml.enc │ │ │ │ │ │ ├── ic_lock_open_24dp.xml.enc │ │ │ │ │ │ ├── ic_unlock.xml.enc │ │ │ │ │ │ └── ic_unlocked.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_camera_alt_24dp.xml.enc │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_device_lock_off.xml.enc │ │ │ │ │ │ ├── ic_device_lock_on.xml.enc │ │ │ │ │ │ ├── ic_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_24dp.xml.enc │ │ │ │ │ │ ├── ic_lock_face.xml.enc │ │ │ │ │ │ ├── ic_lock_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_open.xml.enc │ │ │ │ │ │ ├── ic_lock_open_24dp.xml.enc │ │ │ │ │ │ ├── ic_unlock.xml.enc │ │ │ │ │ │ └── ic_unlocked.xml.enc │ │ │ │ ├── type2_(Icons)_Lorn │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_camera_alt_24dp.xml.enc │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_device_lock_off.xml.enc │ │ │ │ │ │ ├── ic_device_lock_on.xml.enc │ │ │ │ │ │ ├── ic_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_24dp.xml.enc │ │ │ │ │ │ ├── ic_lock_face.xml.enc │ │ │ │ │ │ ├── ic_lock_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_open.xml.enc │ │ │ │ │ │ ├── ic_lock_open_24dp.xml.enc │ │ │ │ │ │ ├── ic_unlock.xml.enc │ │ │ │ │ │ └── ic_unlocked.xml.enc │ │ │ │ ├── type2_(Icons)_Plumpy │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_camera_alt_24dp.xml.enc │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── ic_device_lock_off.xml.enc │ │ │ │ │ │ ├── ic_device_lock_on.xml.enc │ │ │ │ │ │ ├── ic_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_24dp.xml.enc │ │ │ │ │ │ ├── ic_lock_face.xml.enc │ │ │ │ │ │ ├── ic_lock_lock.xml.enc │ │ │ │ │ │ ├── ic_lock_open.xml.enc │ │ │ │ │ │ ├── ic_lock_open_24dp.xml.enc │ │ │ │ │ │ ├── ic_unlock.xml.enc │ │ │ │ │ │ └── ic_unlocked.xml.enc │ │ │ │ ├── type2_(Signal)_AiirO │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Bold │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Capsule │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Forlorn │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Glummy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Hollow │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Japanese │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Koala │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Lineal │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Linear │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Ory │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Router │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Scale │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Spiral │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Tower │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_Waffle │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_ZigZag │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Signal)_iOS │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_0.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_1.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_2.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_3.xml.enc │ │ │ │ │ │ ├── ic_no_internet_wifi_signal_4.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_0.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_1.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_2.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_3.xml.enc │ │ │ │ │ │ ├── ic_qs_wifi_4.xml.enc │ │ │ │ │ │ └── ic_qs_wifi_disconnected.xml.enc │ │ │ │ ├── type2_(Tweak)_Battery_Charging_Color_Accent │ │ │ │ │ └── color │ │ │ │ │ │ └── batterymeter_bolt_color.xml.enc │ │ │ │ ├── type2_(Tweak)_Battery_Power_Saver_Color_Accent │ │ │ │ │ └── color │ │ │ │ │ │ └── batterymeter_plus_color.xml.enc │ │ │ │ └── type2_(Tweak)_Hide_Lockscreen_Lock_Icon │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_device_lock_off.xml.enc │ │ │ │ │ ├── ic_device_lock_on.xml.enc │ │ │ │ │ ├── ic_kg_fingerprint.xml.enc │ │ │ │ │ ├── ic_lock.xml.enc │ │ │ │ │ ├── ic_lock_24dp.xml.enc │ │ │ │ │ ├── ic_lock_aod.xml.enc │ │ │ │ │ ├── ic_lock_face.xml.enc │ │ │ │ │ ├── ic_lock_lock.xml.enc │ │ │ │ │ ├── ic_lock_open.xml.enc │ │ │ │ │ ├── ic_lock_open_24dp.xml.enc │ │ │ │ │ ├── ic_unlock.xml.enc │ │ │ │ │ ├── ic_unlocked.xml.enc │ │ │ │ │ └── ic_unlocked_aod.xml.enc │ │ │ │ ├── com.awedea.nyx │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── cross.xml.enc │ │ │ │ │ │ ├── like.xml.enc │ │ │ │ │ │ ├── next.xml.enc │ │ │ │ │ │ ├── pause.xml.enc │ │ │ │ │ │ ├── previous.xml.enc │ │ │ │ │ │ ├── unlike.xml.enc │ │ │ │ │ │ └── widget_play.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── cross.xml.enc │ │ │ │ │ │ ├── like.xml.enc │ │ │ │ │ │ ├── next.xml.enc │ │ │ │ │ │ ├── pause.xml.enc │ │ │ │ │ │ ├── previous.xml.enc │ │ │ │ │ │ ├── unlike.xml.enc │ │ │ │ │ │ └── widget_play.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── cross.xml.enc │ │ │ │ │ ├── like.xml.enc │ │ │ │ │ ├── next.xml.enc │ │ │ │ │ ├── pause.xml.enc │ │ │ │ │ ├── previous.xml.enc │ │ │ │ │ ├── unlike.xml.enc │ │ │ │ │ └── widget_play.xml.enc │ │ │ │ ├── com.franco.kernel │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_battery_20_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_battery_30_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_battery_50_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_battery_60_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_battery_80_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_battery_90_black_24dp.xml.enc │ │ │ │ │ │ ├── ic_battery_full_black_24dp.xml.enc │ │ │ │ │ │ └── ic_battery_saver_24dp.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_battery_20_black_24dp.xml.enc │ │ │ │ │ ├── ic_battery_30_black_24dp.xml.enc │ │ │ │ │ ├── ic_battery_50_black_24dp.xml.enc │ │ │ │ │ ├── ic_battery_60_black_24dp.xml.enc │ │ │ │ │ ├── ic_battery_80_black_24dp.xml.enc │ │ │ │ │ ├── ic_battery_90_black_24dp.xml.enc │ │ │ │ │ └── ic_battery_full_black_24dp.xml.enc │ │ │ │ ├── com.google.android.apps.messaging │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── abc_ic_ab_back_material.xml.enc │ │ │ │ │ ├── comms_gm_ic_videocam_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_chat_white_24.xml.enc │ │ │ │ │ ├── ic_compose_camera_gallery_selected_v2.xml.enc │ │ │ │ │ ├── ic_compose_camera_gallery_selected_v3.xml.enc │ │ │ │ │ ├── ic_compose_camera_gallery_unselected_v2.xml.enc │ │ │ │ │ ├── ic_compose_camera_gallery_unselected_v3.xml.enc │ │ │ │ │ ├── ic_compose_emoji_gallery_selected.xml.enc │ │ │ │ │ ├── ic_compose_emoji_gallery_unselected.xml.enc │ │ │ │ │ ├── ic_compose_plus_selected_v2.xml.enc │ │ │ │ │ ├── ic_compose_plus_unselected_v2.xml.enc │ │ │ │ │ ├── ic_compose_send.xml.enc │ │ │ │ │ ├── ic_duo_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_duo_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_duo_voice_call_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_duo_voice_call_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_privacy_advisor_icon.xml.enc │ │ │ │ │ ├── quantum_gm_ic_android_messages_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_archive_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_arrow_back_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_brightness_4_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_delete_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_delete_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_devices_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_do_not_disturb_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_feedback_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_help_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_manage_accounts_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_menu_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_no_accounts_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_person_add_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_photo_library_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_schedule_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_search_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_settings_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_star_border_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_star_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_star_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_unarchive_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_unpin_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_alarm_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_arrow_back_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_help_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_search_24.xml.enc │ │ │ │ │ ├── quantum_ic_search_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_watch_later_vd_theme_24.xml.enc │ │ │ │ │ ├── tinted_ic_chat.xml.enc │ │ │ │ │ ├── tinted_ic_phone_24.xml.enc │ │ │ │ │ ├── tinted_quantum_gm_ic_keep_pin_outline_24.xml.enc │ │ │ │ │ ├── tinted_quantum_ic_content_copy_black_24.xml.enc │ │ │ │ │ ├── tinted_quantum_ic_delete_black_24.xml.enc │ │ │ │ │ ├── tinted_quantum_ic_help_outline_24.xml.enc │ │ │ │ │ └── tinted_quantum_ic_search_24.xml.enc │ │ │ │ ├── com.google.android.apps.wellbeing │ │ │ │ ├── attention.enc │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type1a.enc │ │ │ │ ├── type1a_(Icon_Color)_Follow_Accent.xml.enc │ │ │ │ ├── type1a_(Icon_Color)_Follow_System_[Inverse].xml.enc │ │ │ │ ├── type1b.enc │ │ │ │ ├── type1b_(Shape)_Circle.xml.enc │ │ │ │ ├── type1b_(Shape)_Rounded_Square.xml.enc │ │ │ │ ├── type1b_(Shape)_Square.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Aurora)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Aurora)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Aurora)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Aurora)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Bubble)_No_Config │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ ├── type2_(Bubble_v2)_No_Config │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ ├── type2_(FaintUI)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(FaintUI)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(FaintUI)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(FaintUI)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Plumpy)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Plumpy)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Plumpy)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ └── type2_(Plumpy)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ └── ic_digital_wellbeing_settings_default.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── com.google.android.apps.youtube.music │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_banner_app_close.xml.enc │ │ │ │ │ │ ├── exo_icon_play.xml.enc │ │ │ │ │ │ ├── ic_dialog_close_dark.xml.enc │ │ │ │ │ │ ├── ic_ffr_triangle.xml.enc │ │ │ │ │ │ ├── ic_media_play_dark.xml.enc │ │ │ │ │ │ ├── ic_preview_play_btn.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_close_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml.enc │ │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml.enc │ │ │ │ │ │ └── yt_outline_x_mark_white_24.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_banner_app_close.xml.enc │ │ │ │ │ │ ├── exo_icon_play.xml.enc │ │ │ │ │ │ ├── ic_dialog_close_dark.xml.enc │ │ │ │ │ │ ├── ic_ffr_triangle.xml.enc │ │ │ │ │ │ ├── ic_media_play_dark.xml.enc │ │ │ │ │ │ ├── ic_preview_play_btn.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_close_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml.enc │ │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml.enc │ │ │ │ │ │ └── yt_outline_x_mark_white_24.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── audio_banner_app_close.xml.enc │ │ │ │ │ ├── exo_icon_play.xml.enc │ │ │ │ │ ├── ic_dialog_close_dark.xml.enc │ │ │ │ │ ├── ic_ffr_triangle.xml.enc │ │ │ │ │ ├── ic_media_play_dark.xml.enc │ │ │ │ │ ├── ic_preview_play_btn.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml.enc │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_close_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml.enc │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml.enc │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml.enc │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml.enc │ │ │ │ │ └── yt_outline_x_mark_white_24.xml.enc │ │ │ │ ├── com.google.android.contacts │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── abc_ic_ab_back_material.xml.enc │ │ │ │ │ ├── comms_gm_ic_dialer_sip_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_videocam_vd_theme_24.xml.enc │ │ │ │ │ ├── gs_build_fill1_vd_theme_24.xml.enc │ │ │ │ │ ├── gs_build_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_add_circle_24dp.xml.enc │ │ │ │ │ ├── ic_add_contact_shortcut.xml.enc │ │ │ │ │ ├── ic_camera_18px_obake_icon_12px.xml.enc │ │ │ │ │ ├── ic_phone_white_24px.xml.enc │ │ │ │ │ ├── material_ic_edit_black_24dp.xml.enc │ │ │ │ │ ├── quantum_gm_ic_add_a_photo_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_add_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_arrow_back_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_auto_fix_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_block_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_business_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_call_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_camera_roll_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_cloud_download_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_cloud_off_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_cloud_upload_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_cloud_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_content_copy_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_create_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_delete_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_directions_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_edit_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_email_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_emergency_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_event_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_feedback_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_file_download_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_file_upload_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_group_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_group_work_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_help_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_label_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_link_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_manage_accounts_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_menu_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_message_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_note_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_people_alt_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_people_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_person_add_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_person_filled_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_person_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_phone_alt_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_phone_android_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_photo_camera_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_photo_library_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_place_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_search_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_settings_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_share_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_sim_card_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_smartphone_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_star_border_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_star_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_view_agenda_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_arrow_back_vd_theme_24.xml.enc │ │ │ │ │ └── quantum_ic_cloud_off_vd_theme_24.xml.enc │ │ │ │ ├── com.google.android.deskclock │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── avd_tab_alarm_white_24dp.xml.enc │ │ │ │ │ ├── avd_tab_bedtime_white_24dp.xml.enc │ │ │ │ │ ├── avd_tab_clock_white_24dp.xml.enc │ │ │ │ │ ├── avd_tab_stopwatch_white_24dp.xml.enc │ │ │ │ │ ├── avd_tab_timer_white_24dp.xml.enc │ │ │ │ │ ├── ic_add_circle_outline.xml.enc │ │ │ │ │ ├── ic_alarm_off_white_24dp.xml.enc │ │ │ │ │ ├── ic_alarm_white_24dp.xml.enc │ │ │ │ │ ├── ic_clock_black_24dp.xml.enc │ │ │ │ │ ├── ic_keyboard_black_24dp.xml.enc │ │ │ │ │ ├── ic_new_timer.xml.enc │ │ │ │ │ ├── ic_pause_white_24dp.xml.enc │ │ │ │ │ ├── ic_stopwatch.xml.enc │ │ │ │ │ ├── ic_stopwatch_white_24dp.xml.enc │ │ │ │ │ ├── ic_tab_alarm_white_24dp.xml.enc │ │ │ │ │ ├── ic_tab_bedtime_white_24dp.xml.enc │ │ │ │ │ ├── ic_tab_clock_white_24dp.xml.enc │ │ │ │ │ ├── ic_tab_stopwatch_white_24dp.xml.enc │ │ │ │ │ ├── ic_tab_timer_white_24dp.xml.enc │ │ │ │ │ ├── ic_timer_black.xml.enc │ │ │ │ │ ├── quantum_gm_ic_add_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_alarm_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_backspace_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_delete_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_label_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_notifications_active_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_pause_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_play_arrow_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_play_circle_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_restart_alt_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_timer_white_18.xml.enc │ │ │ │ │ ├── quantum_gm_ic_vibration_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml.enc │ │ │ │ │ └── quantum_ic_play_arrow_vd_theme_24.xml.enc │ │ │ │ ├── com.google.android.dialer │ │ │ │ └── res │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── comms_gm_ic_add_call_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_block_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_call_end_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_call_recording_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_duo_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_phone_in_talk_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_phone_paused_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_phone_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_unblock_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_videocam_off_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_videocam_one_way_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_videocam_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_videocam_wifi_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_gm_ic_wifi_calling_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_ic_stop_circle_filled_vd_theme_24.xml.enc │ │ │ │ │ ├── comms_ic_voicemail_error_color_24.xml.enc │ │ │ │ │ ├── ic_clock_black_24dp.xml.enc │ │ │ │ │ ├── ic_duo_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_duo_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_duo_voice_call_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_duo_voice_call_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_flip_camera_android_vd_theme_24.xml.enc │ │ │ │ │ ├── ic_ongoing_phone_24px_01.xml.enc │ │ │ │ │ ├── ic_ongoing_phone_24px_02.xml.enc │ │ │ │ │ ├── ic_ongoing_phone_24px_03.xml.enc │ │ │ │ │ ├── ic_ongoing_phone_24px_04.xml.enc │ │ │ │ │ ├── ic_ongoing_phone_24px_05.xml.enc │ │ │ │ │ ├── ic_ongoing_phone_24px_06.xml.enc │ │ │ │ │ ├── ic_ongoing_phone_24px_07.xml.enc │ │ │ │ │ ├── ic_ongoing_phone_24px_08.xml.enc │ │ │ │ │ ├── ic_ongoing_phone_24px_09.xml.enc │ │ │ │ │ ├── icon_call_recording.xml.enc │ │ │ │ │ ├── quantum_gm_ic_access_time_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_accessibility_new_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_archive_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_arrow_back_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_backspace_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_bluetooth_audio_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_call_made_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_call_merge_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_call_missed_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_call_received_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_call_split_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_chat_bubble_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_clear_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_content_copy_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_delete_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_edit_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_error_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_exit_to_app_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_feedback_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_format_list_bulleted_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_history_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_info_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_info_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_location_on_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_message_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_mic_none_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_mic_off_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_not_interested_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_pause_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_people_alt_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_people_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_person_add_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_person_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_phone_missed_white_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_query_builder_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_report_off_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_report_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_search_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_send_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_star_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_star_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_unarchive_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_voicemail_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_volume_down_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_volume_up_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_call_end_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_call_end_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_close_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_duo_outline_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_message_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_people_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_person_add_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_phone_in_talk_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_phone_locked_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_phone_locked_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_phone_missed_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_phone_missed_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_phone_paused_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_phone_paused_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_phone_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_phone_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_videocam_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_videocam_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_voicemail_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_voicemail_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_volume_up_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_watch_later_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_wifi_calling_vd_theme_24.xml.enc │ │ │ │ │ └── quantum_ic_wifi_calling_white_24.xml.enc │ │ │ │ ├── com.google.android.gms │ │ │ │ ├── attention.enc │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type1a.enc │ │ │ │ ├── type1a_(Icon_Color)_Follow_Accent.xml.enc │ │ │ │ ├── type1a_(Icon_Color)_Follow_System_[Inverse].xml.enc │ │ │ │ ├── type1b.enc │ │ │ │ ├── type1b_(Shape)_Circle.xml.enc │ │ │ │ ├── type1b_(Shape)_Rounded_Square.xml.enc │ │ │ │ ├── type1b_(Shape)_Square.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Aurora)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Aurora)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Aurora)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Aurora)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Bubble)_No_Config │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ ├── type2_(Bubble_v2)_No_Config │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ └── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ ├── type2_(FaintUI)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(FaintUI)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(FaintUI)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(FaintUI)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Lorn)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Plumpy)_Gradient_Fill │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Plumpy)_Gradient_Outline │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2_(Plumpy)_Kinda_Neumorph │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ └── type2_(Plumpy)_Minimal_AF │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night-anydpi │ │ │ │ │ └── googleg_icon_24.xml.enc │ │ │ │ │ ├── drawable-night │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ ├── drawable │ │ │ │ │ └── icon_bg.xml.enc │ │ │ │ │ └── values │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── com.kapp.youtube.final │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── exo_icon_next.xml.enc │ │ │ │ │ │ ├── exo_icon_pause.xml.enc │ │ │ │ │ │ ├── exo_icon_play.xml.enc │ │ │ │ │ │ ├── exo_icon_previous.xml.enc │ │ │ │ │ │ ├── ic_pause_white_24dp.xml.enc │ │ │ │ │ │ ├── ic_pause_white_32dp.xml.enc │ │ │ │ │ │ ├── ic_play_arrow_white_24dp.xml.enc │ │ │ │ │ │ ├── ic_play_arrow_white_32dp.xml.enc │ │ │ │ │ │ ├── ic_skip_next_white_32dp.xml.enc │ │ │ │ │ │ └── ic_skip_previous_white_32dp.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── exo_icon_next.xml.enc │ │ │ │ │ │ ├── exo_icon_pause.xml.enc │ │ │ │ │ │ ├── exo_icon_play.xml.enc │ │ │ │ │ │ ├── exo_icon_previous.xml.enc │ │ │ │ │ │ ├── ic_pause_white_24dp.xml.enc │ │ │ │ │ │ ├── ic_pause_white_32dp.xml.enc │ │ │ │ │ │ ├── ic_play_arrow_white_24dp.xml.enc │ │ │ │ │ │ ├── ic_play_arrow_white_32dp.xml.enc │ │ │ │ │ │ ├── ic_skip_next_white_32dp.xml.enc │ │ │ │ │ │ └── ic_skip_previous_white_32dp.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── exo_icon_next.xml.enc │ │ │ │ │ ├── exo_icon_pause.xml.enc │ │ │ │ │ ├── exo_icon_play.xml.enc │ │ │ │ │ ├── exo_icon_previous.xml.enc │ │ │ │ │ ├── ic_pause_white_24dp.xml.enc │ │ │ │ │ ├── ic_pause_white_32dp.xml.enc │ │ │ │ │ ├── ic_play_arrow_white_24dp.xml.enc │ │ │ │ │ ├── ic_play_arrow_white_32dp.xml.enc │ │ │ │ │ ├── ic_skip_next_white_32dp.xml.enc │ │ │ │ │ └── ic_skip_previous_white_32dp.xml.enc │ │ │ │ ├── com.maxmpz.audioplayer │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── status_close.xml.enc │ │ │ │ │ │ ├── status_ff.xml.enc │ │ │ │ │ │ ├── status_icon2.xml.enc │ │ │ │ │ │ ├── status_icon_pause.xml.enc │ │ │ │ │ │ ├── status_pause.xml.enc │ │ │ │ │ │ ├── status_play.xml.enc │ │ │ │ │ │ └── status_rw.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── status_close.xml.enc │ │ │ │ │ │ ├── status_ff.xml.enc │ │ │ │ │ │ ├── status_icon2.xml.enc │ │ │ │ │ │ ├── status_icon_pause.xml.enc │ │ │ │ │ │ ├── status_pause.xml.enc │ │ │ │ │ │ ├── status_play.xml.enc │ │ │ │ │ │ └── status_rw.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── status_close.xml.enc │ │ │ │ │ ├── status_ff.xml.enc │ │ │ │ │ ├── status_icon2.xml.enc │ │ │ │ │ ├── status_icon_pause.xml.enc │ │ │ │ │ ├── status_pause.xml.enc │ │ │ │ │ ├── status_play.xml.enc │ │ │ │ │ └── status_rw.xml.enc │ │ │ │ ├── com.shadow.blackhole │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_service_pause.xml.enc │ │ │ │ │ │ ├── audio_service_play_arrow.xml.enc │ │ │ │ │ │ ├── audio_service_skip_next.xml.enc │ │ │ │ │ │ ├── audio_service_skip_previous.xml.enc │ │ │ │ │ │ ├── audio_service_stop.xml.enc │ │ │ │ │ │ ├── ic_stat_music_note.xml.enc │ │ │ │ │ │ ├── media_session_service_notification_ic_music_note.xml.enc │ │ │ │ │ │ ├── media_session_service_notification_ic_pause.xml.enc │ │ │ │ │ │ ├── media_session_service_notification_ic_play.xml.enc │ │ │ │ │ │ ├── media_session_service_notification_ic_skip_to_next.xml.enc │ │ │ │ │ │ └── media_session_service_notification_ic_skip_to_previous.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_service_pause.xml.enc │ │ │ │ │ │ ├── audio_service_play_arrow.xml.enc │ │ │ │ │ │ ├── audio_service_skip_next.xml.enc │ │ │ │ │ │ ├── audio_service_skip_previous.xml.enc │ │ │ │ │ │ ├── audio_service_stop.xml.enc │ │ │ │ │ │ ├── ic_stat_music_note.xml.enc │ │ │ │ │ │ ├── media_session_service_notification_ic_music_note.xml.enc │ │ │ │ │ │ ├── media_session_service_notification_ic_pause.xml.enc │ │ │ │ │ │ ├── media_session_service_notification_ic_play.xml.enc │ │ │ │ │ │ ├── media_session_service_notification_ic_skip_to_next.xml.enc │ │ │ │ │ │ └── media_session_service_notification_ic_skip_to_previous.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── audio_service_pause.xml.enc │ │ │ │ │ ├── audio_service_play_arrow.xml.enc │ │ │ │ │ ├── audio_service_skip_next.xml.enc │ │ │ │ │ ├── audio_service_skip_previous.xml.enc │ │ │ │ │ ├── audio_service_stop.xml.enc │ │ │ │ │ ├── ic_stat_music_note.xml.enc │ │ │ │ │ ├── media_session_service_notification_ic_music_note.xml.enc │ │ │ │ │ ├── media_session_service_notification_ic_pause.xml.enc │ │ │ │ │ ├── media_session_service_notification_ic_play.xml.enc │ │ │ │ │ ├── media_session_service_notification_ic_skip_to_next.xml.enc │ │ │ │ │ └── media_session_service_notification_ic_skip_to_previous.xml.enc │ │ │ │ ├── com.vanced.android.apps.youtube.music │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_banner_app_close.xml.enc │ │ │ │ │ │ ├── exo_icon_play.xml.enc │ │ │ │ │ │ ├── ic_dialog_close_dark.xml.enc │ │ │ │ │ │ ├── ic_ffr_triangle.xml.enc │ │ │ │ │ │ ├── ic_media_play_dark.xml.enc │ │ │ │ │ │ ├── ic_preview_play_btn.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_close_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml.enc │ │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml.enc │ │ │ │ │ │ └── yt_outline_x_mark_white_24.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── audio_banner_app_close.xml.enc │ │ │ │ │ │ ├── exo_icon_play.xml.enc │ │ │ │ │ │ ├── ic_dialog_close_dark.xml.enc │ │ │ │ │ │ ├── ic_ffr_triangle.xml.enc │ │ │ │ │ │ ├── ic_media_play_dark.xml.enc │ │ │ │ │ │ ├── ic_preview_play_btn.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml.enc │ │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_close_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml.enc │ │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml.enc │ │ │ │ │ │ └── yt_outline_x_mark_white_24.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── audio_banner_app_close.xml.enc │ │ │ │ │ ├── exo_icon_play.xml.enc │ │ │ │ │ ├── ic_dialog_close_dark.xml.enc │ │ │ │ │ ├── ic_ffr_triangle.xml.enc │ │ │ │ │ ├── ic_media_play_dark.xml.enc │ │ │ │ │ ├── ic_preview_play_btn.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_00.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_02.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_03.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_04.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_05.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_06.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_07.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_08.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_09.xml.enc │ │ │ │ │ ├── ic_vidcontrol_pause_play_10.xml.enc │ │ │ │ │ ├── quantum_gm_ic_thumb_down_filled_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_thumb_up_filled_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_gm_ic_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_close_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_18.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_grey600_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_grey600_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_grey600_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_thumb_up_off_alt_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_fill_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_fill_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_outline_list_play_arrow_white_24.xml.enc │ │ │ │ │ ├── yt_outline_thumb_down_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_outline_thumb_down_white_24_disabled.xml.enc │ │ │ │ │ ├── yt_outline_thumb_up_vd_theme_24.xml.enc │ │ │ │ │ ├── yt_outline_thumb_up_white_24_disabled.xml.enc │ │ │ │ │ ├── yt_outline_x_mark_black_24.xml.enc │ │ │ │ │ └── yt_outline_x_mark_white_24.xml.enc │ │ │ │ ├── com.vanced.android.youtube │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_google_chip_close.xml.enc │ │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_pause_disabled.xml.enc │ │ │ │ │ │ ├── player_next.xml.enc │ │ │ │ │ │ ├── player_pause.xml.enc │ │ │ │ │ │ ├── player_play.xml.enc │ │ │ │ │ │ ├── player_prev.xml.enc │ │ │ │ │ │ ├── quantum_ic_clear_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_google_chip_close.xml.enc │ │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml.enc │ │ │ │ │ │ ├── ic_notifications_pause_disabled.xml.enc │ │ │ │ │ │ ├── player_next.xml.enc │ │ │ │ │ │ ├── player_pause.xml.enc │ │ │ │ │ │ ├── player_play.xml.enc │ │ │ │ │ │ ├── player_prev.xml.enc │ │ │ │ │ │ ├── quantum_ic_clear_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_pause_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_google_chip_close.xml.enc │ │ │ │ │ ├── ic_notification_play_arrow_disabled.xml.enc │ │ │ │ │ ├── ic_notifications_menu_next_video_disabled.xml.enc │ │ │ │ │ ├── ic_notifications_menu_previous_video_disabled.xml.enc │ │ │ │ │ ├── ic_notifications_pause_disabled.xml.enc │ │ │ │ │ ├── ic_notifications_play_arrow_disabled.xml.enc │ │ │ │ │ ├── player_next.xml.enc │ │ │ │ │ ├── player_pause.xml.enc │ │ │ │ │ ├── player_play.xml.enc │ │ │ │ │ ├── player_prev.xml.enc │ │ │ │ │ ├── quantum_ic_clear_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_pause_white_48.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_play_arrow_white_48.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_36.xml.enc │ │ │ │ │ ├── quantum_ic_skip_next_white_48.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_white_24.xml.enc │ │ │ │ │ ├── quantum_ic_skip_previous_white_36.xml.enc │ │ │ │ │ └── quantum_ic_skip_previous_white_48.xml.enc │ │ │ │ ├── in.krosbits.musicolet │ │ │ │ ├── res │ │ │ │ │ └── values │ │ │ │ │ │ └── AnotherTheme.xml.enc │ │ │ │ ├── type2.enc │ │ │ │ ├── type2_(Icons)_Aurora │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_action_favorite_border_light.xml.enc │ │ │ │ │ │ ├── ic_action_favorite_filled_light.xml.enc │ │ │ │ │ │ ├── ic_action_next_dark_s.xml.enc │ │ │ │ │ │ ├── ic_action_pause_light_s.xml.enc │ │ │ │ │ │ ├── ic_action_play_light_s.xml.enc │ │ │ │ │ │ ├── ic_action_prev_light_s.xml.enc │ │ │ │ │ │ ├── ic_clear_s.xml.enc │ │ │ │ │ │ ├── ic_fast_forward_black_24dp_s.xml.enc │ │ │ │ │ │ ├── ic_fast_rewind_black_24dp_s.xml.enc │ │ │ │ │ │ └── ic_playlist_add_dark.xml.enc │ │ │ │ ├── type2_(Icons)_FaintUI │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ │ ├── ic_action_favorite_border_light.xml.enc │ │ │ │ │ │ ├── ic_action_favorite_filled_light.xml.enc │ │ │ │ │ │ ├── ic_action_next_dark_s.xml.enc │ │ │ │ │ │ ├── ic_action_pause_light_s.xml.enc │ │ │ │ │ │ ├── ic_action_play_light_s.xml.enc │ │ │ │ │ │ ├── ic_action_prev_light_s.xml.enc │ │ │ │ │ │ ├── ic_clear_s.xml.enc │ │ │ │ │ │ ├── ic_fast_forward_black_24dp_s.xml.enc │ │ │ │ │ │ ├── ic_fast_rewind_black_24dp_s.xml.enc │ │ │ │ │ │ └── ic_playlist_add_dark.xml.enc │ │ │ │ └── type2_(Icons)_Plumpy │ │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_action_favorite_border_light.xml.enc │ │ │ │ │ ├── ic_action_favorite_filled_light.xml.enc │ │ │ │ │ ├── ic_action_next_dark_s.xml.enc │ │ │ │ │ ├── ic_action_pause_light_s.xml.enc │ │ │ │ │ ├── ic_action_play_light_s.xml.enc │ │ │ │ │ ├── ic_action_prev_light_s.xml.enc │ │ │ │ │ ├── ic_clear_s.xml.enc │ │ │ │ │ ├── ic_fast_forward_black_24dp_s.xml.enc │ │ │ │ │ ├── ic_fast_rewind_black_24dp_s.xml.enc │ │ │ │ │ └── ic_playlist_add_dark.xml.enc │ │ │ │ └── projekt.substratum.lite │ │ │ │ └── res │ │ │ │ ├── drawable-night │ │ │ │ ├── fab_menu_compile_enable.xml.enc │ │ │ │ ├── fab_menu_compile_update.xml.enc │ │ │ │ ├── fab_menu_disable.xml.enc │ │ │ │ ├── fab_menu_enable.xml.enc │ │ │ │ ├── fab_menu_enable_disable.xml.enc │ │ │ │ ├── fab_menu_uninstall.xml.enc │ │ │ │ ├── ic_fab_check.xml.enc │ │ │ │ ├── ic_fab_save.xml.enc │ │ │ │ ├── ic_fab_theme.xml.enc │ │ │ │ ├── ic_manager_info.xml.enc │ │ │ │ ├── ic_overlay_attention.xml.enc │ │ │ │ ├── nav_drawer_manager.xml.enc │ │ │ │ ├── nav_drawer_priorities.xml.enc │ │ │ │ └── nav_drawer_themes.xml.enc │ │ │ │ └── drawable │ │ │ │ ├── fab_menu_compile_enable.xml.enc │ │ │ │ ├── fab_menu_compile_update.xml.enc │ │ │ │ ├── fab_menu_disable.xml.enc │ │ │ │ ├── fab_menu_enable.xml.enc │ │ │ │ ├── fab_menu_enable_disable.xml.enc │ │ │ │ ├── fab_menu_uninstall.xml.enc │ │ │ │ ├── ic_fab_check.xml.enc │ │ │ │ ├── ic_fab_save.xml.enc │ │ │ │ ├── ic_fab_theme.xml.enc │ │ │ │ ├── ic_manager_info.xml.enc │ │ │ │ ├── ic_overlay_attention.xml.enc │ │ │ │ ├── nav_drawer_manager.xml.enc │ │ │ │ ├── nav_drawer_priorities.xml.enc │ │ │ │ └── nav_drawer_themes.xml.enc │ │ ├── merged_java_res │ │ │ └── release │ │ │ │ └── out.jar │ │ ├── merged_manifests │ │ │ └── release │ │ │ │ └── AndroidManifest.xml │ │ ├── metadata_feature_manifest │ │ │ └── release │ │ │ │ └── metadata-feature │ │ │ │ └── output.json │ │ ├── metadata_library_dependencies_report │ │ │ └── release │ │ │ │ └── dependencies.pb │ │ ├── navigation_json │ │ │ └── release │ │ │ │ └── navigation.json │ │ ├── processed_res │ │ │ └── release │ │ │ │ └── out │ │ │ │ └── resources-release.ap_ │ │ ├── proguard-files │ │ │ ├── proguard-android-optimize.txt-4.0.0 │ │ │ ├── proguard-android.txt-4.0.0 │ │ │ └── proguard-defaults.txt-4.0.0 │ │ ├── res │ │ │ └── merged │ │ │ │ └── release │ │ │ │ ├── drawable-night_ic_logo.xml.flat │ │ │ │ ├── drawable-v26_ic_launcher_background.xml.flat │ │ │ │ ├── drawable-v26_ic_launcher_foreground.xml.flat │ │ │ │ ├── drawable-xxhdpi_heroimage.png.flat │ │ │ │ ├── drawable_btn_bg.xml.flat │ │ │ │ ├── drawable_btn_continue.xml.flat │ │ │ │ ├── drawable_btn_desc.xml.flat │ │ │ │ ├── drawable_dialog_bg.xml.flat │ │ │ │ ├── drawable_ic_changelog.xml.flat │ │ │ │ ├── drawable_ic_gallery.xml.flat │ │ │ │ ├── drawable_ic_logo.xml.flat │ │ │ │ ├── drawable_ic_paypal.xml.flat │ │ │ │ ├── drawable_ic_playstore.xml.flat │ │ │ │ ├── drawable_ic_support.xml.flat │ │ │ │ ├── drawable_ic_telegram.xml.flat │ │ │ │ ├── drawable_ic_twitter.xml.flat │ │ │ │ ├── font_baloo2bold.ttf.flat │ │ │ │ ├── font_baloo2extrabold.ttf.flat │ │ │ │ ├── font_baloo2medium.ttf.flat │ │ │ │ ├── font_baloo2regular.ttf.flat │ │ │ │ ├── font_baloo2semibold.ttf.flat │ │ │ │ ├── layout_custom_dialog.xml.flat │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher.xml.flat │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat │ │ │ │ ├── mipmap-hdpi_ic_launcher_background.png.flat │ │ │ │ ├── mipmap-hdpi_ic_launcher_foreground.png.flat │ │ │ │ ├── mipmap-mdpi_ic_launcher_background.png.flat │ │ │ │ ├── mipmap-mdpi_ic_launcher_foreground.png.flat │ │ │ │ ├── mipmap-xhdpi_ic_launcher_background.png.flat │ │ │ │ ├── mipmap-xhdpi_ic_launcher_foreground.png.flat │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_background.png.flat │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_foreground.png.flat │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_background.png.flat │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_foreground.png.flat │ │ │ │ ├── values-af_values-af.arsc.flat │ │ │ │ ├── values-am_values-am.arsc.flat │ │ │ │ ├── values-ar_values-ar.arsc.flat │ │ │ │ ├── values-as_values-as.arsc.flat │ │ │ │ ├── values-az_values-az.arsc.flat │ │ │ │ ├── values-b+es+419_values-b+es+419.arsc.flat │ │ │ │ ├── values-b+sr+Latn_values-b+sr+Latn.arsc.flat │ │ │ │ ├── values-be_values-be.arsc.flat │ │ │ │ ├── values-bg_values-bg.arsc.flat │ │ │ │ ├── values-bn_values-bn.arsc.flat │ │ │ │ ├── values-bs_values-bs.arsc.flat │ │ │ │ ├── values-ca_values-ca.arsc.flat │ │ │ │ ├── values-cs_values-cs.arsc.flat │ │ │ │ ├── values-da_values-da.arsc.flat │ │ │ │ ├── values-de_values-de.arsc.flat │ │ │ │ ├── values-el_values-el.arsc.flat │ │ │ │ ├── values-en-rAU_values-en-rAU.arsc.flat │ │ │ │ ├── values-en-rCA_values-en-rCA.arsc.flat │ │ │ │ ├── values-en-rGB_values-en-rGB.arsc.flat │ │ │ │ ├── values-en-rIN_values-en-rIN.arsc.flat │ │ │ │ ├── values-en-rXC_values-en-rXC.arsc.flat │ │ │ │ ├── values-es-rUS_values-es-rUS.arsc.flat │ │ │ │ ├── values-es_values-es.arsc.flat │ │ │ │ ├── values-et_values-et.arsc.flat │ │ │ │ ├── values-eu_values-eu.arsc.flat │ │ │ │ ├── values-fa_values-fa.arsc.flat │ │ │ │ ├── values-fi_values-fi.arsc.flat │ │ │ │ ├── values-fr-rCA_values-fr-rCA.arsc.flat │ │ │ │ ├── values-fr_values-fr.arsc.flat │ │ │ │ ├── values-gl_values-gl.arsc.flat │ │ │ │ ├── values-gu_values-gu.arsc.flat │ │ │ │ ├── values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat │ │ │ │ ├── values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat │ │ │ │ ├── values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat │ │ │ │ ├── values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat │ │ │ │ ├── values-h720dp-v13_values-h720dp-v13.arsc.flat │ │ │ │ ├── values-hdpi-v4_values-hdpi-v4.arsc.flat │ │ │ │ ├── values-hi_values-hi.arsc.flat │ │ │ │ ├── values-hr_values-hr.arsc.flat │ │ │ │ ├── values-hu_values-hu.arsc.flat │ │ │ │ ├── values-hy_values-hy.arsc.flat │ │ │ │ ├── values-in_values-in.arsc.flat │ │ │ │ ├── values-is_values-is.arsc.flat │ │ │ │ ├── values-it_values-it.arsc.flat │ │ │ │ ├── values-iw_values-iw.arsc.flat │ │ │ │ ├── values-ja_values-ja.arsc.flat │ │ │ │ ├── values-ka_values-ka.arsc.flat │ │ │ │ ├── values-kk_values-kk.arsc.flat │ │ │ │ ├── values-km_values-km.arsc.flat │ │ │ │ ├── values-kn_values-kn.arsc.flat │ │ │ │ ├── values-ko_values-ko.arsc.flat │ │ │ │ ├── values-ky_values-ky.arsc.flat │ │ │ │ ├── values-land_values-land.arsc.flat │ │ │ │ ├── values-large-v4_values-large-v4.arsc.flat │ │ │ │ ├── values-ldltr-v21_values-ldltr-v21.arsc.flat │ │ │ │ ├── values-ldrtl-v17_values-ldrtl-v17.arsc.flat │ │ │ │ ├── values-lo_values-lo.arsc.flat │ │ │ │ ├── values-lt_values-lt.arsc.flat │ │ │ │ ├── values-lv_values-lv.arsc.flat │ │ │ │ ├── values-mk_values-mk.arsc.flat │ │ │ │ ├── values-ml_values-ml.arsc.flat │ │ │ │ ├── values-mn_values-mn.arsc.flat │ │ │ │ ├── values-mr_values-mr.arsc.flat │ │ │ │ ├── values-ms_values-ms.arsc.flat │ │ │ │ ├── values-my_values-my.arsc.flat │ │ │ │ ├── values-nb_values-nb.arsc.flat │ │ │ │ ├── values-ne_values-ne.arsc.flat │ │ │ │ ├── values-night-v8_values-night-v8.arsc.flat │ │ │ │ ├── values-nl_values-nl.arsc.flat │ │ │ │ ├── values-or_values-or.arsc.flat │ │ │ │ ├── values-pa_values-pa.arsc.flat │ │ │ │ ├── values-pl_values-pl.arsc.flat │ │ │ │ ├── values-port_values-port.arsc.flat │ │ │ │ ├── values-pt-rBR_values-pt-rBR.arsc.flat │ │ │ │ ├── values-pt-rPT_values-pt-rPT.arsc.flat │ │ │ │ ├── values-pt_values-pt.arsc.flat │ │ │ │ ├── values-ro_values-ro.arsc.flat │ │ │ │ ├── values-ru_values-ru.arsc.flat │ │ │ │ ├── values-si_values-si.arsc.flat │ │ │ │ ├── values-sk_values-sk.arsc.flat │ │ │ │ ├── values-sl_values-sl.arsc.flat │ │ │ │ ├── values-small-v4_values-small-v4.arsc.flat │ │ │ │ ├── values-sq_values-sq.arsc.flat │ │ │ │ ├── values-sr_values-sr.arsc.flat │ │ │ │ ├── values-sv_values-sv.arsc.flat │ │ │ │ ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat │ │ │ │ ├── values-sw_values-sw.arsc.flat │ │ │ │ ├── values-ta_values-ta.arsc.flat │ │ │ │ ├── values-te_values-te.arsc.flat │ │ │ │ ├── values-th_values-th.arsc.flat │ │ │ │ ├── values-tl_values-tl.arsc.flat │ │ │ │ ├── values-tr_values-tr.arsc.flat │ │ │ │ ├── values-uk_values-uk.arsc.flat │ │ │ │ ├── values-ur_values-ur.arsc.flat │ │ │ │ ├── values-uz_values-uz.arsc.flat │ │ │ │ ├── values-v16_values-v16.arsc.flat │ │ │ │ ├── values-v17_values-v17.arsc.flat │ │ │ │ ├── values-v18_values-v18.arsc.flat │ │ │ │ ├── values-v21_values-v21.arsc.flat │ │ │ │ ├── values-v22_values-v22.arsc.flat │ │ │ │ ├── values-v23_values-v23.arsc.flat │ │ │ │ ├── values-v24_values-v24.arsc.flat │ │ │ │ ├── values-v25_values-v25.arsc.flat │ │ │ │ ├── values-v26_values-v26.arsc.flat │ │ │ │ ├── values-v28_values-v28.arsc.flat │ │ │ │ ├── values-v31_values-v31.arsc.flat │ │ │ │ ├── values-vi_values-vi.arsc.flat │ │ │ │ ├── values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat │ │ │ │ ├── values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat │ │ │ │ ├── values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat │ │ │ │ ├── values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat │ │ │ │ ├── values-watch-v20_values-watch-v20.arsc.flat │ │ │ │ ├── values-watch-v21_values-watch-v21.arsc.flat │ │ │ │ ├── values-xlarge-v4_values-xlarge-v4.arsc.flat │ │ │ │ ├── values-zh-rCN_values-zh-rCN.arsc.flat │ │ │ │ ├── values-zh-rHK_values-zh-rHK.arsc.flat │ │ │ │ ├── values-zh-rTW_values-zh-rTW.arsc.flat │ │ │ │ ├── values-zu_values-zu.arsc.flat │ │ │ │ └── values_values.arsc.flat │ │ ├── runtime_symbol_list │ │ │ └── release │ │ │ │ └── R.txt │ │ ├── sdk_dependency_data │ │ │ └── release │ │ │ │ └── sdkDependencyData.pb │ │ ├── shrunk_java_res │ │ │ └── release │ │ │ │ └── shrunkJavaRes.jar │ │ └── symbol_list_with_package_name │ │ │ └── release │ │ │ └── package-aware-r.txt │ ├── kotlin │ │ └── compileReleaseKotlin │ │ │ ├── build-history.bin │ │ │ ├── caches-jvm │ │ │ ├── inputs │ │ │ │ ├── source-to-output.tab │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ ├── source-to-output.tab.len │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ ├── source-to-output.tab_i │ │ │ │ └── source-to-output.tab_i.len │ │ │ ├── jvm │ │ │ │ └── kotlin │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ ├── constants.tab │ │ │ │ │ ├── constants.tab.keystream │ │ │ │ │ ├── constants.tab.keystream.len │ │ │ │ │ ├── constants.tab.len │ │ │ │ │ ├── constants.tab.values.at │ │ │ │ │ ├── constants.tab_i │ │ │ │ │ ├── constants.tab_i.len │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ ├── java-sources-proto-map.tab │ │ │ │ │ ├── java-sources-proto-map.tab.keystream │ │ │ │ │ ├── java-sources-proto-map.tab.keystream.len │ │ │ │ │ ├── java-sources-proto-map.tab.len │ │ │ │ │ ├── java-sources-proto-map.tab.values.at │ │ │ │ │ ├── java-sources-proto-map.tab_i │ │ │ │ │ ├── java-sources-proto-map.tab_i.len │ │ │ │ │ ├── proto.tab │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ └── supertypes.tab_i.len │ │ │ └── lookups │ │ │ │ ├── counters.tab │ │ │ │ ├── file-to-id.tab │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ ├── file-to-id.tab.len │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ ├── file-to-id.tab_i │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ ├── id-to-file.tab │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ ├── id-to-file.tab.len │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ ├── id-to-file.tab_i │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ ├── lookups.tab │ │ │ │ ├── lookups.tab.keystream │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ ├── lookups.tab.len │ │ │ │ ├── lookups.tab.values.at │ │ │ │ ├── lookups.tab_i │ │ │ │ └── lookups.tab_i.len │ │ │ └── last-build.bin │ ├── outputs │ │ ├── logs │ │ │ └── manifest-merger-release-report.txt │ │ ├── mapping │ │ │ └── release │ │ │ │ ├── mapping.txt │ │ │ │ ├── seeds.txt │ │ │ │ └── usage.txt │ │ └── sdk-dependencies │ │ │ └── release │ │ │ └── sdkDependencies.txt │ ├── reports │ │ ├── lint-results-release-fatal.html │ │ └── lint-results-release-fatal.xml │ └── tmp │ │ └── kotlin-classes │ │ └── release │ │ └── com │ │ └── drdisagree │ │ └── anothertheme │ │ ├── AdvancedConstants.class │ │ ├── SubstratumLauncher$showDialog$1.class │ │ ├── SubstratumLauncher$showDialog$2.class │ │ ├── SubstratumLauncher$showDialog$3.class │ │ ├── SubstratumLauncher$showDialog$4.class │ │ ├── SubstratumLauncher$startAntiPiracyCheck$1$1$$special$$inlined$allow$1.class │ │ ├── SubstratumLauncher$startAntiPiracyCheck$1$1$$special$$inlined$doNotAllow$1.class │ │ ├── SubstratumLauncher$startAntiPiracyCheck$1$1$$special$$inlined$onError$1.class │ │ ├── SubstratumLauncher$startAntiPiracyCheck$1$1.class │ │ ├── SubstratumLauncher$startAntiPiracyCheck$1.class │ │ ├── SubstratumLauncher$themePiracyCheck$2.class │ │ ├── SubstratumLauncher.class │ │ └── ThemeFunctions.class ├── debug │ └── output-metadata.json ├── proguard-rules.pro ├── release │ ├── AnotherTheme v2.0-release.apk │ └── output-metadata.json └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── overlays │ │ ├── android │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type0.xml │ │ ├── type1a │ │ ├── type1a_Enable_Filled_Battery.xml │ │ ├── type1b │ │ ├── type1b_(Filled)_(Landscape)_Battery_Buddy.xml │ │ ├── type1b_(Filled)_Battery_Buddy.xml │ │ ├── type1b_(Filled)_Battery_Gradicon.xml │ │ ├── type1b_(Filled)_Battery_Inverter.xml │ │ ├── type1b_(Filled)_Battery_Love.xml │ │ ├── type1b_(Filled)_Battery_Plumpy.xml │ │ ├── type1b_(Filled)_Battery_Rounded.xml │ │ ├── type1b_(Landscape)_Battery_FaintUI.xml │ │ ├── type1b_(Landscape)_Battery_Peas.xml │ │ ├── type1b_(Landscape_LR)_LBattery_Hyper.xml │ │ ├── type1b_(Landscape_LR)_LBattery_iOS.xml │ │ ├── type1b_(Landscape_LR)_RBattery_Hyper.xml │ │ ├── type1b_(Landscape_LR)_RBattery_iOS.xml │ │ ├── type1b_Battery_AiirO.xml │ │ ├── type1b_Battery_Aurora.xml │ │ ├── type1b_Battery_Capsule.xml │ │ ├── type1b_Battery_Dual.xml │ │ ├── type1b_Battery_Forlorn.xml │ │ ├── type1b_Battery_Leaf.xml │ │ ├── type1b_Battery_Pill.xml │ │ ├── type1b_Battery_Portrait_iOS.xml │ │ ├── type1b_Battery_Simple.xml │ │ ├── type1b_Battery_Unable.xml │ │ ├── type1b_Battery_Wonder.xml │ │ ├── type1b_Battery_ZigZag.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_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_location.xml │ │ │ │ ├── ic_sleep.xml │ │ │ │ ├── ic_slice_send.xml │ │ │ │ ├── ic_usb_48dp.xml │ │ │ │ ├── ic_voice_search_api_material.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 │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ ├── perm_group_network.png │ │ │ │ └── perm_group_shortrange_network.png │ │ ├── type2_(Icons)_FaintUI │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_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_location.xml │ │ │ │ ├── ic_sleep.xml │ │ │ │ ├── ic_slice_send.xml │ │ │ │ ├── ic_usb_48dp.xml │ │ │ │ ├── ic_voice_search_api_material.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 │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ ├── perm_group_network.png │ │ │ │ └── perm_group_shortrange_network.png │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_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_location.xml │ │ │ │ ├── ic_sleep.xml │ │ │ │ ├── ic_slice_send.xml │ │ │ │ ├── ic_usb_48dp.xml │ │ │ │ ├── ic_voice_search_api_material.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 │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ ├── perm_group_network.png │ │ │ │ └── perm_group_shortrange_network.png │ │ ├── type2_(Icons)_Lorn │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_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_location.xml │ │ │ │ ├── ic_sleep.xml │ │ │ │ ├── ic_slice_send.xml │ │ │ │ ├── ic_usb_48dp.xml │ │ │ │ ├── ic_voice_search_api_material.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 │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ ├── perm_group_network.png │ │ │ │ └── perm_group_shortrange_network.png │ │ ├── type2_(Icons)_Plumpy │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_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_location.xml │ │ │ │ ├── ic_sleep.xml │ │ │ │ ├── ic_slice_send.xml │ │ │ │ ├── ic_usb_48dp.xml │ │ │ │ ├── ic_voice_search_api_material.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 │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ ├── perm_group_network.png │ │ │ │ └── perm_group_shortrange_network.png │ │ ├── type2_(Signal)_AiirO │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Aurora │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_signal_0.xml │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ └── ic_wifi_signal_4.xml │ │ ├── type2_(Signal)_Bold │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Capsule │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_FaintUI │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Forlorn │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Glummy │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Gradicon_[A11+] │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Hollow │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Japanese │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Koala │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Lineal │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Linear │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Ory │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Plumpy │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Router │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Scale │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Spiral │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Tower │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_Waffle │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_ZigZag │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Signal)_iOS │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.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 │ │ ├── type2_(Tweak)_QS_Tile_Icon_&_Text_White_[A12+] │ │ │ ├── color-night │ │ │ │ ├── text_color_primary_device_default_light.xml │ │ │ │ └── text_color_secondary_device_default_light.xml │ │ │ ├── color │ │ │ │ ├── text_color_primary_device_default_dark.xml │ │ │ │ └── text_color_secondary_device_default_dark.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ └── type2_(Tweak)_Signal_Data_Cross_Remover_[Custom_Rom] │ │ │ ├── drawable-nodpi │ │ │ └── placebo_placeholder.xml │ │ │ └── values │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ │ ├── app.lawnchair │ │ ├── attention │ │ └── res │ │ │ └── drawable-anydpi │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ ├── ic_about.xml │ │ │ ├── ic_allapps_search.xml │ │ │ ├── ic_app_drawer.xml │ │ │ ├── ic_clear_all_recents.xml │ │ │ ├── ic_discord.xml │ │ │ ├── ic_dock.xml │ │ │ ├── ic_edit.xml │ │ │ ├── ic_empty_recents.xml │ │ │ ├── ic_folder.xml │ │ │ ├── ic_general.xml │ │ │ ├── ic_github.xml │ │ │ ├── ic_gm_close_24.xml │ │ │ ├── ic_help.xml │ │ │ ├── ic_home_screen.xml │ │ │ ├── ic_info_no_shadow.xml │ │ │ ├── ic_lens.xml │ │ │ ├── ic_lock.xml │ │ │ ├── ic_lock_open.xml │ │ │ ├── ic_new_releases.xml │ │ │ ├── ic_palette.xml │ │ │ ├── ic_qsb_search.xml │ │ │ ├── ic_quickstep.xml │ │ │ ├── ic_remove_no_shadow.xml │ │ │ ├── ic_screenshot.xml │ │ │ ├── ic_setting.xml │ │ │ ├── ic_share.xml │ │ │ ├── ic_smartspace.xml │ │ │ ├── ic_split_screen.xml │ │ │ ├── ic_twitter.xml │ │ │ ├── ic_uninstall_no_shadow.xml │ │ │ ├── ic_wallpaper.xml │ │ │ ├── ic_warning.xml │ │ │ └── ic_widget.xml │ │ ├── app.revanced.android.apps.youtube.music │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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 │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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 │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ ├── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ ├── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ ├── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ ├── 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.settings.icons │ │ ├── attention │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type1a │ │ ├── type1a_(Icon_Color)_Follow_Accent.xml │ │ ├── type1a_(Icon_Color)_Follow_System_[Inverse].xml │ │ ├── type1b │ │ ├── type1b_(Shape)_Circle.xml │ │ ├── type1b_(Shape)_Rounded_Square.xml │ │ ├── type1b_(Shape)_Square.xml │ │ ├── type2 │ │ ├── type2_(Aurora)_Gradient_Fill │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Aurora)_Gradient_Outline │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Aurora)_Kinda_Neumorph │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Aurora)_Minimal_AF │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Bubble)_No_Config │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.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_octavi.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.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_octavi.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ ├── type2_(Bubble_v2)_No_Config │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.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_octavi.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.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_octavi.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ ├── type2_(FaintUI)_Gradient_Fill │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(FaintUI)_Gradient_Outline │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(FaintUI)_Kinda_Neumorph │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(FaintUI)_Minimal_AF │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Gradient_Fill_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Gradient_Outline_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Kinda_Neumorph_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Minimal_AF_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Gradient_Fill │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Gradient_Outline │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Kinda_Neumorph │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Minimal_AF │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Plumpy)_Gradient_Fill │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Plumpy)_Gradient_Outline │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Plumpy)_Kinda_Neumorph │ │ │ ├── drawable-anydpi │ │ │ │ ├── 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_home_sound.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_homepage_search_oos.xml │ │ │ │ ├── ic_krypton.xml │ │ │ │ ├── ic_menu_play_store.xml │ │ │ │ ├── ic_monet.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_op_settings_wireless.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_phone_info_home.xml │ │ │ │ ├── ic_phone_info_op.xml │ │ │ │ ├── ic_powerhub.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_accounts_home.xml │ │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ │ ├── ic_settings_appearance.xml │ │ │ │ ├── ic_settings_battery_home.xml │ │ │ │ ├── ic_settings_battery_op.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_blaze.xml │ │ │ │ ├── ic_settings_cogs.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_derpspace.xml │ │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ │ ├── ic_settings_octavi.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_privacy_home.xml │ │ │ │ ├── ic_settings_privacy_op.xml │ │ │ │ ├── ic_settings_security_home.xml │ │ │ │ ├── ic_settings_security_op.xml │ │ │ │ ├── ic_settings_security_white.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 │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ └── type2_(Plumpy)_Minimal_AF │ │ │ ├── drawable-anydpi │ │ │ ├── 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_home_sound.xml │ │ │ ├── ic_homepage_search.xml │ │ │ ├── ic_homepage_search_oos.xml │ │ │ ├── ic_krypton.xml │ │ │ ├── ic_menu_play_store.xml │ │ │ ├── ic_monet.xml │ │ │ ├── ic_notifications.xml │ │ │ ├── ic_op_settings_wireless.xml │ │ │ ├── ic_phone_info.xml │ │ │ ├── ic_phone_info_home.xml │ │ │ ├── ic_phone_info_op.xml │ │ │ ├── ic_powerhub.xml │ │ │ ├── ic_settings_accessibility.xml │ │ │ ├── ic_settings_accessibility_home.xml │ │ │ ├── ic_settings_accounts.xml │ │ │ ├── ic_settings_accounts_home.xml │ │ │ ├── ic_settings_ancientsettings.xml │ │ │ ├── ic_settings_appearance.xml │ │ │ ├── ic_settings_battery_home.xml │ │ │ ├── ic_settings_battery_op.xml │ │ │ ├── ic_settings_battery_white.xml │ │ │ ├── ic_settings_blaze.xml │ │ │ ├── ic_settings_cogs.xml │ │ │ ├── ic_settings_delete.xml │ │ │ ├── ic_settings_derpspace.xml │ │ │ ├── ic_settings_disable.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_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_home.xml │ │ │ ├── ic_settings_octavi.xml │ │ │ ├── ic_settings_open.xml │ │ │ ├── ic_settings_privacy.xml │ │ │ ├── ic_settings_privacy_home.xml │ │ │ ├── ic_settings_privacy_op.xml │ │ │ ├── ic_settings_security_home.xml │ │ │ ├── ic_settings_security_op.xml │ │ │ ├── ic_settings_security_white.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 │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ └── AnotherTheme.xml │ │ ├── com.android.systemui.navbars │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Navigation_Bar)_Aurora │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_sysbar_back.xml │ │ │ │ ├── ic_sysbar_back2.xml │ │ │ │ ├── ic_sysbar_back_hw.xml │ │ │ │ ├── ic_sysbar_back_quick_step.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 │ │ ├── type2_(Navigation_Bar)_FaintUI │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_sysbar_back.xml │ │ │ │ ├── ic_sysbar_back2.xml │ │ │ │ ├── ic_sysbar_back_hw.xml │ │ │ │ ├── ic_sysbar_back_quick_step.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 │ │ ├── type2_(Navigation_Bar)_Gradicon_[A11+] │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_sysbar_back.xml │ │ │ │ ├── ic_sysbar_back2.xml │ │ │ │ ├── ic_sysbar_back_hw.xml │ │ │ │ ├── ic_sysbar_back_quick_step.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 │ │ └── type2_(Navigation_Bar)_Plumpy │ │ │ └── drawable-anydpi │ │ │ ├── ic_sysbar_back.xml │ │ │ ├── ic_sysbar_back2.xml │ │ │ ├── ic_sysbar_back_hw.xml │ │ │ ├── ic_sysbar_back_quick_step.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 │ │ ├── com.android.systemui.statusbars │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type1a │ │ ├── type1a_Battery_AiirO_Size_Fix.xml │ │ ├── type1a_Battery_Buddy_Size_Fix.xml │ │ ├── type1a_Battery_Capsule_Size_Fix.xml │ │ ├── type1a_Battery_FaintUI_Size_Fix.xml │ │ ├── type1a_Battery_Forlorn_Size_Fix.xml │ │ ├── type1a_Battery_Inverter_Size_Fix.xml │ │ ├── type1a_Battery_Landscape_LR_Size_Fix.xml │ │ ├── type1a_Battery_Landscape_Module_Fix.xml │ │ ├── type1a_Battery_Love_Size_Fix.xml │ │ ├── type1a_Battery_Peas_Size_Fix.xml │ │ ├── type1a_Battery_Unable_Size_Fix.xml │ │ ├── type1b │ │ ├── type1b_(Padding)_Battery_0dp.xml │ │ ├── type1b_(Padding)_Battery_1dp.xml │ │ ├── type1b_(Padding)_Battery_2dp.xml │ │ ├── type1b_(Padding)_Battery_3dp.xml │ │ ├── type1b_(Padding)_Battery_4dp.xml │ │ ├── type1b_(Padding)_Signal_1dp.xml │ │ ├── type1b_(Padding)_Signal_2dp.xml │ │ ├── type1b_(Padding)_Signal_3dp.xml │ │ ├── type1b_(Padding)_Signal_4dp.xml │ │ ├── type2 │ │ ├── type2_(LTE)_Aurora │ │ │ └── drawable-anydpi │ │ │ │ ├── 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 │ │ ├── type2_(LTE)_Aurora_Fake_5G │ │ │ └── drawable-anydpi │ │ │ │ ├── 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 │ │ ├── type2_(LTE)_FaintUI │ │ │ └── drawable-anydpi │ │ │ │ ├── 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 │ │ ├── type2_(LTE)_FaintUI_Fake_5G │ │ │ └── drawable-anydpi │ │ │ │ ├── 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 │ │ ├── type2_(LTE)_Gradicon_Fake_5G_[A11+] │ │ │ └── drawable-anydpi │ │ │ │ ├── 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 │ │ ├── type2_(LTE)_Gradicon_[A11+] │ │ │ └── drawable-anydpi │ │ │ │ ├── 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 │ │ ├── type2_(LTE)_Lorn │ │ │ └── drawable-anydpi │ │ │ │ ├── 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 │ │ ├── type2_(LTE)_Lorn_Fake_5G │ │ │ └── drawable-anydpi │ │ │ │ ├── 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 │ │ ├── type2_(LTE)_Plumpy │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_hd2_volte.xml │ │ │ │ ├── ic_hd_volte.xml │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ ├── ic_lte_plus_mobiledata.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 │ │ │ │ ├── stat_sys_volte.xml │ │ │ │ ├── stat_sys_volte_slot1.xml │ │ │ │ ├── stat_sys_volte_slot12.xml │ │ │ │ ├── stat_sys_volte_slot2.xml │ │ │ │ └── volte.xml │ │ ├── type2_(LTE)_Plumpy_Fake_5G │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_hd2_volte.xml │ │ │ │ ├── ic_hd_volte.xml │ │ │ │ ├── ic_lte_mobiledata.xml │ │ │ │ ├── ic_lte_plus_mobiledata.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 │ │ │ │ ├── stat_sys_volte.xml │ │ │ │ ├── stat_sys_volte_slot1.xml │ │ │ │ ├── stat_sys_volte_slot12.xml │ │ │ │ ├── stat_sys_volte_slot2.xml │ │ │ │ └── volte.xml │ │ ├── type2_(Statusbar)_Aurora │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.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 │ │ ├── type2_(Statusbar)_FaintUI │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.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 │ │ ├── type2_(Statusbar)_Gradicon_[A11+] │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.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 │ │ ├── type2_(Statusbar)_Lorn │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.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 │ │ ├── type2_(Statusbar)_Plumpy │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_access_alarms_big.xml │ │ │ │ ├── ic_access_alarms_small.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.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 │ │ ├── type2_(Tweak)_Signal_Data_Cross_Remover_[Stock_Rom] │ │ │ ├── drawable-nodpi │ │ │ │ └── placebo_placeholder.xml │ │ │ └── drawable │ │ │ │ └── stat_sys_data_disabled.xml │ │ └── type2_(Tweak)_Signal_Roaming_Icon_Remover │ │ │ ├── drawable-nodpi │ │ │ └── placebo_placeholder.xml │ │ │ └── drawable │ │ │ └── stat_sys_roaming.xml │ │ ├── com.android.systemui.tiles │ │ ├── type1a │ │ ├── type1a_(A10-11)_QS_Shape_Huge.xml │ │ ├── type1a_(A10-11)_QS_Shape_Medium.xml │ │ ├── type1a_(A10-11)_QS_Shape_Small.xml │ │ ├── type1a_(A10-11)_QS_Tile_Icon_Color_Accent.xml │ │ ├── type1a_(A10-11)_QS_Tile_Icon_Color_Black.xml │ │ ├── type1a_(A10-11)_QS_Tile_Icon_Color_White.xml │ │ ├── type1a_(A10-11)_QS_Tile_Icon_Size_Huge.xml │ │ ├── type1a_(A10-11)_QS_Tile_Icon_Size_Medium.xml │ │ ├── type1a_(A10-11)_QS_Tile_Icon_Size_Small.xml │ │ ├── type1b │ │ ├── type1b_(A10-11)_QQS_Panel_4_Columns.xml │ │ ├── type1b_(A10-11)_QQS_Panel_5_Columns.xml │ │ ├── type1b_(A10-11)_QQS_Panel_6_Columns.xml │ │ ├── type1b_(A10-11)_QQS_Panel_7_Columns.xml │ │ ├── type1b_(A10-11)_QS_Panel_2_Rows_3_Columns.xml │ │ ├── type1b_(A10-11)_QS_Panel_2_Rows_4_Columns.xml │ │ ├── type1b_(A10-11)_QS_Panel_3_Rows_3_Columns.xml │ │ ├── type1b_(A10-11)_QS_Panel_3_Rows_4_Columns.xml │ │ ├── type1b_(A10-11)_QS_Panel_4_Rows_3_Columns.xml │ │ ├── type1b_(A10-11)_QS_Panel_4_Rows_4_Columns.xml │ │ ├── type1b_(A10-11)_QS_Panel_5_Rows_3_Columns.xml │ │ ├── type1b_(A10-11)_QS_Panel_5_Rows_4_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_1_Row_2_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_1_Row_3_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_1_Row_4_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_2_Rows_2_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_2_Rows_3_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_2_Rows_4_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_3_Rows_2_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_3_Rows_3_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_3_Rows_4_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_4_Rows_2_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_4_Rows_3_Columns.xml │ │ ├── type1b_(A12)_QQS_Panel_4_Rows_4_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_3_Rows_2_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_3_Rows_3_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_3_Rows_4_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_4_Rows_2_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_4_Rows_3_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_4_Rows_4_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_5_Rows_2_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_5_Rows_3_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_5_Rows_4_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_6_Rows_2_Columns.xml │ │ ├── type1b_(A12)_QS_Panel_6_Rows_3_Columns.xml │ │ └── type1b_(A12)_QS_Panel_6_Rows_4_Columns.xml │ │ ├── com.android.systemui │ │ ├── attention │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type0.xml │ │ ├── type1a │ │ ├── type1a_Battery_Background_Color_Accent.xml │ │ ├── type1a_Battery_Foreground_Color_Accent.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ ├── drawable-anydpi │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ ├── auth_dialog_enterprise.xml │ │ │ │ ├── auth_dialog_lock.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_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_avatar_guest_user.xml │ │ │ │ ├── ic_avatar_user.xml │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ ├── ic_bluetooth_audio.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_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_thermostat_24.xml │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ ├── ic_done_black_24dp.xml │ │ │ │ ├── ic_du_logo.xml │ │ │ │ ├── ic_emergency_star.xml │ │ │ │ ├── ic_fullscreen_white_24dp.xml │ │ │ │ ├── ic_gaming.xml │ │ │ │ ├── ic_headphone.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_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_lockdown.xml │ │ │ │ ├── ic_lock_onthego.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_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_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_qs_ambient_display.xml │ │ │ │ ├── ic_qs_aod.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_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_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_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_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_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_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 │ │ │ │ ├── nfc_24dp.xml │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── pip_ic_fullscreen_white.xml │ │ │ │ ├── pip_icon.xml │ │ │ │ ├── status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── twotone_spatial_audio_24.xml │ │ │ │ └── volume_settings.xml │ │ │ └── drawable │ │ │ │ ├── ic_device_lock_off.xml │ │ │ │ ├── ic_device_lock_on.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ ├── ic_lock_face.xml │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ ├── ic_unlock.xml │ │ │ │ └── ic_unlocked.xml │ │ ├── type2_(Icons)_FaintUI │ │ │ ├── drawable-anydpi │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ ├── auth_dialog_enterprise.xml │ │ │ │ ├── auth_dialog_lock.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_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_avatar_guest_user.xml │ │ │ │ ├── ic_avatar_user.xml │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ ├── ic_bluetooth_audio.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_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_thermostat_24.xml │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ ├── ic_done_black_24dp.xml │ │ │ │ ├── ic_du_logo.xml │ │ │ │ ├── ic_emergency_star.xml │ │ │ │ ├── ic_fullscreen_white_24dp.xml │ │ │ │ ├── ic_gaming.xml │ │ │ │ ├── ic_headphone.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_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_lockdown.xml │ │ │ │ ├── ic_lock_onthego.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_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_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_qs_ambient_display.xml │ │ │ │ ├── ic_qs_aod.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_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_quicktap.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_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_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_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_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 │ │ │ │ ├── nfc_24dp.xml │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── pip_ic_fullscreen_white.xml │ │ │ │ ├── pip_icon.xml │ │ │ │ ├── status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── twotone_spatial_audio_24.xml │ │ │ │ └── volume_settings.xml │ │ │ └── drawable │ │ │ │ ├── ic_device_lock_off.xml │ │ │ │ ├── ic_device_lock_on.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ ├── ic_lock_face.xml │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ ├── ic_unlock.xml │ │ │ │ └── ic_unlocked.xml │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ ├── auth_dialog_enterprise.xml │ │ │ │ ├── auth_dialog_lock.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_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_avatar_guest_user.xml │ │ │ │ ├── ic_avatar_user.xml │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ ├── ic_bluetooth_audio.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_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_thermostat_24.xml │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ ├── ic_done_black_24dp.xml │ │ │ │ ├── ic_du_logo.xml │ │ │ │ ├── ic_emergency_star.xml │ │ │ │ ├── ic_fullscreen_white_24dp.xml │ │ │ │ ├── ic_gaming.xml │ │ │ │ ├── ic_headphone.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_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_lockdown.xml │ │ │ │ ├── ic_lock_onthego.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_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_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_qs_ambient_display.xml │ │ │ │ ├── ic_qs_aod.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_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_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_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_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_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_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 │ │ │ │ ├── nfc_24dp.xml │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── pip_ic_fullscreen_white.xml │ │ │ │ ├── pip_icon.xml │ │ │ │ ├── status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── twotone_spatial_audio_24.xml │ │ │ │ └── volume_settings.xml │ │ │ └── drawable │ │ │ │ ├── ic_device_lock_off.xml │ │ │ │ ├── ic_device_lock_on.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ ├── ic_lock_face.xml │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ ├── ic_unlock.xml │ │ │ │ └── ic_unlocked.xml │ │ ├── type2_(Icons)_Lorn │ │ │ ├── drawable-anydpi │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ ├── auth_dialog_enterprise.xml │ │ │ │ ├── auth_dialog_lock.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_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_avatar_guest_user.xml │ │ │ │ ├── ic_avatar_user.xml │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ ├── ic_bluetooth_audio.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_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_thermostat_24.xml │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ ├── ic_done_black_24dp.xml │ │ │ │ ├── ic_du_logo.xml │ │ │ │ ├── ic_emergency_star.xml │ │ │ │ ├── ic_fullscreen_white_24dp.xml │ │ │ │ ├── ic_gaming.xml │ │ │ │ ├── ic_headphone.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_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_lockdown.xml │ │ │ │ ├── ic_lock_onthego.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_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_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_qs_ambient_display.xml │ │ │ │ ├── ic_qs_aod.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_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_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_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_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_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_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 │ │ │ │ ├── nfc_24dp.xml │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── pip_ic_fullscreen_white.xml │ │ │ │ ├── pip_icon.xml │ │ │ │ ├── status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── twotone_spatial_audio_24.xml │ │ │ │ └── volume_settings.xml │ │ │ └── drawable │ │ │ │ ├── ic_device_lock_off.xml │ │ │ │ ├── ic_device_lock_on.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ ├── ic_lock_face.xml │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ ├── ic_unlock.xml │ │ │ │ └── ic_unlocked.xml │ │ ├── type2_(Icons)_Plumpy │ │ │ ├── drawable-anydpi │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ ├── auth_dialog_enterprise.xml │ │ │ │ ├── auth_dialog_lock.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_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_avatar_guest_user.xml │ │ │ │ ├── ic_avatar_user.xml │ │ │ │ ├── ic_backspace_24dp.xml │ │ │ │ ├── ic_backspace_black_24dp.xml │ │ │ │ ├── ic_bluetooth_audio.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_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_thermostat_24.xml │ │ │ │ ├── ic_dialog_alert_material.xml │ │ │ │ ├── ic_done_black_24dp.xml │ │ │ │ ├── ic_du_logo.xml │ │ │ │ ├── ic_emergency_star.xml │ │ │ │ ├── ic_fullscreen_white_24dp.xml │ │ │ │ ├── ic_gaming.xml │ │ │ │ ├── ic_headphone.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_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_lockdown.xml │ │ │ │ ├── ic_lock_onthego.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_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_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_qs_ambient_display.xml │ │ │ │ ├── ic_qs_aod.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_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_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_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_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_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_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 │ │ │ │ ├── nfc_24dp.xml │ │ │ │ ├── op_status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── pip_ic_fullscreen_white.xml │ │ │ │ ├── pip_icon.xml │ │ │ │ ├── status_bar_notification_section_header_clear_btn.xml │ │ │ │ ├── twotone_spatial_audio_24.xml │ │ │ │ └── volume_settings.xml │ │ │ └── drawable │ │ │ │ ├── ic_device_lock_off.xml │ │ │ │ ├── ic_device_lock_on.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_24dp.xml │ │ │ │ ├── ic_lock_face.xml │ │ │ │ ├── ic_lock_lock.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_open_24dp.xml │ │ │ │ ├── ic_unlock.xml │ │ │ │ └── ic_unlocked.xml │ │ ├── type2_(Signal)_AiirO │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Aurora │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Bold │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Capsule │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_FaintUI │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Forlorn │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Glummy │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Gradicon_[A11+] │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Hollow │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Japanese │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Koala │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Lineal │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Linear │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Ory │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Plumpy │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Router │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Scale │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Spiral │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Tower │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_Waffle │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_ZigZag │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Signal)_iOS │ │ │ └── drawable-anydpi │ │ │ │ ├── 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_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 │ │ ├── type2_(Tweak)_Battery_Charging_Color_Accent │ │ │ └── color │ │ │ │ └── batterymeter_bolt_color.xml │ │ ├── type2_(Tweak)_Battery_Power_Saver_Color_Accent │ │ │ └── color │ │ │ │ └── batterymeter_plus_color.xml │ │ └── type2_(Tweak)_Hide_Lockscreen_Lock_Icon │ │ │ └── drawable-anydpi │ │ │ ├── ic_device_lock_off.xml │ │ │ ├── ic_device_lock_on.xml │ │ │ ├── ic_kg_fingerprint.xml │ │ │ ├── ic_lock.xml │ │ │ ├── ic_lock_24dp.xml │ │ │ ├── ic_lock_aod.xml │ │ │ ├── ic_lock_face.xml │ │ │ ├── ic_lock_lock.xml │ │ │ ├── ic_lock_open.xml │ │ │ ├── ic_lock_open_24dp.xml │ │ │ ├── ic_unlock.xml │ │ │ ├── ic_unlocked.xml │ │ │ └── ic_unlocked_aod.xml │ │ ├── com.awedea.nyx │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── drawable-anydpi │ │ │ │ ├── cross.xml │ │ │ │ ├── like.xml │ │ │ │ ├── next.xml │ │ │ │ ├── pause.xml │ │ │ │ ├── previous.xml │ │ │ │ ├── unlike.xml │ │ │ │ └── widget_play.xml │ │ ├── type2_(Icons)_FaintUI │ │ │ └── drawable-anydpi │ │ │ │ ├── cross.xml │ │ │ │ ├── like.xml │ │ │ │ ├── next.xml │ │ │ │ ├── pause.xml │ │ │ │ ├── previous.xml │ │ │ │ ├── unlike.xml │ │ │ │ └── widget_play.xml │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── drawable-anydpi │ │ │ │ ├── cross.xml │ │ │ │ ├── like.xml │ │ │ │ ├── next.xml │ │ │ │ ├── pause.xml │ │ │ │ ├── previous.xml │ │ │ │ ├── unlike.xml │ │ │ │ └── widget_play.xml │ │ └── type2_(Icons)_Plumpy │ │ │ └── drawable-anydpi │ │ │ ├── cross.xml │ │ │ ├── like.xml │ │ │ ├── next.xml │ │ │ ├── pause.xml │ │ │ ├── previous.xml │ │ │ ├── unlike.xml │ │ │ └── widget_play.xml │ │ ├── com.franco.kernel │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_battery_20_black_24dp.xml │ │ │ │ ├── ic_battery_30_black_24dp.xml │ │ │ │ ├── ic_battery_50_black_24dp.xml │ │ │ │ ├── ic_battery_60_black_24dp.xml │ │ │ │ ├── ic_battery_80_black_24dp.xml │ │ │ │ ├── ic_battery_90_black_24dp.xml │ │ │ │ └── ic_battery_full_black_24dp.xml │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── drawable-anydpi │ │ │ │ ├── ic_battery_20_black_24dp.xml │ │ │ │ ├── ic_battery_30_black_24dp.xml │ │ │ │ ├── ic_battery_50_black_24dp.xml │ │ │ │ ├── ic_battery_60_black_24dp.xml │ │ │ │ ├── ic_battery_80_black_24dp.xml │ │ │ │ ├── ic_battery_90_black_24dp.xml │ │ │ │ └── ic_battery_full_black_24dp.xml │ │ └── type2_(Icons)_Plumpy │ │ │ └── drawable-anydpi │ │ │ ├── ic_battery_20_black_24dp.xml │ │ │ ├── ic_battery_30_black_24dp.xml │ │ │ ├── ic_battery_50_black_24dp.xml │ │ │ ├── ic_battery_60_black_24dp.xml │ │ │ ├── ic_battery_80_black_24dp.xml │ │ │ ├── ic_battery_90_black_24dp.xml │ │ │ └── ic_battery_full_black_24dp.xml │ │ ├── com.google.android.apps.messaging │ │ └── res │ │ │ └── drawable-anydpi │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ ├── comms_gm_ic_videocam_vd_theme_24.xml │ │ │ ├── ic_chat_white_24.xml │ │ │ ├── ic_compose_camera_gallery_selected_v2.xml │ │ │ ├── ic_compose_camera_gallery_selected_v3.xml │ │ │ ├── ic_compose_camera_gallery_unselected_v2.xml │ │ │ ├── ic_compose_camera_gallery_unselected_v3.xml │ │ │ ├── ic_compose_emoji_gallery_selected.xml │ │ │ ├── ic_compose_emoji_gallery_unselected.xml │ │ │ ├── ic_compose_plus_selected_v2.xml │ │ │ ├── ic_compose_plus_unselected_v2.xml │ │ │ ├── ic_compose_send.xml │ │ │ ├── ic_duo_outline_vd_theme_24.xml │ │ │ ├── ic_duo_vd_theme_24.xml │ │ │ ├── ic_duo_voice_call_outline_vd_theme_24.xml │ │ │ ├── ic_duo_voice_call_vd_theme_24.xml │ │ │ ├── ic_privacy_advisor_icon.xml │ │ │ ├── quantum_gm_ic_android_messages_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_archive_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_arrow_back_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_brightness_4_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_delete_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_delete_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_devices_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_do_not_disturb_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_feedback_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_help_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_manage_accounts_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_menu_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_no_accounts_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_person_add_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_photo_library_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_schedule_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_search_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_settings_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_star_border_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_star_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_star_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_unarchive_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_unpin_vd_theme_24.xml │ │ │ ├── quantum_ic_alarm_vd_theme_24.xml │ │ │ ├── quantum_ic_arrow_back_vd_theme_24.xml │ │ │ ├── quantum_ic_help_vd_theme_24.xml │ │ │ ├── quantum_ic_search_24.xml │ │ │ ├── quantum_ic_search_vd_theme_24.xml │ │ │ ├── quantum_ic_watch_later_vd_theme_24.xml │ │ │ ├── tinted_ic_chat.xml │ │ │ ├── tinted_ic_phone_24.xml │ │ │ ├── tinted_quantum_gm_ic_keep_pin_outline_24.xml │ │ │ ├── tinted_quantum_ic_content_copy_black_24.xml │ │ │ ├── tinted_quantum_ic_delete_black_24.xml │ │ │ ├── tinted_quantum_ic_help_outline_24.xml │ │ │ └── tinted_quantum_ic_search_24.xml │ │ ├── com.google.android.apps.wellbeing │ │ ├── attention │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type1a │ │ ├── type1a_(Icon_Color)_Follow_Accent.xml │ │ ├── type1a_(Icon_Color)_Follow_System_[Inverse].xml │ │ ├── type1b │ │ ├── type1b_(Shape)_Circle.xml │ │ ├── type1b_(Shape)_Rounded_Square.xml │ │ ├── type1b_(Shape)_Square.xml │ │ ├── type2 │ │ ├── type2_(Aurora)_Gradient_Fill │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Aurora)_Gradient_Outline │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Aurora)_Kinda_Neumorph │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Aurora)_Minimal_AF │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Bubble)_No_Config │ │ │ ├── drawable-anydpi │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ └── drawable-night-anydpi │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ ├── type2_(Bubble_v2)_No_Config │ │ │ ├── drawable-anydpi │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ │ └── drawable-night-anydpi │ │ │ │ └── ic_digital_wellbeing_settings_default.xml │ │ ├── type2_(FaintUI)_Gradient_Fill │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(FaintUI)_Gradient_Outline │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(FaintUI)_Kinda_Neumorph │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(FaintUI)_Minimal_AF │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Gradient_Fill_[A11+] │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Gradient_Outline_[A11+] │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Kinda_Neumorph_[A11+] │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Minimal_AF_[A11+] │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Gradient_Fill │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Gradient_Outline │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Kinda_Neumorph │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Minimal_AF │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Plumpy)_Gradient_Fill │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Plumpy)_Gradient_Outline │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Plumpy)_Kinda_Neumorph │ │ │ ├── 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 │ │ │ │ └── AnotherTheme.xml │ │ └── type2_(Plumpy)_Minimal_AF │ │ │ ├── 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 │ │ │ └── AnotherTheme.xml │ │ ├── com.google.android.apps.youtube.music │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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.contacts │ │ └── res │ │ │ └── drawable-anydpi │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ ├── comms_gm_ic_dialer_sip_vd_theme_24.xml │ │ │ ├── comms_gm_ic_videocam_vd_theme_24.xml │ │ │ ├── gs_build_fill1_vd_theme_24.xml │ │ │ ├── gs_build_vd_theme_24.xml │ │ │ ├── ic_add_circle_24dp.xml │ │ │ ├── ic_add_contact_shortcut.xml │ │ │ ├── ic_camera_18px_obake_icon_12px.xml │ │ │ ├── ic_phone_white_24px.xml │ │ │ ├── material_ic_edit_black_24dp.xml │ │ │ ├── quantum_gm_ic_add_a_photo_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_add_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_arrow_back_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_auto_fix_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_block_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_business_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_call_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_camera_roll_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_cloud_download_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_cloud_off_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_cloud_upload_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_cloud_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_content_copy_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_create_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_delete_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_directions_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_edit_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_email_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_emergency_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_event_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_feedback_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_file_download_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_file_upload_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_group_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_group_work_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_help_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_label_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_link_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_manage_accounts_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_menu_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_message_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_note_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_people_alt_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_people_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_person_add_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_person_filled_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_person_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_phone_alt_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_phone_android_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_photo_camera_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_photo_library_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_place_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_search_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_settings_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_share_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_sim_card_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_smartphone_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_star_border_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_star_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_view_agenda_vd_theme_24.xml │ │ │ ├── quantum_ic_arrow_back_vd_theme_24.xml │ │ │ └── quantum_ic_cloud_off_vd_theme_24.xml │ │ ├── com.google.android.deskclock │ │ └── res │ │ │ └── drawable-anydpi │ │ │ ├── avd_tab_alarm_white_24dp.xml │ │ │ ├── avd_tab_bedtime_white_24dp.xml │ │ │ ├── avd_tab_clock_white_24dp.xml │ │ │ ├── avd_tab_stopwatch_white_24dp.xml │ │ │ ├── avd_tab_timer_white_24dp.xml │ │ │ ├── ic_add_circle_outline.xml │ │ │ ├── ic_alarm_off_white_24dp.xml │ │ │ ├── ic_alarm_white_24dp.xml │ │ │ ├── ic_clock_black_24dp.xml │ │ │ ├── ic_keyboard_black_24dp.xml │ │ │ ├── ic_new_timer.xml │ │ │ ├── ic_pause_white_24dp.xml │ │ │ ├── ic_stopwatch.xml │ │ │ ├── ic_stopwatch_white_24dp.xml │ │ │ ├── ic_tab_alarm_white_24dp.xml │ │ │ ├── ic_tab_bedtime_white_24dp.xml │ │ │ ├── ic_tab_clock_white_24dp.xml │ │ │ ├── ic_tab_stopwatch_white_24dp.xml │ │ │ ├── ic_tab_timer_white_24dp.xml │ │ │ ├── ic_timer_black.xml │ │ │ ├── quantum_gm_ic_add_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_alarm_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_backspace_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_delete_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_label_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_notifications_active_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_pause_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_play_arrow_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_play_circle_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_restart_alt_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_timer_white_18.xml │ │ │ ├── quantum_gm_ic_vibration_vd_theme_24.xml │ │ │ ├── quantum_ic_pause_vd_theme_24.xml │ │ │ └── quantum_ic_play_arrow_vd_theme_24.xml │ │ ├── com.google.android.dialer │ │ └── res │ │ │ └── drawable-anydpi │ │ │ ├── comms_gm_ic_add_call_vd_theme_24.xml │ │ │ ├── comms_gm_ic_block_vd_theme_24.xml │ │ │ ├── comms_gm_ic_call_end_vd_theme_24.xml │ │ │ ├── comms_gm_ic_call_recording_vd_theme_24.xml │ │ │ ├── comms_gm_ic_duo_vd_theme_24.xml │ │ │ ├── comms_gm_ic_phone_in_talk_vd_theme_24.xml │ │ │ ├── comms_gm_ic_phone_paused_vd_theme_24.xml │ │ │ ├── comms_gm_ic_phone_vd_theme_24.xml │ │ │ ├── comms_gm_ic_unblock_vd_theme_24.xml │ │ │ ├── comms_gm_ic_videocam_off_vd_theme_24.xml │ │ │ ├── comms_gm_ic_videocam_one_way_vd_theme_24.xml │ │ │ ├── comms_gm_ic_videocam_vd_theme_24.xml │ │ │ ├── comms_gm_ic_videocam_wifi_vd_theme_24.xml │ │ │ ├── comms_gm_ic_wifi_calling_vd_theme_24.xml │ │ │ ├── comms_ic_stop_circle_filled_vd_theme_24.xml │ │ │ ├── comms_ic_voicemail_error_color_24.xml │ │ │ ├── ic_clock_black_24dp.xml │ │ │ ├── ic_duo_outline_vd_theme_24.xml │ │ │ ├── ic_duo_vd_theme_24.xml │ │ │ ├── ic_duo_voice_call_outline_vd_theme_24.xml │ │ │ ├── ic_duo_voice_call_vd_theme_24.xml │ │ │ ├── ic_flip_camera_android_vd_theme_24.xml │ │ │ ├── ic_ongoing_phone_24px_01.xml │ │ │ ├── ic_ongoing_phone_24px_02.xml │ │ │ ├── ic_ongoing_phone_24px_03.xml │ │ │ ├── ic_ongoing_phone_24px_04.xml │ │ │ ├── ic_ongoing_phone_24px_05.xml │ │ │ ├── ic_ongoing_phone_24px_06.xml │ │ │ ├── ic_ongoing_phone_24px_07.xml │ │ │ ├── ic_ongoing_phone_24px_08.xml │ │ │ ├── ic_ongoing_phone_24px_09.xml │ │ │ ├── icon_call_recording.xml │ │ │ ├── quantum_gm_ic_access_time_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_accessibility_new_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_archive_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_arrow_back_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_backspace_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_bluetooth_audio_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_call_made_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_call_merge_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_call_missed_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_call_received_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_call_split_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_chat_bubble_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_clear_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_content_copy_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_delete_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_edit_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_error_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_exit_to_app_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_feedback_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_format_list_bulleted_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_history_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_info_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_info_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_location_on_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_message_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_mic_none_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_mic_off_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_not_interested_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_pause_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_people_alt_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_people_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_person_add_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_person_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_phone_missed_white_24.xml │ │ │ ├── quantum_gm_ic_query_builder_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_report_off_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_report_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_search_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_send_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_star_outline_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_star_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_unarchive_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_voicemail_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_volume_down_vd_theme_24.xml │ │ │ ├── quantum_gm_ic_volume_up_vd_theme_24.xml │ │ │ ├── quantum_ic_call_end_vd_theme_24.xml │ │ │ ├── quantum_ic_call_end_white_24.xml │ │ │ ├── quantum_ic_close_vd_theme_24.xml │ │ │ ├── quantum_ic_duo_outline_vd_theme_24.xml │ │ │ ├── quantum_ic_message_vd_theme_24.xml │ │ │ ├── quantum_ic_people_vd_theme_24.xml │ │ │ ├── quantum_ic_person_add_vd_theme_24.xml │ │ │ ├── quantum_ic_phone_in_talk_vd_theme_24.xml │ │ │ ├── quantum_ic_phone_locked_vd_theme_24.xml │ │ │ ├── quantum_ic_phone_locked_white_24.xml │ │ │ ├── quantum_ic_phone_missed_vd_theme_24.xml │ │ │ ├── quantum_ic_phone_missed_white_24.xml │ │ │ ├── quantum_ic_phone_paused_vd_theme_24.xml │ │ │ ├── quantum_ic_phone_paused_white_24.xml │ │ │ ├── quantum_ic_phone_vd_theme_24.xml │ │ │ ├── quantum_ic_phone_white_24.xml │ │ │ ├── quantum_ic_play_arrow_vd_theme_24.xml │ │ │ ├── quantum_ic_videocam_vd_theme_24.xml │ │ │ ├── quantum_ic_videocam_white_24.xml │ │ │ ├── quantum_ic_voicemail_vd_theme_24.xml │ │ │ ├── quantum_ic_voicemail_white_24.xml │ │ │ ├── quantum_ic_volume_up_vd_theme_24.xml │ │ │ ├── quantum_ic_watch_later_vd_theme_24.xml │ │ │ ├── quantum_ic_wifi_calling_vd_theme_24.xml │ │ │ └── quantum_ic_wifi_calling_white_24.xml │ │ ├── com.google.android.gms │ │ ├── attention │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type1a │ │ ├── type1a_(Icon_Color)_Follow_Accent.xml │ │ ├── type1a_(Icon_Color)_Follow_System_[Inverse].xml │ │ ├── type1b │ │ ├── type1b_(Shape)_Circle.xml │ │ ├── type1b_(Shape)_Rounded_Square.xml │ │ ├── type1b_(Shape)_Square.xml │ │ ├── type2 │ │ ├── type2_(Aurora)_Gradient_Fill │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Aurora)_Gradient_Outline │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Aurora)_Kinda_Neumorph │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Aurora)_Minimal_AF │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Bubble)_No_Config │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ └── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ ├── type2_(Bubble_v2)_No_Config │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ └── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ ├── type2_(FaintUI)_Gradient_Fill │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(FaintUI)_Gradient_Outline │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(FaintUI)_Kinda_Neumorph │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(FaintUI)_Minimal_AF │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Gradient_Fill_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Gradient_Outline_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Kinda_Neumorph_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Gradicon)_Minimal_AF_[A11+] │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Gradient_Fill │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Gradient_Outline │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Kinda_Neumorph │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Lorn)_Minimal_AF │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Plumpy)_Gradient_Fill │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Plumpy)_Gradient_Outline │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2_(Plumpy)_Kinda_Neumorph │ │ │ ├── drawable-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ └── type2_(Plumpy)_Minimal_AF │ │ │ ├── drawable-anydpi │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night-anydpi │ │ │ └── googleg_icon_24.xml │ │ │ ├── drawable-night │ │ │ └── icon_bg.xml │ │ │ ├── drawable │ │ │ └── icon_bg.xml │ │ │ └── values │ │ │ └── AnotherTheme.xml │ │ ├── com.google.android.youtube │ │ ├── attention │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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 │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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 │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── drawable-anydpi │ │ │ │ ├── status_close.xml │ │ │ │ ├── status_ff.xml │ │ │ │ ├── status_icon2.xml │ │ │ │ ├── status_icon_pause.xml │ │ │ │ ├── status_pause.xml │ │ │ │ ├── status_play.xml │ │ │ │ └── status_rw.xml │ │ ├── type2_(Icons)_FaintUI │ │ │ └── drawable-anydpi │ │ │ │ ├── status_close.xml │ │ │ │ ├── status_ff.xml │ │ │ │ ├── status_icon2.xml │ │ │ │ ├── status_icon_pause.xml │ │ │ │ ├── status_pause.xml │ │ │ │ ├── status_play.xml │ │ │ │ └── status_rw.xml │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── drawable-anydpi │ │ │ │ ├── status_close.xml │ │ │ │ ├── status_ff.xml │ │ │ │ ├── status_icon2.xml │ │ │ │ ├── status_icon_pause.xml │ │ │ │ ├── status_pause.xml │ │ │ │ ├── status_play.xml │ │ │ │ └── status_rw.xml │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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 │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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 │ │ ├── com.vanced.android.apps.youtube.music │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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.vanced.android.youtube │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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 │ │ ├── in.krosbits.musicolet │ │ ├── res │ │ │ └── values │ │ │ │ └── AnotherTheme.xml │ │ ├── type2 │ │ ├── type2_(Icons)_Aurora │ │ │ └── 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 │ │ ├── type2_(Icons)_FaintUI │ │ │ └── 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 │ │ ├── type2_(Icons)_Gradicon_[A11+] │ │ │ └── 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 │ │ └── type2_(Icons)_Plumpy │ │ │ └── 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 │ │ └── projekt.substratum.lite │ │ └── res │ │ ├── drawable-night │ │ ├── fab_menu_compile_enable.xml │ │ ├── fab_menu_compile_update.xml │ │ ├── fab_menu_disable.xml │ │ ├── fab_menu_enable.xml │ │ ├── fab_menu_enable_disable.xml │ │ ├── fab_menu_uninstall.xml │ │ ├── ic_fab_check.xml │ │ ├── ic_fab_save.xml │ │ ├── ic_fab_theme.xml │ │ ├── ic_manager_info.xml │ │ ├── ic_overlay_attention.xml │ │ ├── nav_drawer_manager.xml │ │ ├── nav_drawer_priorities.xml │ │ └── nav_drawer_themes.xml │ │ └── drawable │ │ ├── fab_menu_compile_enable.xml │ │ ├── fab_menu_compile_update.xml │ │ ├── fab_menu_disable.xml │ │ ├── fab_menu_enable.xml │ │ ├── fab_menu_enable_disable.xml │ │ ├── fab_menu_uninstall.xml │ │ ├── ic_fab_check.xml │ │ ├── ic_fab_save.xml │ │ ├── ic_fab_theme.xml │ │ ├── ic_manager_info.xml │ │ ├── ic_overlay_attention.xml │ │ ├── nav_drawer_manager.xml │ │ ├── nav_drawer_priorities.xml │ │ └── nav_drawer_themes.xml │ ├── ic_launcher-playstore.png │ ├── kotlin │ └── com │ │ └── drdisagree │ │ └── anothertheme │ │ ├── AdvancedConstants.kt │ │ ├── SubstratumLauncher.kt │ │ └── ThemeFunctions.kt │ └── res │ ├── drawable-night │ └── ic_logo.xml │ ├── drawable-v26 │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── drawable-xxhdpi │ └── heroimage.png │ ├── drawable │ ├── btn_bg.xml │ ├── btn_continue.xml │ ├── btn_desc.xml │ ├── dialog_bg.xml │ ├── ic_changelog.xml │ ├── ic_gallery.xml │ ├── ic_logo.xml │ ├── ic_paypal.xml │ ├── ic_playstore.xml │ ├── ic_support.xml │ ├── ic_telegram.xml │ └── ic_twitter.xml │ ├── font │ ├── baloo2bold.ttf │ ├── baloo2medium.ttf │ └── baloo2regular.ttf │ ├── layout │ └── custom_dialog.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── mipmap-mdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── mipmap-xhdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── mipmap-xxhdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher_background.png │ └── ic_launcher_foreground.png │ ├── values-night │ └── dialog_resources.xml │ └── values │ ├── antipiracy_strings.xml │ ├── dialog_resources.xml │ └── theme_configurations.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Aug 05 22:50:07 PDT 2022 2 | gradle.version=7.3.3 3 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /.gradle/checksums/md5-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.gradle/checksums/md5-checksums.bin -------------------------------------------------------------------------------- /.gradle/checksums/sha1-checksums.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.gradle/checksums/sha1-checksums.bin -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/workspace-id.txt: -------------------------------------------------------------------------------- 1 | qoyf3beovjft7lm7t3g56vsmnm -------------------------------------------------------------------------------- /.gradle/workspace-id.txt.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.gradle/workspace-id.txt.lock -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_activity_activity_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_activity_activity_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_annotation_annotation_1_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_annotation_annotation_1_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_annotation_annotation_experimental_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_annotation_annotation_experimental_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_appcompat_appcompat_1_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_2_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_appcompat_appcompat_resources_1_2_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_arch_core_core_common_2_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_cardview_cardview_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_cardview_cardview_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_collection_collection_1_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_collection_collection_1_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_2_0_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_2_0_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_2_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_2_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_core_core_1_5_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_core_core_1_5_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_customview_customview_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_customview_customview_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_documentfile_documentfile_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_documentfile_documentfile_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_1_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_1_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_dynamicanimation_dynamicanimation_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_dynamicanimation_dynamicanimation_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_fragment_fragment_1_2_5_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_fragment_fragment_1_2_5_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_legacy_legacy_support_core_utils_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_legacy_legacy_support_core_utils_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_2_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_2_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_2_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_savedstate_2_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_savedstate_2_2_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_print_print_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_print_print_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_recyclerview_recyclerview_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_recyclerview_recyclerview_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_savedstate_savedstate_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_transition_transition_1_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_transition_transition_1_2_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_1_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_1_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_viewpager2_viewpager2_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_viewpager2_viewpager2_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_billingclient_billing_2_0_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__com_android_billingclient_billing_2_0_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_annotations_28_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__com_android_support_support_annotations_28_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_anjlab_android_iab_v3_library_1_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__com_anjlab_android_iab_v3_library_1_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_github_javiersantos_PiracyChecker_1_2_5_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__com_github_javiersantos_PiracyChecker_1_2_5_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_android_material_material_1_6_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__com_google_android_material_material_1_6_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_41.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_41.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_3_41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_3_41.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jdk8_1_3_41.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jdk8_1_3_41.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/modules/AnotherTheme.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/modules/AnotherTheme.iml -------------------------------------------------------------------------------- /.idea/modules/app/AnotherTheme.app.androidTest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/modules/app/AnotherTheme.app.androidTest.iml -------------------------------------------------------------------------------- /.idea/modules/app/AnotherTheme.app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/modules/app/AnotherTheme.app.iml -------------------------------------------------------------------------------- /.idea/modules/app/AnotherTheme.app.main.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/modules/app/AnotherTheme.app.main.iml -------------------------------------------------------------------------------- /.idea/modules/app/AnotherTheme.app.unitTest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/modules/app/AnotherTheme.app.unitTest.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/README.md -------------------------------------------------------------------------------- /app/ThemerConstants.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/ThemerConstants.gradle -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/build/generated/res/resValues/debug/values/gradleResValues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/generated/res/resValues/debug/values/gradleResValues.xml -------------------------------------------------------------------------------- /app/build/generated/res/resValues/release/values/gradleResValues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/generated/res/resValues/release/values/gradleResValues.xml -------------------------------------------------------------------------------- /app/build/generated/source/buildConfig/debug/com/drdisagree/anothertheme/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/generated/source/buildConfig/debug/com/drdisagree/anothertheme/BuildConfig.java -------------------------------------------------------------------------------- /app/build/intermediates/aapt_proguard_file/release/aapt_rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/aapt_proguard_file/release/aapt_rules.txt -------------------------------------------------------------------------------- /app/build/intermediates/annotation_processor_list/release/annotationProcessors.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/release.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-af.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-am.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ar.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-as.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-as.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-az.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-b+es+419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-b+es+419.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-b+sr+Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-b+sr+Latn.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-be.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-bg.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-bn.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-bs.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ca.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-cs.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-da.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-de.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-el.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-es.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-et.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-eu.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-fa.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-fi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-fr.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-gl.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-gu.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-h320dp-port-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-h320dp-port-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-h360dp-land-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-h360dp-land-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-h480dp-land-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-h480dp-land-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-h550dp-port-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-h550dp-port-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-h720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-h720dp-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-hi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-hr.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-hu.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-hy.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-in.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-is.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-it.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-iw.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ja.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ka.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-kk.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-km.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-kn.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ko.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ky.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-land.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-large-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-large-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ldltr-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ldltr-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ldrtl-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ldrtl-v17.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-lo.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-lt.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-lv.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-mk.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ml.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-mn.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-mr.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ms.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-my.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-nb.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ne.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-night-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-night-v8.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-nl.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-or.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-pa.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-pl.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-port.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-pt.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ro.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ru.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-si.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-sk.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-sl.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-small-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-small-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-sq.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-sr.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-sv.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-sw.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-sw600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-sw600dp-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ta.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-te.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-th.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-tl.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-tr.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-uk.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-ur.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-uz.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v16.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v17.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v18.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v22.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v23.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v24.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v25.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v26.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v28.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-v31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-v31.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-vi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-w320dp-land-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-w320dp-land-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-w360dp-port-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-w360dp-port-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-w480dp-port-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-w480dp-port-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-w600dp-land-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-w600dp-land-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-watch-v20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-watch-v20.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-watch-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-watch-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-xlarge-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-xlarge-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values-zu.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/multi-v2/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/multi-v2/values.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/release/single/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/blame/res/release/single/release.json -------------------------------------------------------------------------------- /app/build/intermediates/bundle_manifest/release/bundle-manifest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/bundle_manifest/release/bundle-manifest/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/bundle_manifest/release/bundle-manifest/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/bundle_manifest/release/bundle-manifest/output.json -------------------------------------------------------------------------------- /app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/release/R.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/release/R.jar -------------------------------------------------------------------------------- /app/build/intermediates/dex/release/minifyReleaseWithR8/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/dex/release/minifyReleaseWithR8/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeReleaseAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/mergeReleaseAssets/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeReleaseResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/mergeReleaseResources/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeReleaseShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/mergeReleaseShaders/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageRelease/tmp/release/dex-renamer-state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/packageRelease/tmp/release/dex-renamer-state.txt -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/androidResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/androidResources -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/javaResources0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/packageRelease/tmp/release/zip-cache/javaResources0 -------------------------------------------------------------------------------- /app/build/intermediates/incremental/release-mergeJavaRes/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/release-mergeJavaRes/merge-state -------------------------------------------------------------------------------- /app/build/intermediates/incremental/release-mergeNativeLibs/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/incremental/release-mergeNativeLibs/merge-state -------------------------------------------------------------------------------- /app/build/intermediates/instant_app_manifest/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/instant_app_manifest/release/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/instant_app_manifest/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/instant_app_manifest/release/output.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_assets/release/out/overlays/android/type1a.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_assets/release/out/overlays/android/type1a.enc -------------------------------------------------------------------------------- /app/build/intermediates/merged_assets/release/out/overlays/android/type1b.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_assets/release/out/overlays/android/type1b.enc -------------------------------------------------------------------------------- /app/build/intermediates/merged_assets/release/out/overlays/android/type2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_assets/release/out/overlays/android/type2.enc -------------------------------------------------------------------------------- /app/build/intermediates/merged_assets/release/out/overlays/app.lawnchair/attention.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_assets/release/out/overlays/app.lawnchair/attention.enc -------------------------------------------------------------------------------- /app/build/intermediates/merged_assets/release/out/overlays/com.android.systemui/type2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_assets/release/out/overlays/com.android.systemui/type2.enc -------------------------------------------------------------------------------- /app/build/intermediates/merged_assets/release/out/overlays/com.awedea.nyx/type2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_assets/release/out/overlays/com.awedea.nyx/type2.enc -------------------------------------------------------------------------------- /app/build/intermediates/merged_assets/release/out/overlays/com.franco.kernel/type2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_assets/release/out/overlays/com.franco.kernel/type2.enc -------------------------------------------------------------------------------- /app/build/intermediates/merged_assets/release/out/overlays/com.shadow.blackhole/type2.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_assets/release/out/overlays/com.shadow.blackhole/type2.enc -------------------------------------------------------------------------------- /app/build/intermediates/merged_java_res/release/out.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_java_res/release/out.jar -------------------------------------------------------------------------------- /app/build/intermediates/merged_manifests/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/merged_manifests/release/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/metadata_feature_manifest/release/metadata-feature/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/metadata_feature_manifest/release/metadata-feature/output.json -------------------------------------------------------------------------------- /app/build/intermediates/metadata_library_dependencies_report/release/dependencies.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/metadata_library_dependencies_report/release/dependencies.pb -------------------------------------------------------------------------------- /app/build/intermediates/navigation_json/release/navigation.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /app/build/intermediates/processed_res/release/out/resources-release.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/processed_res/release/out/resources-release.ap_ -------------------------------------------------------------------------------- /app/build/intermediates/proguard-files/proguard-android-optimize.txt-4.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/proguard-files/proguard-android-optimize.txt-4.0.0 -------------------------------------------------------------------------------- /app/build/intermediates/proguard-files/proguard-android.txt-4.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/proguard-files/proguard-android.txt-4.0.0 -------------------------------------------------------------------------------- /app/build/intermediates/proguard-files/proguard-defaults.txt-4.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/proguard-files/proguard-defaults.txt-4.0.0 -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable-night_ic_logo.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable-night_ic_logo.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable-v26_ic_launcher_background.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable-v26_ic_launcher_background.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable-v26_ic_launcher_foreground.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable-v26_ic_launcher_foreground.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable-xxhdpi_heroimage.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable-xxhdpi_heroimage.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_btn_bg.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_btn_bg.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_btn_continue.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_btn_continue.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_btn_desc.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_btn_desc.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_dialog_bg.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_dialog_bg.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_ic_changelog.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_ic_changelog.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_ic_gallery.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_ic_gallery.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_ic_logo.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_ic_logo.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_ic_paypal.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_ic_paypal.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_ic_playstore.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_ic_playstore.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_ic_support.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_ic_support.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_ic_telegram.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_ic_telegram.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/drawable_ic_twitter.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/drawable_ic_twitter.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/font_baloo2bold.ttf.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/font_baloo2bold.ttf.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/font_baloo2extrabold.ttf.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/font_baloo2extrabold.ttf.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/font_baloo2medium.ttf.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/font_baloo2medium.ttf.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/font_baloo2regular.ttf.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/font_baloo2regular.ttf.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/font_baloo2semibold.ttf.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/font_baloo2semibold.ttf.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/layout_custom_dialog.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/layout_custom_dialog.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-anydpi-v26_ic_launcher.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-anydpi-v26_ic_launcher.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-anydpi-v26_ic_launcher_round.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-anydpi-v26_ic_launcher_round.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-hdpi_ic_launcher_background.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-hdpi_ic_launcher_background.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-hdpi_ic_launcher_foreground.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-hdpi_ic_launcher_foreground.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-mdpi_ic_launcher_background.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-mdpi_ic_launcher_background.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-mdpi_ic_launcher_foreground.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-mdpi_ic_launcher_foreground.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-xhdpi_ic_launcher_background.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-xhdpi_ic_launcher_background.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-xhdpi_ic_launcher_foreground.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-xhdpi_ic_launcher_foreground.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-xxhdpi_ic_launcher_background.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-xxhdpi_ic_launcher_background.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-xxhdpi_ic_launcher_foreground.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-xxhdpi_ic_launcher_foreground.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-xxxhdpi_ic_launcher_background.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-xxxhdpi_ic_launcher_background.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/mipmap-xxxhdpi_ic_launcher_foreground.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/mipmap-xxxhdpi_ic_launcher_foreground.png.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-af_values-af.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-af_values-af.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-am_values-am.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-am_values-am.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ar_values-ar.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ar_values-ar.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-as_values-as.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-as_values-as.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-az_values-az.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-az_values-az.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-b+es+419_values-b+es+419.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-b+es+419_values-b+es+419.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-be_values-be.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-be_values-be.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-bg_values-bg.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-bg_values-bg.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-bn_values-bn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-bn_values-bn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-bs_values-bs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-bs_values-bs.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ca_values-ca.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ca_values-ca.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-cs_values-cs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-cs_values-cs.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-da_values-da.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-da_values-da.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-de_values-de.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-de_values-de.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-el_values-el.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-el_values-el.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-en-rAU_values-en-rAU.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-en-rAU_values-en-rAU.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-en-rCA_values-en-rCA.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-en-rCA_values-en-rCA.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-en-rGB_values-en-rGB.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-en-rGB_values-en-rGB.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-en-rIN_values-en-rIN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-en-rIN_values-en-rIN.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-en-rXC_values-en-rXC.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-en-rXC_values-en-rXC.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-es-rUS_values-es-rUS.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-es-rUS_values-es-rUS.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-es_values-es.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-es_values-es.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-et_values-et.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-et_values-et.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-eu_values-eu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-eu_values-eu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-fa_values-fa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-fa_values-fa.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-fi_values-fi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-fi_values-fi.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-fr-rCA_values-fr-rCA.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-fr-rCA_values-fr-rCA.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-fr_values-fr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-fr_values-fr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-gl_values-gl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-gl_values-gl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-gu_values-gu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-gu_values-gu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-h720dp-v13_values-h720dp-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-h720dp-v13_values-h720dp-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-hdpi-v4_values-hdpi-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-hdpi-v4_values-hdpi-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-hi_values-hi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-hi_values-hi.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-hr_values-hr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-hr_values-hr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-hu_values-hu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-hu_values-hu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-hy_values-hy.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-hy_values-hy.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-in_values-in.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-in_values-in.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-is_values-is.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-is_values-is.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-it_values-it.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-it_values-it.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-iw_values-iw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-iw_values-iw.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ja_values-ja.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ja_values-ja.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ka_values-ka.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ka_values-ka.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-kk_values-kk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-kk_values-kk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-km_values-km.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-km_values-km.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-kn_values-kn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-kn_values-kn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ko_values-ko.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ko_values-ko.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ky_values-ky.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ky_values-ky.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-land_values-land.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-land_values-land.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-large-v4_values-large-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-large-v4_values-large-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ldltr-v21_values-ldltr-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ldltr-v21_values-ldltr-v21.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ldrtl-v17_values-ldrtl-v17.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ldrtl-v17_values-ldrtl-v17.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-lo_values-lo.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-lo_values-lo.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-lt_values-lt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-lt_values-lt.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-lv_values-lv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-lv_values-lv.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-mk_values-mk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-mk_values-mk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ml_values-ml.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ml_values-ml.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-mn_values-mn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-mn_values-mn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-mr_values-mr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-mr_values-mr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ms_values-ms.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ms_values-ms.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-my_values-my.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-my_values-my.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-nb_values-nb.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-nb_values-nb.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ne_values-ne.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ne_values-ne.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-night-v8_values-night-v8.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-night-v8_values-night-v8.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-nl_values-nl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-nl_values-nl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-or_values-or.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-or_values-or.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-pa_values-pa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-pa_values-pa.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-pl_values-pl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-pl_values-pl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-port_values-port.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-port_values-port.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-pt-rBR_values-pt-rBR.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-pt-rBR_values-pt-rBR.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-pt-rPT_values-pt-rPT.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-pt-rPT_values-pt-rPT.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-pt_values-pt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-pt_values-pt.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ro_values-ro.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ro_values-ro.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ru_values-ru.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ru_values-ru.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-si_values-si.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-si_values-si.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-sk_values-sk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-sk_values-sk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-sl_values-sl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-sl_values-sl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-small-v4_values-small-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-small-v4_values-small-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-sq_values-sq.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-sq_values-sq.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-sr_values-sr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-sr_values-sr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-sv_values-sv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-sv_values-sv.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-sw_values-sw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-sw_values-sw.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ta_values-ta.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ta_values-ta.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-te_values-te.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-te_values-te.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-th_values-th.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-th_values-th.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-tl_values-tl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-tl_values-tl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-tr_values-tr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-tr_values-tr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-uk_values-uk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-uk_values-uk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-ur_values-ur.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-ur_values-ur.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-uz_values-uz.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-uz_values-uz.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v16_values-v16.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v16_values-v16.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v17_values-v17.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v17_values-v17.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v18_values-v18.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v18_values-v18.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v21_values-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v21_values-v21.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v22_values-v22.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v22_values-v22.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v23_values-v23.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v23_values-v23.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v24_values-v24.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v24_values-v24.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v25_values-v25.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v25_values-v25.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v26_values-v26.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v26_values-v26.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v28_values-v28.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v28_values-v28.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-v31_values-v31.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-v31_values-v31.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-vi_values-vi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-vi_values-vi.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-watch-v20_values-watch-v20.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-watch-v20_values-watch-v20.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-watch-v21_values-watch-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-watch-v21_values-watch-v21.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-xlarge-v4_values-xlarge-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-xlarge-v4_values-xlarge-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-zh-rCN_values-zh-rCN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-zh-rCN_values-zh-rCN.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-zh-rHK_values-zh-rHK.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-zh-rHK_values-zh-rHK.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-zh-rTW_values-zh-rTW.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-zh-rTW_values-zh-rTW.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values-zu_values-zu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values-zu_values-zu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/release/values_values.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/res/merged/release/values_values.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/runtime_symbol_list/release/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/runtime_symbol_list/release/R.txt -------------------------------------------------------------------------------- /app/build/intermediates/sdk_dependency_data/release/sdkDependencyData.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/sdk_dependency_data/release/sdkDependencyData.pb -------------------------------------------------------------------------------- /app/build/intermediates/shrunk_java_res/release/shrunkJavaRes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/shrunk_java_res/release/shrunkJavaRes.jar -------------------------------------------------------------------------------- /app/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/build-history.bin -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`F{ -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`= -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`ƃ -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`} -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 3 2 | 0 -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`F{ -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`f -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileReleaseKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/kotlin/compileReleaseKotlin/last-build.bin -------------------------------------------------------------------------------- /app/build/outputs/logs/manifest-merger-release-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/outputs/logs/manifest-merger-release-report.txt -------------------------------------------------------------------------------- /app/build/outputs/mapping/release/mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/outputs/mapping/release/mapping.txt -------------------------------------------------------------------------------- /app/build/outputs/mapping/release/seeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/outputs/mapping/release/seeds.txt -------------------------------------------------------------------------------- /app/build/outputs/mapping/release/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/outputs/mapping/release/usage.txt -------------------------------------------------------------------------------- /app/build/outputs/sdk-dependencies/release/sdkDependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/outputs/sdk-dependencies/release/sdkDependencies.txt -------------------------------------------------------------------------------- /app/build/reports/lint-results-release-fatal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/reports/lint-results-release-fatal.html -------------------------------------------------------------------------------- /app/build/reports/lint-results-release-fatal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/reports/lint-results-release-fatal.xml -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/release/com/drdisagree/anothertheme/ThemeFunctions.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/build/tmp/kotlin-classes/release/com/drdisagree/anothertheme/ThemeFunctions.class -------------------------------------------------------------------------------- /app/debug/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/debug/output-metadata.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/AnotherTheme v2.0-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/release/AnotherTheme v2.0-release.apk -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type0.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1a: -------------------------------------------------------------------------------- 1 | ➜ For Filled Battery -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1a_Enable_Filled_Battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1a_Enable_Filled_Battery.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b: -------------------------------------------------------------------------------- 1 | ➜ Battery Icon (System Default) -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Filled)_(Landscape)_Battery_Buddy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Filled)_(Landscape)_Battery_Buddy.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Buddy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Buddy.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Gradicon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Gradicon.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Inverter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Inverter.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Love.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Love.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Plumpy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Plumpy.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Filled)_Battery_Rounded.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Landscape)_Battery_FaintUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Landscape)_Battery_FaintUI.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Landscape)_Battery_Peas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Landscape)_Battery_Peas.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Landscape_LR)_LBattery_Hyper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Landscape_LR)_LBattery_Hyper.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Landscape_LR)_LBattery_iOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Landscape_LR)_LBattery_iOS.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Landscape_LR)_RBattery_Hyper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Landscape_LR)_RBattery_Hyper.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_(Landscape_LR)_RBattery_iOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_(Landscape_LR)_RBattery_iOS.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_AiirO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_AiirO.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Aurora.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Aurora.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Capsule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Capsule.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Dual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Dual.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Forlorn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Forlorn.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Leaf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Leaf.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Pill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Pill.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Portrait_iOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Portrait_iOS.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Simple.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Unable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Unable.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_Wonder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_Wonder.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type1b_Battery_ZigZag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type1b_Battery_ZigZag.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2: -------------------------------------------------------------------------------- 1 | ➜ Choose Something -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_camera.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_clear.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_close.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_info.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_link.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_lock.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_menu.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_mic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_mic.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_phone.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_qs_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_qs_dnd.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_sleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Aurora/drawable-anydpi/ic_sleep.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_clear.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_close.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_info.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_link.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_lock.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_menu.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_mic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_mic.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_phone.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_sleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_FaintUI/drawable-anydpi/ic_sleep.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_battery.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_camera.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_clear.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_close.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_feedback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_feedback.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_info.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_link.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_location.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_lock.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_menu.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_mic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_mic.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_phone.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_qs_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_qs_dnd.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_refresh.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_restart.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_schedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_schedule.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_sleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_sleep.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_usb_48dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Lorn/drawable-anydpi/ic_usb_48dp.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_camera.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_clear.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_close.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_info.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_link.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_lock.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_menu.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_mic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_mic.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_phone.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_qs_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_qs_dnd.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_sleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/android/type2_(Icons)_Plumpy/drawable-anydpi/ic_sleep.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/attention: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/attention -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_about.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_allapps_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_allapps_search.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_app_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_app_drawer.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_clear_all_recents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_clear_all_recents.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_discord.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_dock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_dock.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_edit.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_empty_recents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_empty_recents.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_folder.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_general.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_general.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_github.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_gm_close_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_gm_close_24.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_help.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_home_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_home_screen.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_info_no_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_info_no_shadow.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_lens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_lens.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_lock.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_lock_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_lock_open.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_new_releases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_new_releases.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_palette.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_qsb_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_qsb_search.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_quickstep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_quickstep.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_remove_no_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_remove_no_shadow.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_screenshot.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_setting.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_share.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_smartspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_smartspace.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_split_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_split_screen.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_twitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_twitter.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_wallpaper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_wallpaper.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_warning.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.lawnchair/res/drawable-anydpi/ic_widget.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.revanced.android.apps.youtube.music/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.revanced.android.youtube/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/app.revanced.android.youtube/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/app.revanced.android.youtube/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/code.name.monkey.retromusic/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/code.name.monkey.retromusic/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/code.name.monkey.retromusic/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.settings.icons/attention: -------------------------------------------------------------------------------- 1 | !!! For Android 12+ Only !!! -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.settings.icons/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.android.settings.icons/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.settings.icons/type1a: -------------------------------------------------------------------------------- 1 | ➜ (Icon Color) Follow System -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.settings.icons/type1b: -------------------------------------------------------------------------------- 1 | ➜ (Shape) Follow System Roundness -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.settings.icons/type1b_(Shape)_Circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.android.settings.icons/type1b_(Shape)_Circle.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.settings.icons/type1b_(Shape)_Square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.android.settings.icons/type1b_(Shape)_Square.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.settings.icons/type2: -------------------------------------------------------------------------------- 1 | ➜ (Important) Choose Something -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui.navbars/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.android.systemui.navbars/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui.navbars/type2: -------------------------------------------------------------------------------- 1 | ➜ Choose Something -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui.statusbars/type1a: -------------------------------------------------------------------------------- 1 | ➜ Battery Size Fix -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui.statusbars/type1b: -------------------------------------------------------------------------------- 1 | ➜ Optional Tweaks -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui.statusbars/type2: -------------------------------------------------------------------------------- 1 | ➜ Choose Something -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui.tiles/type1a: -------------------------------------------------------------------------------- 1 | ➜ QS Tile Size and Color -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui.tiles/type1b: -------------------------------------------------------------------------------- 1 | ➜ QS Panel Row & Column -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui/attention: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.android.systemui/attention -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.android.systemui/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui/type0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.android.systemui/type0.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui/type1a: -------------------------------------------------------------------------------- 1 | ➜ Filled Battery Color -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.android.systemui/type2: -------------------------------------------------------------------------------- 1 | ➜ Choose Something -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.awedea.nyx/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.awedea.nyx/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.awedea.nyx/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.franco.kernel/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.franco.kernel/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.franco.kernel/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.apps.wellbeing/attention: -------------------------------------------------------------------------------- 1 | !!! For Android 12+ Only !!! -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.apps.wellbeing/type1a: -------------------------------------------------------------------------------- 1 | ➜ (Icon Color) Follow System -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.apps.wellbeing/type1b: -------------------------------------------------------------------------------- 1 | ➜ (Shape) Follow System Roundness -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.apps.wellbeing/type2: -------------------------------------------------------------------------------- 1 | ➜ (Important) Choose Something -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.apps.youtube.music/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.gms/attention: -------------------------------------------------------------------------------- 1 | !!! For Android 12+ Only !!! -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.gms/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.google.android.gms/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.gms/type1a: -------------------------------------------------------------------------------- 1 | ➜ (Icon Color) Follow System -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.gms/type1b: -------------------------------------------------------------------------------- 1 | ➜ (Shape) Follow System Roundness -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.gms/type1b_(Shape)_Circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.google.android.gms/type1b_(Shape)_Circle.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.gms/type1b_(Shape)_Rounded_Square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.google.android.gms/type1b_(Shape)_Rounded_Square.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.gms/type1b_(Shape)_Square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.google.android.gms/type1b_(Shape)_Square.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.gms/type2: -------------------------------------------------------------------------------- 1 | ➜ (Important) Choose Something -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.youtube/attention: -------------------------------------------------------------------------------- 1 | !!! Install or Update YouTube from APKMirror with Non-Bundle version !!! -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.youtube/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.google.android.youtube/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.google.android.youtube/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.kapp.youtube.final/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.kapp.youtube.final/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.kapp.youtube.final/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.maxmpz.audioplayer/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.maxmpz.audioplayer/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.maxmpz.audioplayer/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.shadow.blackhole/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.shadow.blackhole/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.shadow.blackhole/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.vanced.android.apps.youtube.music/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.vanced.android.youtube/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/com.vanced.android.youtube/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/com.vanced.android.youtube/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/in.krosbits.musicolet/res/values/AnotherTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/in.krosbits.musicolet/res/values/AnotherTheme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/in.krosbits.musicolet/type2: -------------------------------------------------------------------------------- 1 | ➜ Default is Nothing -------------------------------------------------------------------------------- /app/src/main/assets/overlays/projekt.substratum.lite/res/drawable-night/ic_fab_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/projekt.substratum.lite/res/drawable-night/ic_fab_save.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/fab_menu_disable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/fab_menu_disable.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/fab_menu_enable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/fab_menu_enable.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/ic_fab_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/ic_fab_check.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/ic_fab_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/ic_fab_save.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/ic_fab_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/ic_fab_theme.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/ic_manager_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/ic_manager_info.xml -------------------------------------------------------------------------------- /app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/nav_drawer_themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/assets/overlays/projekt.substratum.lite/res/drawable/nav_drawer_themes.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/com/drdisagree/anothertheme/AdvancedConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/kotlin/com/drdisagree/anothertheme/AdvancedConstants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/drdisagree/anothertheme/SubstratumLauncher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/kotlin/com/drdisagree/anothertheme/SubstratumLauncher.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/drdisagree/anothertheme/ThemeFunctions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/kotlin/com/drdisagree/anothertheme/ThemeFunctions.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/ic_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable-night/ic_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v26/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable-v26/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v26/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable-v26/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/heroimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable-xxhdpi/heroimage.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/btn_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_continue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/btn_continue.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/btn_desc.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/dialog_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/dialog_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/ic_changelog.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/ic_gallery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/ic_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/ic_paypal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_playstore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/ic_playstore.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/ic_support.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_telegram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/ic_telegram.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_twitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/drawable/ic_twitter.xml -------------------------------------------------------------------------------- /app/src/main/res/font/baloo2bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/font/baloo2bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/baloo2medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/font/baloo2medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/baloo2regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/font/baloo2regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/custom_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/layout/custom_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/values-night/dialog_resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/values-night/dialog_resources.xml -------------------------------------------------------------------------------- /app/src/main/res/values/antipiracy_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/values/antipiracy_strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dialog_resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/values/dialog_resources.xml -------------------------------------------------------------------------------- /app/src/main/res/values/theme_configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/app/src/main/res/values/theme_configurations.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahmud0808/AnotherTheme/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' --------------------------------------------------------------------------------