├── .gitignore ├── Android.bp ├── NOTICE ├── bootanimation ├── 720 │ └── bootanimation.zip ├── 1080 │ └── bootanimation.zip ├── 1440 │ └── bootanimation.zip ├── 2160 │ └── bootanimation.zip └── bootanimation.mk ├── extensions └── framework │ ├── Android.bp │ ├── AndroidManifest.xml │ ├── res │ ├── drawable │ │ ├── ic_custom_seekbar_minus.xml │ │ ├── ic_custom_seekbar_plus.xml │ │ └── ic_custom_seekbar_reset.xml │ ├── layout │ │ └── preference_custom_seekbar.xml │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ └── strings.xml │ └── src │ └── co │ └── aospa │ └── framework │ └── preference │ ├── CustomSeekBarPreference.java │ ├── GlobalSettingSwitchPreference.java │ ├── GlobalSettingsStore.java │ ├── SecureSettingSwitchPreference.java │ ├── SecureSettingsStore.java │ ├── SystemSettingSwitchPreference.java │ └── SystemSettingsStore.java ├── fonts ├── GoogleSansClock-Regular.ttf ├── HarmonyOS-Sans-Italic.ttf ├── HarmonyOS-Sans.ttf ├── InterVariable-Italic.ttf ├── InterVariable.ttf ├── Linotte.ttf ├── Manrope-VF.ttf ├── OPSans-En-Regular.ttf ├── OppoSans-En-Regular.ttf └── Urbanist-VF.ttf ├── interfaces ├── biometrics │ └── face │ │ └── aidl │ │ ├── Android.bp │ │ └── src │ │ └── vendor │ │ └── aospa │ │ └── biometrics │ │ └── face │ │ ├── ISenseService.aidl │ │ └── ISenseServiceReceiver.aidl ├── health │ ├── Android.bp │ ├── aidl_api │ │ └── vendor.lineage.health │ │ │ ├── 1 │ │ │ ├── .hash │ │ │ └── vendor │ │ │ │ └── lineage │ │ │ │ └── health │ │ │ │ ├── ChargingControlSupportedMode.aidl │ │ │ │ └── IChargingControl.aidl │ │ │ └── current │ │ │ └── vendor │ │ │ └── lineage │ │ │ └── health │ │ │ ├── ChargingControlSupportedMode.aidl │ │ │ └── IChargingControl.aidl │ ├── default │ │ ├── .clang-format │ │ ├── Android.bp │ │ ├── ChargingControl.cpp │ │ ├── ChargingControl.h │ │ ├── service.cpp │ │ ├── vendor.lineage.health-service.default.rc │ │ └── vendor.lineage.health-service.default.xml │ └── vendor │ │ └── lineage │ │ └── health │ │ ├── ChargingControlSupportedMode.aidl │ │ └── IChargingControl.aidl ├── power │ ├── Android.bp │ ├── aidl_api │ │ └── vendor.aospa.power │ │ │ ├── 1 │ │ │ ├── .hash │ │ │ └── vendor │ │ │ │ └── aospa │ │ │ │ └── power │ │ │ │ ├── Feature.aidl │ │ │ │ └── IPowerFeature.aidl │ │ │ └── current │ │ │ └── vendor │ │ │ └── aospa │ │ │ └── power │ │ │ ├── Feature.aidl │ │ │ └── IPowerFeature.aidl │ ├── default │ │ ├── Android.bp │ │ ├── PowerFeature.cpp │ │ ├── PowerFeature.h │ │ ├── main.cpp │ │ ├── vendor.aospa.power-service.rc │ │ └── vendor.aospa.power.xml │ └── vendor │ │ └── aospa │ │ └── power │ │ ├── Feature.aidl │ │ └── IPowerFeature.aidl ├── powershare │ ├── Android.bp │ ├── aidl_api │ │ └── vendor.aospa.powershare │ │ │ ├── 1 │ │ │ ├── .hash │ │ │ └── vendor │ │ │ │ └── aospa │ │ │ │ └── powershare │ │ │ │ └── IPowerShare.aidl │ │ │ └── current │ │ │ └── vendor │ │ │ └── aospa │ │ │ └── powershare │ │ │ └── IPowerShare.aidl │ ├── default │ │ ├── Android.bp │ │ ├── PowerShare.cpp │ │ ├── PowerShare.h │ │ ├── main.cpp │ │ ├── vendor.aospa.powershare-service.rc │ │ └── vendor.aospa.powershare-service.xml │ └── vendor │ │ └── aospa │ │ └── powershare │ │ └── IPowerShare.aidl ├── qcom │ ├── Android.bp │ ├── bluetooth_audio │ │ └── 1.0 │ │ │ ├── Android.bp │ │ │ ├── IBluetoothAudio.hal │ │ │ ├── IBluetoothAudioCallbacks.hal │ │ │ └── types.hal │ ├── btconfigstore │ │ ├── 1.0 │ │ │ ├── Android.bp │ │ │ ├── IBTConfigStore.hal │ │ │ └── types.hal │ │ └── 2.0 │ │ │ ├── Android.bp │ │ │ ├── IBTConfigStore.hal │ │ │ └── types.hal │ ├── capabilityconfigstore │ │ └── 1.0 │ │ │ ├── Android.bp │ │ │ ├── ICapabilityConfigStore.hal │ │ │ └── types.hal │ ├── cryptfshw │ │ └── 1.0 │ │ │ ├── Android.bp │ │ │ ├── ICryptfsHw.hal │ │ │ └── default │ │ │ ├── Android.bp │ │ │ └── CryptfsHw.h │ ├── current.txt │ └── fm │ │ ├── 1.0 │ │ ├── Android.bp │ │ ├── IFmHci.hal │ │ ├── IFmHciCallbacks.hal │ │ └── types.hal │ │ └── aidl │ │ ├── Android.bp │ │ ├── aidl_api │ │ └── vendor.qti.hardware.fm │ │ │ ├── 1 │ │ │ ├── .hash │ │ │ └── vendor │ │ │ │ └── qti │ │ │ │ └── hardware │ │ │ │ └── fm │ │ │ │ ├── IFmHci.aidl │ │ │ │ ├── IFmHciCallbacks.aidl │ │ │ │ └── Status.aidl │ │ │ └── current │ │ │ └── vendor │ │ │ └── qti │ │ │ └── hardware │ │ │ └── fm │ │ │ ├── IFmHci.aidl │ │ │ ├── IFmHciCallbacks.aidl │ │ │ └── Status.aidl │ │ └── vendor │ │ └── qti │ │ └── hardware │ │ └── fm │ │ ├── IFmHci.aidl │ │ ├── IFmHciCallbacks.aidl │ │ └── Status.aidl ├── richtap │ ├── Android.bp │ ├── aidl_api │ │ └── vendor.aac.hardware.richtap.vibrator │ │ │ ├── 1 │ │ │ ├── .hash │ │ │ └── vendor │ │ │ │ └── aac │ │ │ │ └── hardware │ │ │ │ └── richtap │ │ │ │ └── vibrator │ │ │ │ ├── IRichtapCallback.aidl │ │ │ │ └── IRichtapVibrator.aidl │ │ │ ├── 2 │ │ │ ├── .hash │ │ │ └── vendor │ │ │ │ └── aac │ │ │ │ └── hardware │ │ │ │ └── richtap │ │ │ │ └── vibrator │ │ │ │ ├── IRichtapCallback.aidl │ │ │ │ └── IRichtapVibrator.aidl │ │ │ └── current │ │ │ └── vendor │ │ │ └── aac │ │ │ └── hardware │ │ │ └── richtap │ │ │ └── vibrator │ │ │ ├── IRichtapCallback.aidl │ │ │ └── IRichtapVibrator.aidl │ └── vendor │ │ └── aac │ │ └── hardware │ │ └── richtap │ │ └── vibrator │ │ ├── IRichtapCallback.aidl │ │ └── IRichtapVibrator.aidl └── usb │ └── 1.0 │ └── default │ ├── Android.bp │ ├── Usb.cpp │ ├── Usb.h │ ├── android.hardware.usb@1.0-service.basic.rc │ ├── android.hardware.usb@1.0-service.basic.xml │ └── service.cpp ├── overlay ├── AOSPABlackThemeOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── color-night │ │ └── surface_header_dark_sysui.xml │ │ └── values-night │ │ └── colors.xml ├── AOSPAFrameworksOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-nodpi │ │ └── default_wallpaper.jpg │ │ ├── values-mcc404 │ │ └── config.xml │ │ ├── values-mcc405 │ │ └── config.xml │ │ ├── values-mcc460 │ │ └── config.xml │ │ └── values │ │ ├── config.xml │ │ └── dimens.xml ├── AOSPAImmersiveNavigationOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── values-land │ │ └── dimens.xml │ │ └── values │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── strings.xml ├── AOSPANetworkStackOverlay │ ├── Android.bp │ ├── AndroidGoogleManifest.xml │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── AOSPAOverlayStub │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── arrays.xml │ │ └── strings.xml ├── AOSPASettingsOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── raw │ │ ├── face_education_lottie.json │ │ └── face_settings.mp4 │ │ ├── values-af │ │ └── strings.xml │ │ ├── values-am │ │ └── strings.xml │ │ ├── values-ar-rXB │ │ └── strings.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-as │ │ └── strings.xml │ │ ├── values-az │ │ └── strings.xml │ │ ├── values-b+sr+Latn │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-bn │ │ └── strings.xml │ │ ├── values-bs │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-en-rAU │ │ └── strings.xml │ │ ├── values-en-rCA │ │ └── strings.xml │ │ ├── values-en-rGB │ │ └── strings.xml │ │ ├── values-en-rIN │ │ └── strings.xml │ │ ├── values-en-rXA │ │ └── strings.xml │ │ ├── values-es-rUS │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-eu │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr-rCA │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-gu │ │ └── strings.xml │ │ ├── values-hi │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-hy │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-is │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ka │ │ └── strings.xml │ │ ├── values-kk │ │ └── strings.xml │ │ ├── values-km │ │ └── strings.xml │ │ ├── values-kn │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-ky │ │ └── strings.xml │ │ ├── values-lo │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-mk │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-mn │ │ └── strings.xml │ │ ├── values-mr │ │ └── strings.xml │ │ ├── values-ms │ │ └── strings.xml │ │ ├── values-my │ │ └── strings.xml │ │ ├── values-nb │ │ └── strings.xml │ │ ├── values-ne │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-or │ │ └── strings.xml │ │ ├── values-pa │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-si │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sq │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-sw │ │ └── strings.xml │ │ ├── values-ta │ │ └── strings.xml │ │ ├── values-te │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tl │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-ur │ │ └── strings.xml │ │ ├── values-uz │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values-zu │ │ └── strings.xml │ │ └── values │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── strings.xml ├── AOSPASettingsProviderOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── defaults.xml ├── AOSPASystemUIOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── values-night │ │ └── colors.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── flags.xml ├── AOSPAThemePickerOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── override.xml ├── FontGoogleSansOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── FontHarmonySansOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── FontInterOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── FontLinotteSourceOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── FontManropeOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── FontOnePlusSansOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── FontOppoSansOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── FontUrbanistOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── IconPackCircularAndroidOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── anim │ │ ├── ic_signal_wifi_transient_animation_0.xml │ │ ├── ic_signal_wifi_transient_animation_1.xml │ │ ├── ic_signal_wifi_transient_animation_2.xml │ │ ├── ic_signal_wifi_transient_animation_3.xml │ │ └── ic_signal_wifi_transient_animation_4.xml │ │ ├── drawable │ │ ├── ic_audio_alarm.xml │ │ ├── ic_audio_alarm_mute.xml │ │ ├── ic_battery_80_24dp.xml │ │ ├── ic_bluetooth_share_icon.xml │ │ ├── ic_bluetooth_transient_animation.xml │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ ├── ic_bt_headphones_a2dp.xml │ │ ├── ic_bt_headset_hfp.xml │ │ ├── ic_bt_hearing_aid.xml │ │ ├── ic_bt_laptop.xml │ │ ├── ic_bt_misc_hid.xml │ │ ├── ic_bt_network_pan.xml │ │ ├── ic_bt_pointing_hid.xml │ │ ├── ic_corp_badge.xml │ │ ├── ic_expand_more.xml │ │ ├── ic_faster_emergency.xml │ │ ├── ic_file_copy.xml │ │ ├── ic_hotspot_transient_animation.xml │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ ├── ic_info_outline_24.xml │ │ ├── ic_lock.xml │ │ ├── ic_lock_bugreport.xml │ │ ├── ic_lock_open.xml │ │ ├── ic_lock_power_off.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_mode_edit.xml │ │ ├── ic_notifications_alerted.xml │ │ ├── ic_phone.xml │ │ ├── ic_qs_airplane.xml │ │ ├── ic_qs_auto_rotate.xml │ │ ├── ic_qs_battery_saver.xml │ │ ├── ic_qs_bluetooth.xml │ │ ├── ic_qs_dnd.xml │ │ ├── ic_qs_flashlight.xml │ │ ├── ic_qs_night_display_on.xml │ │ ├── ic_qs_ui_mode_night.xml │ │ ├── ic_restart.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_settings_bluetooth.xml │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ ├── ic_signal_location.xml │ │ ├── ic_signal_wifi_transient_animation.xml │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ ├── ic_wifi_signal_0.xml │ │ ├── ic_wifi_signal_1.xml │ │ ├── ic_wifi_signal_2.xml │ │ ├── ic_wifi_signal_3.xml │ │ ├── ic_wifi_signal_4.xml │ │ ├── perm_group_activity_recognition.xml │ │ ├── perm_group_aural.xml │ │ ├── perm_group_calendar.xml │ │ ├── perm_group_call_log.xml │ │ ├── perm_group_camera.xml │ │ ├── perm_group_contacts.xml │ │ ├── perm_group_location.xml │ │ ├── perm_group_microphone.xml │ │ ├── perm_group_phone_calls.xml │ │ ├── perm_group_sensors.xml │ │ ├── perm_group_sms.xml │ │ ├── perm_group_storage.xml │ │ └── perm_group_visual.xml │ │ └── values │ │ └── config.xml ├── IconPackCircularLauncherOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_corp.xml │ │ ├── ic_corp_off.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_hourglass_top.xml │ │ ├── ic_info_no_shadow.xml │ │ ├── ic_install_no_shadow.xml │ │ ├── ic_palette.xml │ │ ├── ic_pin.xml │ │ ├── ic_remove_no_shadow.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_select.xml │ │ ├── ic_setting.xml │ │ ├── ic_share.xml │ │ ├── ic_smartspace_preferences.xml │ │ ├── ic_split_screen.xml │ │ ├── ic_uninstall_no_shadow.xml │ │ ├── ic_warning.xml │ │ └── ic_widget.xml ├── IconPackCircularSettingsOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── drag_handle.xml │ │ ├── ic_add_24dp.xml │ │ ├── ic_airplanemode_active.xml │ │ ├── ic_android.xml │ │ ├── ic_apps.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_arrow_down_24dp.xml │ │ ├── ic_battery_charging_full.xml │ │ ├── ic_battery_status_good_24dp.xml │ │ ├── ic_battery_status_maybe_24dp.xml │ │ ├── ic_call_24dp.xml │ │ ├── ic_cancel.xml │ │ ├── ic_cast_24dp.xml │ │ ├── ic_cellular_off.xml │ │ ├── ic_chevron_right_24dp.xml │ │ ├── ic_content_copy_grey600_24dp.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_delete.xml │ │ ├── ic_devices_other.xml │ │ ├── ic_devices_other_32dp.xml │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ ├── ic_eject_24dp.xml │ │ ├── ic_expand_less.xml │ │ ├── ic_expand_more_inverse.xml │ │ ├── ic_find_in_page_24px.xml │ │ ├── ic_folder_vd_theme_24.xml │ │ ├── ic_friction_lock_closed.xml │ │ ├── ic_gray_scale_24dp.xml │ │ ├── ic_headset_24dp.xml │ │ ├── ic_help.xml │ │ ├── ic_help_actionbar.xml │ │ ├── ic_homepage_search.xml │ │ ├── ic_info_outline_24.xml │ │ ├── ic_local_movies.xml │ │ ├── ic_local_phone_24_lib.xml │ │ ├── ic_lock.xml │ │ ├── ic_media_stream.xml │ │ ├── ic_media_stream_off.xml │ │ ├── ic_network_cell.xml │ │ ├── ic_notifications.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_off_24dp.xml │ │ ├── ic_phone_info.xml │ │ ├── ic_photo_library.xml │ │ ├── ic_scan_24dp.xml │ │ ├── ic_search_24dp.xml │ │ ├── ic_settings_accent.xml │ │ ├── ic_settings_accessibility.xml │ │ ├── ic_settings_accounts.xml │ │ ├── ic_settings_backup.xml │ │ ├── ic_settings_battery_white.xml │ │ ├── ic_settings_data_usage.xml │ │ ├── ic_settings_date_time.xml │ │ ├── ic_settings_delete.xml │ │ ├── ic_settings_disable.xml │ │ ├── ic_settings_display_white.xml │ │ ├── ic_settings_enable.xml │ │ ├── ic_settings_home.xml │ │ ├── ic_settings_language.xml │ │ ├── ic_settings_location.xml │ │ ├── ic_settings_multiuser.xml │ │ ├── ic_settings_night_display.xml │ │ ├── ic_settings_open.xml │ │ ├── ic_settings_print.xml │ │ ├── ic_settings_privacy.xml │ │ ├── ic_settings_security_white.xml │ │ ├── ic_settings_sim.xml │ │ ├── ic_settings_system_dashboard_white.xml │ │ ├── ic_settings_wireless.xml │ │ ├── ic_storage.xml │ │ ├── ic_storage_white.xml │ │ ├── ic_suggestion_night_display.xml │ │ ├── ic_sync.xml │ │ ├── ic_sync_problem_24dp.xml │ │ ├── ic_system_update.xml │ │ ├── ic_videogame_vd_theme_24.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_up_24dp.xml │ │ ├── ic_vpn_key.xml │ │ └── ic_wifi_tethering.xml ├── IconPackCircularSystemUIOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_alarm.xml │ │ ├── ic_alarm_dim.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_bluetooth_connected.xml │ │ ├── ic_brightness_thumb.xml │ │ ├── ic_camera.xml │ │ ├── ic_cast.xml │ │ ├── ic_cast_connected.xml │ │ ├── ic_cast_connected_fill.xml │ │ ├── ic_close_white.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_data_saver_off.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_headset.xml │ │ ├── ic_headset_mic.xml │ │ ├── ic_hotspot.xml │ │ ├── ic_info.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_invert_colors.xml │ │ ├── ic_location.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_silence.xml │ │ ├── ic_power_low.xml │ │ ├── ic_power_saver.xml │ │ ├── ic_qs_bluetooth_connecting.xml │ │ ├── ic_qs_bluetooth_on.xml │ │ ├── ic_qs_cancel.xml │ │ ├── ic_qs_no_sim.xml │ │ ├── ic_qs_wifi_0.xml │ │ ├── ic_qs_wifi_1.xml │ │ ├── ic_qs_wifi_2.xml │ │ ├── ic_qs_wifi_3.xml │ │ ├── ic_qs_wifi_4.xml │ │ ├── ic_qs_wifi_disconnected.xml │ │ ├── ic_screenrecord.xml │ │ ├── ic_screenshot_delete.xml │ │ ├── ic_settings.xml │ │ ├── ic_settings_16dp.xml │ │ ├── ic_swap_vert.xml │ │ ├── ic_tune_black_16dp.xml │ │ ├── ic_volume_alarm.xml │ │ ├── ic_volume_alarm_mute.xml │ │ ├── ic_volume_bt_sco.xml │ │ ├── ic_volume_media.xml │ │ ├── ic_volume_media_mute.xml │ │ ├── ic_volume_odi_captions.xml │ │ ├── ic_volume_odi_captions_disabled.xml │ │ ├── ic_volume_ringer.xml │ │ ├── ic_volume_ringer_mute.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_voice.xml │ │ ├── stat_sys_camera.xml │ │ ├── stat_sys_managed_profile_status.xml │ │ ├── stat_sys_mic_none.xml │ │ └── stat_sys_vpn_ic.xml ├── IconPackCircularThemePickerOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_add_24px.xml │ │ ├── ic_close_24px.xml │ │ ├── ic_colorize_24px.xml │ │ ├── ic_delete_24px.xml │ │ ├── ic_font.xml │ │ ├── ic_nav_clock.xml │ │ ├── ic_nav_grid.xml │ │ ├── ic_nav_theme.xml │ │ ├── ic_nav_wallpaper.xml │ │ ├── ic_shapes_24px.xml │ │ ├── ic_tune.xml │ │ └── ic_wifi_24px.xml ├── IconPackFilledAndroidOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable │ │ ├── ic_audio_alarm.xml │ │ ├── ic_audio_alarm_mute.xml │ │ ├── ic_battery_80_24dp.xml │ │ ├── ic_bluetooth_share_icon.xml │ │ ├── ic_bluetooth_transient_animation.xml │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ ├── ic_bt_headphones_a2dp.xml │ │ ├── ic_bt_headset_hfp.xml │ │ ├── ic_bt_hearing_aid.xml │ │ ├── ic_bt_laptop.xml │ │ ├── ic_bt_misc_hid.xml │ │ ├── ic_bt_network_pan.xml │ │ ├── ic_bt_pointing_hid.xml │ │ ├── ic_corp_badge.xml │ │ ├── ic_expand_more.xml │ │ ├── ic_faster_emergency.xml │ │ ├── ic_file_copy.xml │ │ ├── ic_hotspot_transient_animation.xml │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ ├── ic_info_outline_24.xml │ │ ├── ic_lock.xml │ │ ├── ic_lock_bugreport.xml │ │ ├── ic_lock_open.xml │ │ ├── ic_lock_power_off.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_mode_edit.xml │ │ ├── ic_notifications_alerted.xml │ │ ├── ic_phone.xml │ │ ├── ic_qs_airplane.xml │ │ ├── ic_qs_auto_rotate.xml │ │ ├── ic_qs_battery_saver.xml │ │ ├── ic_qs_bluetooth.xml │ │ ├── ic_qs_dnd.xml │ │ ├── ic_qs_flashlight.xml │ │ ├── ic_qs_night_display_on.xml │ │ ├── ic_qs_ui_mode_night.xml │ │ ├── ic_restart.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_settings_bluetooth.xml │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ ├── ic_signal_location.xml │ │ ├── ic_signal_wifi_transient_animation.xml │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ ├── ic_wifi_signal_0.xml │ │ ├── ic_wifi_signal_1.xml │ │ ├── ic_wifi_signal_2.xml │ │ ├── ic_wifi_signal_3.xml │ │ ├── ic_wifi_signal_4.xml │ │ ├── perm_group_activity_recognition.xml │ │ ├── perm_group_aural.xml │ │ ├── perm_group_calendar.xml │ │ ├── perm_group_call_log.xml │ │ ├── perm_group_camera.xml │ │ ├── perm_group_contacts.xml │ │ ├── perm_group_location.xml │ │ ├── perm_group_microphone.xml │ │ ├── perm_group_phone_calls.xml │ │ ├── perm_group_sensors.xml │ │ ├── perm_group_sms.xml │ │ ├── perm_group_storage.xml │ │ └── perm_group_visual.xml │ │ └── values │ │ └── config.xml ├── IconPackFilledLauncherOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_corp.xml │ │ ├── ic_corp_off.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_hourglass_top.xml │ │ ├── ic_info_no_shadow.xml │ │ ├── ic_install_no_shadow.xml │ │ ├── ic_palette.xml │ │ ├── ic_pin.xml │ │ ├── ic_remove_no_shadow.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_select.xml │ │ ├── ic_setting.xml │ │ ├── ic_share.xml │ │ ├── ic_smartspace_preferences.xml │ │ ├── ic_split_screen.xml │ │ ├── ic_uninstall_no_shadow.xml │ │ ├── ic_warning.xml │ │ └── ic_widget.xml ├── IconPackFilledSettingsOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── drag_handle.xml │ │ ├── ic_add_24dp.xml │ │ ├── ic_airplanemode_active.xml │ │ ├── ic_android.xml │ │ ├── ic_apps.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_arrow_down_24dp.xml │ │ ├── ic_battery_charging_full.xml │ │ ├── ic_battery_status_good_24dp.xml │ │ ├── ic_battery_status_maybe_24dp.xml │ │ ├── ic_call_24dp.xml │ │ ├── ic_cancel.xml │ │ ├── ic_cast_24dp.xml │ │ ├── ic_cellular_off.xml │ │ ├── ic_chevron_right_24dp.xml │ │ ├── ic_content_copy_grey600_24dp.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_delete.xml │ │ ├── ic_devices_other.xml │ │ ├── ic_devices_other_32dp.xml │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ ├── ic_eject_24dp.xml │ │ ├── ic_expand_less.xml │ │ ├── ic_expand_more_inverse.xml │ │ ├── ic_find_in_page_24px.xml │ │ ├── ic_folder_vd_theme_24.xml │ │ ├── ic_friction_lock_closed.xml │ │ ├── ic_gray_scale_24dp.xml │ │ ├── ic_headset_24dp.xml │ │ ├── ic_help.xml │ │ ├── ic_help_actionbar.xml │ │ ├── ic_homepage_search.xml │ │ ├── ic_info_outline_24.xml │ │ ├── ic_local_movies.xml │ │ ├── ic_local_phone_24_lib.xml │ │ ├── ic_lock.xml │ │ ├── ic_media_stream.xml │ │ ├── ic_media_stream_off.xml │ │ ├── ic_network_cell.xml │ │ ├── ic_notifications.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_off_24dp.xml │ │ ├── ic_phone_info.xml │ │ ├── ic_photo_library.xml │ │ ├── ic_scan_24dp.xml │ │ ├── ic_search_24dp.xml │ │ ├── ic_settings_accent.xml │ │ ├── ic_settings_accessibility.xml │ │ ├── ic_settings_accounts.xml │ │ ├── ic_settings_backup.xml │ │ ├── ic_settings_battery_white.xml │ │ ├── ic_settings_data_usage.xml │ │ ├── ic_settings_date_time.xml │ │ ├── ic_settings_delete.xml │ │ ├── ic_settings_disable.xml │ │ ├── ic_settings_display_white.xml │ │ ├── ic_settings_enable.xml │ │ ├── ic_settings_home.xml │ │ ├── ic_settings_language.xml │ │ ├── ic_settings_location.xml │ │ ├── ic_settings_multiuser.xml │ │ ├── ic_settings_night_display.xml │ │ ├── ic_settings_open.xml │ │ ├── ic_settings_print.xml │ │ ├── ic_settings_privacy.xml │ │ ├── ic_settings_security_white.xml │ │ ├── ic_settings_sim.xml │ │ ├── ic_settings_system_dashboard_white.xml │ │ ├── ic_settings_wireless.xml │ │ ├── ic_storage.xml │ │ ├── ic_storage_white.xml │ │ ├── ic_suggestion_night_display.xml │ │ ├── ic_sync.xml │ │ ├── ic_sync_problem_24dp.xml │ │ ├── ic_system_update.xml │ │ ├── ic_videogame_vd_theme_24.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_up_24dp.xml │ │ ├── ic_vpn_key.xml │ │ └── ic_wifi_tethering.xml ├── IconPackFilledSystemUIOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_alarm.xml │ │ ├── ic_alarm_dim.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_bluetooth_connected.xml │ │ ├── ic_brightness_thumb.xml │ │ ├── ic_camera.xml │ │ ├── ic_cast.xml │ │ ├── ic_cast_connected.xml │ │ ├── ic_cast_connected_fill.xml │ │ ├── ic_close_white.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_data_saver_off.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_headset.xml │ │ ├── ic_headset_mic.xml │ │ ├── ic_hotspot.xml │ │ ├── ic_info.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_invert_colors.xml │ │ ├── ic_location.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_silence.xml │ │ ├── ic_power_low.xml │ │ ├── ic_power_saver.xml │ │ ├── ic_qs_bluetooth_connecting.xml │ │ ├── ic_qs_bluetooth_on.xml │ │ ├── ic_qs_cancel.xml │ │ ├── ic_qs_no_sim.xml │ │ ├── ic_qs_wifi_0.xml │ │ ├── ic_qs_wifi_1.xml │ │ ├── ic_qs_wifi_2.xml │ │ ├── ic_qs_wifi_3.xml │ │ ├── ic_qs_wifi_4.xml │ │ ├── ic_qs_wifi_disconnected.xml │ │ ├── ic_screenrecord.xml │ │ ├── ic_screenshot_delete.xml │ │ ├── ic_settings.xml │ │ ├── ic_settings_16dp.xml │ │ ├── ic_swap_vert.xml │ │ ├── ic_tune_black_16dp.xml │ │ ├── ic_volume_alarm.xml │ │ ├── ic_volume_alarm_mute.xml │ │ ├── ic_volume_bt_sco.xml │ │ ├── ic_volume_media.xml │ │ ├── ic_volume_media_mute.xml │ │ ├── ic_volume_odi_captions.xml │ │ ├── ic_volume_odi_captions_disabled.xml │ │ ├── ic_volume_ringer.xml │ │ ├── ic_volume_ringer_mute.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_voice.xml │ │ ├── stat_sys_camera.xml │ │ ├── stat_sys_managed_profile_status.xml │ │ ├── stat_sys_mic_none.xml │ │ └── stat_sys_vpn_ic.xml ├── IconPackFilledThemePickerOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_add_24px.xml │ │ ├── ic_close_24px.xml │ │ ├── ic_colorize_24px.xml │ │ ├── ic_delete_24px.xml │ │ ├── ic_font.xml │ │ ├── ic_nav_clock.xml │ │ ├── ic_nav_grid.xml │ │ ├── ic_nav_theme.xml │ │ ├── ic_nav_wallpaper.xml │ │ ├── ic_shapes_24px.xml │ │ ├── ic_tune.xml │ │ └── ic_wifi_24px.xml ├── IconPackKaiAndroidOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_audio_alarm.xml │ │ ├── ic_audio_alarm_mute.xml │ │ ├── ic_battery_80_24dp.xml │ │ ├── ic_bluetooth_share_icon.xml │ │ ├── ic_bluetooth_transient_animation.xml │ │ ├── ic_bt_headphones_a2dp.xml │ │ ├── ic_bt_headset_hfp.xml │ │ ├── ic_bt_hearing_aid.xml │ │ ├── ic_bt_laptop.xml │ │ ├── ic_bt_misc_hid.xml │ │ ├── ic_bt_network_pan.xml │ │ ├── ic_bt_pointing_hid.xml │ │ ├── ic_corp_badge.xml │ │ ├── ic_expand_more.xml │ │ ├── ic_faster_emergency.xml │ │ ├── ic_file_copy.xml │ │ ├── ic_hotspot_transient_animation.xml │ │ ├── ic_lock.xml │ │ ├── ic_lock_bugreport.xml │ │ ├── ic_lock_open.xml │ │ ├── ic_lock_power_off.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_mode_edit.xml │ │ ├── ic_notifications_alerted.xml │ │ ├── ic_phone.xml │ │ ├── ic_qs_airplane.xml │ │ ├── ic_qs_auto_rotate.xml │ │ ├── ic_qs_battery_saver.xml │ │ ├── ic_qs_bluetooth.xml │ │ ├── ic_qs_dnd.xml │ │ ├── ic_qs_flashlight.xml │ │ ├── ic_qs_night_display_on.xml │ │ ├── ic_qs_ui_mode_night.xml │ │ ├── ic_restart.xml │ │ ├── ic_rules.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_settings_bluetooth.xml │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ ├── ic_signal_location.xml │ │ ├── ic_signal_wifi_transient_animation.xml │ │ ├── ic_wifi_signal_0.xml │ │ ├── ic_wifi_signal_1.xml │ │ ├── ic_wifi_signal_2.xml │ │ ├── ic_wifi_signal_3.xml │ │ ├── ic_wifi_signal_4.xml │ │ ├── ic_work_apps_off.xml │ │ ├── perm_group_activity_recognition.xml │ │ ├── perm_group_aural.xml │ │ ├── perm_group_calendar.xml │ │ ├── perm_group_call_log.xml │ │ ├── perm_group_camera.xml │ │ ├── perm_group_contacts.xml │ │ ├── perm_group_location.xml │ │ ├── perm_group_microphone.xml │ │ ├── perm_group_phone_calls.xml │ │ ├── perm_group_sensors.xml │ │ ├── perm_group_sms.xml │ │ ├── perm_group_storage.xml │ │ └── perm_group_visual.xml ├── IconPackKaiLauncherOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_corp.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_hourglass_top.xml │ │ ├── ic_info_no_shadow.xml │ │ ├── ic_install_no_shadow.xml │ │ ├── ic_palette.xml │ │ ├── ic_pin.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_select.xml │ │ ├── ic_setting.xml │ │ ├── ic_share.xml │ │ ├── ic_smartspace_preferences.xml │ │ ├── ic_split_screen.xml │ │ ├── ic_uninstall_no_shadow.xml │ │ ├── ic_warning.xml │ │ └── ic_widget.xml ├── IconPackKaiSettingsOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── drag_handle.xml │ │ ├── ic_accessibility_generic.xml │ │ ├── ic_add_24dp.xml │ │ ├── ic_airplanemode_active.xml │ │ ├── ic_android.xml │ │ ├── ic_apps.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_arrow_down_24dp.xml │ │ ├── ic_battery_charging_full.xml │ │ ├── ic_battery_status_good_24dp.xml │ │ ├── ic_battery_status_maybe_24dp.xml │ │ ├── ic_call_24dp.xml │ │ ├── ic_cancel.xml │ │ ├── ic_cast_24dp.xml │ │ ├── ic_cellular_off.xml │ │ ├── ic_chevron_right_24dp.xml │ │ ├── ic_content_copy_grey600_24dp.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_delete.xml │ │ ├── ic_devices_other.xml │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ ├── ic_eject_24dp.xml │ │ ├── ic_expand_less.xml │ │ ├── ic_expand_more_inverse.xml │ │ ├── ic_find_in_page_24px.xml │ │ ├── ic_folder_vd_theme_24.xml │ │ ├── ic_friction_lock_closed.xml │ │ ├── ic_gray_scale_24dp.xml │ │ ├── ic_headset_24dp.xml │ │ ├── ic_help.xml │ │ ├── ic_help_actionbar.xml │ │ ├── ic_homepage_search.xml │ │ ├── ic_info_outline_24.xml │ │ ├── ic_local_movies.xml │ │ ├── ic_local_phone_24_lib.xml │ │ ├── ic_media_stream.xml │ │ ├── ic_media_stream_off.xml │ │ ├── ic_network_cell.xml │ │ ├── ic_notifications.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_off_24dp.xml │ │ ├── ic_phone_info.xml │ │ ├── ic_photo_library.xml │ │ ├── ic_restore.xml │ │ ├── ic_search_24dp.xml │ │ ├── ic_settings_accent.xml │ │ ├── ic_settings_accessibility.xml │ │ ├── ic_settings_accounts.xml │ │ ├── ic_settings_backup.xml │ │ ├── ic_settings_battery_white.xml │ │ ├── ic_settings_data_usage.xml │ │ ├── ic_settings_date_time.xml │ │ ├── ic_settings_delete.xml │ │ ├── ic_settings_disable.xml │ │ ├── ic_settings_display_white.xml │ │ ├── ic_settings_enable.xml │ │ ├── ic_settings_force_stop.xml │ │ ├── ic_settings_gestures.xml │ │ ├── ic_settings_home.xml │ │ ├── ic_settings_language.xml │ │ ├── ic_settings_location.xml │ │ ├── ic_settings_multiuser.xml │ │ ├── ic_settings_night_display.xml │ │ ├── ic_settings_open.xml │ │ ├── ic_settings_print.xml │ │ ├── ic_settings_privacy.xml │ │ ├── ic_settings_security_white.xml │ │ ├── ic_settings_sim.xml │ │ ├── ic_settings_system_dashboard_white.xml │ │ ├── ic_settings_wireless.xml │ │ ├── ic_storage.xml │ │ ├── ic_storage_white.xml │ │ ├── ic_suggestion_night_display.xml │ │ ├── ic_sync.xml │ │ ├── ic_sync_problem_24dp.xml │ │ ├── ic_system_update.xml │ │ ├── ic_videogame_vd_theme_24.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_up_24dp.xml │ │ ├── ic_vpn_key.xml │ │ └── ic_wifi_tethering.xml ├── IconPackKaiSystemUIOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── anim │ │ ├── lock_lock.xml │ │ ├── lock_scanning.xml │ │ ├── lock_to_error.xml │ │ └── lock_unlock.xml │ │ └── drawable │ │ ├── ic_alarm.xml │ │ ├── ic_alarm_dim.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_bluetooth_connected.xml │ │ ├── ic_brightness_thumb.xml │ │ ├── ic_camera.xml │ │ ├── ic_cast.xml │ │ ├── ic_cast_connected.xml │ │ ├── ic_close_white.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_data_saver_off.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_headset.xml │ │ ├── ic_headset_mic.xml │ │ ├── ic_hotspot.xml │ │ ├── ic_info.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_invert_colors.xml │ │ ├── ic_location.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_silence.xml │ │ ├── ic_power_low.xml │ │ ├── ic_power_saver.xml │ │ ├── ic_qs_bluetooth_connecting.xml │ │ ├── ic_qs_cancel.xml │ │ ├── ic_qs_no_sim.xml │ │ ├── ic_qs_wifi_0.xml │ │ ├── ic_qs_wifi_1.xml │ │ ├── ic_qs_wifi_2.xml │ │ ├── ic_qs_wifi_3.xml │ │ ├── ic_qs_wifi_4.xml │ │ ├── ic_qs_wifi_disconnected.xml │ │ ├── ic_screenrecord.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_screenshot_delete.xml │ │ ├── ic_settings.xml │ │ ├── ic_swap_vert.xml │ │ ├── ic_tune_black_16dp.xml │ │ ├── ic_volume_alarm_mute.xml │ │ ├── ic_volume_bt_sco.xml │ │ ├── ic_volume_collapse_animation.xml │ │ ├── ic_volume_expand_animation.xml │ │ ├── ic_volume_media.xml │ │ ├── ic_volume_media_mute.xml │ │ ├── ic_volume_odi_captions.xml │ │ ├── ic_volume_odi_captions_disabled.xml │ │ ├── ic_volume_ringer.xml │ │ ├── ic_volume_ringer_mute.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_voice.xml │ │ ├── stat_sys_managed_profile_status.xml │ │ ├── stat_sys_mic_none.xml │ │ └── stat_sys_vpn_ic.xml ├── IconPackKaiThemePickerOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_add_24px.xml │ │ ├── ic_close_24px.xml │ │ ├── ic_colorize_24px.xml │ │ ├── ic_font.xml │ │ ├── ic_nav_clock.xml │ │ ├── ic_nav_grid.xml │ │ ├── ic_nav_theme.xml │ │ ├── ic_nav_wallpaper.xml │ │ ├── ic_shapes_24px.xml │ │ ├── ic_tune.xml │ │ └── ic_wifi_24px.xml ├── IconPackRoundedAndroidOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable │ │ ├── ic_audio_alarm.xml │ │ ├── ic_audio_alarm_mute.xml │ │ ├── ic_battery_80_24dp.xml │ │ ├── ic_bluetooth_share_icon.xml │ │ ├── ic_bluetooth_transient_animation.xml │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ ├── ic_bt_headphones_a2dp.xml │ │ ├── ic_bt_headset_hfp.xml │ │ ├── ic_bt_hearing_aid.xml │ │ ├── ic_bt_laptop.xml │ │ ├── ic_bt_misc_hid.xml │ │ ├── ic_bt_network_pan.xml │ │ ├── ic_bt_pointing_hid.xml │ │ ├── ic_corp_badge.xml │ │ ├── ic_expand_more.xml │ │ ├── ic_faster_emergency.xml │ │ ├── ic_file_copy.xml │ │ ├── ic_hotspot_transient_animation.xml │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ ├── ic_info_outline_24.xml │ │ ├── ic_lock.xml │ │ ├── ic_lock_bugreport.xml │ │ ├── ic_lock_open.xml │ │ ├── ic_lock_power_off.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_mode_edit.xml │ │ ├── ic_notifications_alerted.xml │ │ ├── ic_phone.xml │ │ ├── ic_qs_airplane.xml │ │ ├── ic_qs_auto_rotate.xml │ │ ├── ic_qs_battery_saver.xml │ │ ├── ic_qs_bluetooth.xml │ │ ├── ic_qs_dnd.xml │ │ ├── ic_qs_flashlight.xml │ │ ├── ic_qs_night_display_on.xml │ │ ├── ic_qs_ui_mode_night.xml │ │ ├── ic_restart.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_settings_bluetooth.xml │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ ├── ic_signal_location.xml │ │ ├── ic_signal_wifi_transient_animation.xml │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ ├── ic_wifi_signal_0.xml │ │ ├── ic_wifi_signal_1.xml │ │ ├── ic_wifi_signal_2.xml │ │ ├── ic_wifi_signal_3.xml │ │ ├── ic_wifi_signal_4.xml │ │ ├── perm_group_activity_recognition.xml │ │ ├── perm_group_aural.xml │ │ ├── perm_group_calendar.xml │ │ ├── perm_group_call_log.xml │ │ ├── perm_group_camera.xml │ │ ├── perm_group_contacts.xml │ │ ├── perm_group_location.xml │ │ ├── perm_group_microphone.xml │ │ ├── perm_group_phone_calls.xml │ │ ├── perm_group_sensors.xml │ │ ├── perm_group_sms.xml │ │ ├── perm_group_storage.xml │ │ └── perm_group_visual.xml │ │ └── values │ │ └── config.xml ├── IconPackRoundedLauncherOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_corp.xml │ │ ├── ic_corp_off.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_hourglass_top.xml │ │ ├── ic_info_no_shadow.xml │ │ ├── ic_install_no_shadow.xml │ │ ├── ic_palette.xml │ │ ├── ic_pin.xml │ │ ├── ic_remove_no_shadow.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_select.xml │ │ ├── ic_setting.xml │ │ ├── ic_share.xml │ │ ├── ic_smartspace_preferences.xml │ │ ├── ic_split_screen.xml │ │ ├── ic_uninstall_no_shadow.xml │ │ ├── ic_warning.xml │ │ └── ic_widget.xml ├── IconPackRoundedSettingsOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── drag_handle.xml │ │ ├── ic_add_24dp.xml │ │ ├── ic_airplanemode_active.xml │ │ ├── ic_android.xml │ │ ├── ic_apps.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_arrow_down_24dp.xml │ │ ├── ic_battery_charging_full.xml │ │ ├── ic_battery_status_good_24dp.xml │ │ ├── ic_battery_status_maybe_24dp.xml │ │ ├── ic_call_24dp.xml │ │ ├── ic_cancel.xml │ │ ├── ic_cast_24dp.xml │ │ ├── ic_cellular_off.xml │ │ ├── ic_chevron_right_24dp.xml │ │ ├── ic_content_copy_grey600_24dp.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_delete.xml │ │ ├── ic_devices_other.xml │ │ ├── ic_devices_other_32dp.xml │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ ├── ic_eject_24dp.xml │ │ ├── ic_expand_less.xml │ │ ├── ic_expand_more_inverse.xml │ │ ├── ic_find_in_page_24px.xml │ │ ├── ic_folder_vd_theme_24.xml │ │ ├── ic_friction_lock_closed.xml │ │ ├── ic_gray_scale_24dp.xml │ │ ├── ic_headset_24dp.xml │ │ ├── ic_help.xml │ │ ├── ic_help_actionbar.xml │ │ ├── ic_homepage_search.xml │ │ ├── ic_info_outline_24.xml │ │ ├── ic_local_movies.xml │ │ ├── ic_local_phone_24_lib.xml │ │ ├── ic_lock.xml │ │ ├── ic_media_stream.xml │ │ ├── ic_media_stream_off.xml │ │ ├── ic_network_cell.xml │ │ ├── ic_notifications.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_off_24dp.xml │ │ ├── ic_phone_info.xml │ │ ├── ic_photo_library.xml │ │ ├── ic_scan_24dp.xml │ │ ├── ic_search_24dp.xml │ │ ├── ic_settings_accent.xml │ │ ├── ic_settings_accessibility.xml │ │ ├── ic_settings_accounts.xml │ │ ├── ic_settings_backup.xml │ │ ├── ic_settings_battery_white.xml │ │ ├── ic_settings_data_usage.xml │ │ ├── ic_settings_date_time.xml │ │ ├── ic_settings_delete.xml │ │ ├── ic_settings_disable.xml │ │ ├── ic_settings_display_white.xml │ │ ├── ic_settings_enable.xml │ │ ├── ic_settings_home.xml │ │ ├── ic_settings_language.xml │ │ ├── ic_settings_location.xml │ │ ├── ic_settings_multiuser.xml │ │ ├── ic_settings_night_display.xml │ │ ├── ic_settings_open.xml │ │ ├── ic_settings_print.xml │ │ ├── ic_settings_privacy.xml │ │ ├── ic_settings_security_white.xml │ │ ├── ic_settings_sim.xml │ │ ├── ic_settings_system_dashboard_white.xml │ │ ├── ic_settings_wireless.xml │ │ ├── ic_storage.xml │ │ ├── ic_storage_white.xml │ │ ├── ic_suggestion_night_display.xml │ │ ├── ic_sync.xml │ │ ├── ic_sync_problem_24dp.xml │ │ ├── ic_system_update.xml │ │ ├── ic_videogame_vd_theme_24.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_up_24dp.xml │ │ ├── ic_vpn_key.xml │ │ └── ic_wifi_tethering.xml ├── IconPackRoundedSystemUIOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_alarm.xml │ │ ├── ic_alarm_dim.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_bluetooth_connected.xml │ │ ├── ic_brightness_thumb.xml │ │ ├── ic_camera.xml │ │ ├── ic_cast.xml │ │ ├── ic_cast_connected.xml │ │ ├── ic_cast_connected_fill.xml │ │ ├── ic_close_white.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_data_saver_off.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_headset.xml │ │ ├── ic_headset_mic.xml │ │ ├── ic_hotspot.xml │ │ ├── ic_info.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_invert_colors.xml │ │ ├── ic_location.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_silence.xml │ │ ├── ic_power_low.xml │ │ ├── ic_power_saver.xml │ │ ├── ic_qs_bluetooth_connecting.xml │ │ ├── ic_qs_bluetooth_on.xml │ │ ├── ic_qs_cancel.xml │ │ ├── ic_qs_no_sim.xml │ │ ├── ic_qs_wifi_0.xml │ │ ├── ic_qs_wifi_1.xml │ │ ├── ic_qs_wifi_2.xml │ │ ├── ic_qs_wifi_3.xml │ │ ├── ic_qs_wifi_4.xml │ │ ├── ic_qs_wifi_disconnected.xml │ │ ├── ic_screenrecord.xml │ │ ├── ic_screenshot_delete.xml │ │ ├── ic_settings.xml │ │ ├── ic_settings_16dp.xml │ │ ├── ic_swap_vert.xml │ │ ├── ic_tune_black_16dp.xml │ │ ├── ic_volume_alarm.xml │ │ ├── ic_volume_alarm_mute.xml │ │ ├── ic_volume_bt_sco.xml │ │ ├── ic_volume_media.xml │ │ ├── ic_volume_media_mute.xml │ │ ├── ic_volume_odi_captions.xml │ │ ├── ic_volume_odi_captions_disabled.xml │ │ ├── ic_volume_ringer.xml │ │ ├── ic_volume_ringer_mute.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_voice.xml │ │ ├── stat_sys_camera.xml │ │ ├── stat_sys_managed_profile_status.xml │ │ ├── stat_sys_mic_none.xml │ │ └── stat_sys_vpn_ic.xml ├── IconPackRoundedThemePickerOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_add_24px.xml │ │ ├── ic_close_24px.xml │ │ ├── ic_colorize_24px.xml │ │ ├── ic_delete_24px.xml │ │ ├── ic_font.xml │ │ ├── ic_nav_clock.xml │ │ ├── ic_nav_grid.xml │ │ ├── ic_nav_theme.xml │ │ ├── ic_nav_wallpaper.xml │ │ ├── ic_shapes_24px.xml │ │ ├── ic_tune.xml │ │ └── ic_wifi_24px.xml ├── IconPackSamAndroidOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_audio_alarm.xml │ │ ├── ic_audio_alarm_mute.xml │ │ ├── ic_battery_80_24dp.xml │ │ ├── ic_bluetooth_share_icon.xml │ │ ├── ic_bluetooth_transient_animation.xml │ │ ├── ic_bt_headphones_a2dp.xml │ │ ├── ic_bt_headset_hfp.xml │ │ ├── ic_bt_hearing_aid.xml │ │ ├── ic_bt_laptop.xml │ │ ├── ic_bt_misc_hid.xml │ │ ├── ic_bt_network_pan.xml │ │ ├── ic_bt_pointing_hid.xml │ │ ├── ic_corp_badge.xml │ │ ├── ic_expand_more.xml │ │ ├── ic_faster_emergency.xml │ │ ├── ic_file_copy.xml │ │ ├── ic_hotspot_transient_animation.xml │ │ ├── ic_lock.xml │ │ ├── ic_lock_bugreport.xml │ │ ├── ic_lock_open.xml │ │ ├── ic_lock_power_off.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_mode_edit.xml │ │ ├── ic_notifications_alerted.xml │ │ ├── ic_phone.xml │ │ ├── ic_qs_airplane.xml │ │ ├── ic_qs_auto_rotate.xml │ │ ├── ic_qs_battery_saver.xml │ │ ├── ic_qs_bluetooth.xml │ │ ├── ic_qs_dnd.xml │ │ ├── ic_qs_flashlight.xml │ │ ├── ic_qs_night_display_on.xml │ │ ├── ic_qs_ui_mode_night.xml │ │ ├── ic_restart.xml │ │ ├── ic_rules.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_settings_bluetooth.xml │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ ├── ic_signal_location.xml │ │ ├── ic_signal_wifi_transient_animation.xml │ │ ├── ic_wifi_signal_0.xml │ │ ├── ic_wifi_signal_1.xml │ │ ├── ic_wifi_signal_2.xml │ │ ├── ic_wifi_signal_3.xml │ │ ├── ic_wifi_signal_4.xml │ │ ├── ic_work_apps_off.xml │ │ ├── perm_group_activity_recognition.xml │ │ ├── perm_group_aural.xml │ │ ├── perm_group_calendar.xml │ │ ├── perm_group_call_log.xml │ │ ├── perm_group_camera.xml │ │ ├── perm_group_contacts.xml │ │ ├── perm_group_location.xml │ │ ├── perm_group_microphone.xml │ │ ├── perm_group_phone_calls.xml │ │ ├── perm_group_sensors.xml │ │ ├── perm_group_sms.xml │ │ ├── perm_group_storage.xml │ │ └── perm_group_visual.xml ├── IconPackSamLauncherOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_corp.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_hourglass_top.xml │ │ ├── ic_info_no_shadow.xml │ │ ├── ic_install_no_shadow.xml │ │ ├── ic_palette.xml │ │ ├── ic_pin.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_select.xml │ │ ├── ic_setting.xml │ │ ├── ic_share.xml │ │ ├── ic_smartspace_preferences.xml │ │ ├── ic_split_screen.xml │ │ ├── ic_uninstall_no_shadow.xml │ │ ├── ic_warning.xml │ │ └── ic_widget.xml ├── IconPackSamSettingsOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── drag_handle.xml │ │ ├── ic_accessibility_generic.xml │ │ ├── ic_add_24dp.xml │ │ ├── ic_airplanemode_active.xml │ │ ├── ic_android.xml │ │ ├── ic_apps.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_arrow_down_24dp.xml │ │ ├── ic_battery_charging_full.xml │ │ ├── ic_battery_status_good_24dp.xml │ │ ├── ic_battery_status_maybe_24dp.xml │ │ ├── ic_call_24dp.xml │ │ ├── ic_cancel.xml │ │ ├── ic_cast_24dp.xml │ │ ├── ic_cellular_off.xml │ │ ├── ic_chevron_right_24dp.xml │ │ ├── ic_content_copy_grey600_24dp.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_delete.xml │ │ ├── ic_devices_other.xml │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ ├── ic_eject_24dp.xml │ │ ├── ic_expand_less.xml │ │ ├── ic_expand_more_inverse.xml │ │ ├── ic_find_in_page_24px.xml │ │ ├── ic_folder_vd_theme_24.xml │ │ ├── ic_friction_lock_closed.xml │ │ ├── ic_gray_scale_24dp.xml │ │ ├── ic_headset_24dp.xml │ │ ├── ic_help.xml │ │ ├── ic_help_actionbar.xml │ │ ├── ic_homepage_search.xml │ │ ├── ic_info_outline_24.xml │ │ ├── ic_local_movies.xml │ │ ├── ic_local_phone_24_lib.xml │ │ ├── ic_media_stream.xml │ │ ├── ic_media_stream_off.xml │ │ ├── ic_network_cell.xml │ │ ├── ic_notifications.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_off_24dp.xml │ │ ├── ic_phone_info.xml │ │ ├── ic_photo_library.xml │ │ ├── ic_restore.xml │ │ ├── ic_search_24dp.xml │ │ ├── ic_settings_accent.xml │ │ ├── ic_settings_accessibility.xml │ │ ├── ic_settings_accounts.xml │ │ ├── ic_settings_backup.xml │ │ ├── ic_settings_battery_white.xml │ │ ├── ic_settings_data_usage.xml │ │ ├── ic_settings_date_time.xml │ │ ├── ic_settings_delete.xml │ │ ├── ic_settings_disable.xml │ │ ├── ic_settings_display_white.xml │ │ ├── ic_settings_enable.xml │ │ ├── ic_settings_force_stop.xml │ │ ├── ic_settings_gestures.xml │ │ ├── ic_settings_home.xml │ │ ├── ic_settings_language.xml │ │ ├── ic_settings_location.xml │ │ ├── ic_settings_multiuser.xml │ │ ├── ic_settings_night_display.xml │ │ ├── ic_settings_open.xml │ │ ├── ic_settings_print.xml │ │ ├── ic_settings_privacy.xml │ │ ├── ic_settings_security_white.xml │ │ ├── ic_settings_sim.xml │ │ ├── ic_settings_system_dashboard_white.xml │ │ ├── ic_settings_wireless.xml │ │ ├── ic_storage.xml │ │ ├── ic_storage_white.xml │ │ ├── ic_suggestion_night_display.xml │ │ ├── ic_sync.xml │ │ ├── ic_sync_problem_24dp.xml │ │ ├── ic_system_update.xml │ │ ├── ic_videogame_vd_theme_24.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_up_24dp.xml │ │ ├── ic_vpn_key.xml │ │ └── ic_wifi_tethering.xml ├── IconPackSamSystemUIOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── anim │ │ ├── lock_lock.xml │ │ ├── lock_scanning.xml │ │ ├── lock_to_error.xml │ │ └── lock_unlock.xml │ │ └── drawable │ │ ├── ic_alarm.xml │ │ ├── ic_alarm_dim.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_bluetooth_connected.xml │ │ ├── ic_brightness_thumb.xml │ │ ├── ic_camera.xml │ │ ├── ic_cast.xml │ │ ├── ic_cast_connected.xml │ │ ├── ic_close_white.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_data_saver_off.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_headset.xml │ │ ├── ic_headset_mic.xml │ │ ├── ic_hotspot.xml │ │ ├── ic_info.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_invert_colors.xml │ │ ├── ic_location.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_silence.xml │ │ ├── ic_power_low.xml │ │ ├── ic_power_saver.xml │ │ ├── ic_qs_bluetooth_connecting.xml │ │ ├── ic_qs_cancel.xml │ │ ├── ic_qs_no_sim.xml │ │ ├── ic_qs_wifi_0.xml │ │ ├── ic_qs_wifi_1.xml │ │ ├── ic_qs_wifi_2.xml │ │ ├── ic_qs_wifi_3.xml │ │ ├── ic_qs_wifi_4.xml │ │ ├── ic_qs_wifi_disconnected.xml │ │ ├── ic_screenrecord.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_screenshot_delete.xml │ │ ├── ic_settings.xml │ │ ├── ic_swap_vert.xml │ │ ├── ic_tune_black_16dp.xml │ │ ├── ic_volume_alarm_mute.xml │ │ ├── ic_volume_bt_sco.xml │ │ ├── ic_volume_collapse_animation.xml │ │ ├── ic_volume_expand_animation.xml │ │ ├── ic_volume_media.xml │ │ ├── ic_volume_media_mute.xml │ │ ├── ic_volume_odi_captions.xml │ │ ├── ic_volume_odi_captions_disabled.xml │ │ ├── ic_volume_ringer.xml │ │ ├── ic_volume_ringer_mute.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_voice.xml │ │ ├── stat_sys_managed_profile_status.xml │ │ ├── stat_sys_mic_none.xml │ │ └── stat_sys_vpn_ic.xml ├── IconPackSamThemePickerOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_add_24px.xml │ │ ├── ic_close_24px.xml │ │ ├── ic_colorize_24px.xml │ │ ├── ic_font.xml │ │ ├── ic_nav_clock.xml │ │ ├── ic_nav_grid.xml │ │ ├── ic_nav_theme.xml │ │ ├── ic_nav_wallpaper.xml │ │ ├── ic_shapes_24px.xml │ │ ├── ic_tune.xml │ │ └── ic_wifi_24px.xml ├── IconPackVictorAndroidOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_audio_alarm.xml │ │ ├── ic_audio_alarm_mute.xml │ │ ├── ic_battery_80_24dp.xml │ │ ├── ic_bluetooth_share_icon.xml │ │ ├── ic_bluetooth_transient_animation.xml │ │ ├── ic_bt_headphones_a2dp.xml │ │ ├── ic_bt_headset_hfp.xml │ │ ├── ic_bt_hearing_aid.xml │ │ ├── ic_bt_laptop.xml │ │ ├── ic_bt_misc_hid.xml │ │ ├── ic_bt_network_pan.xml │ │ ├── ic_bt_pointing_hid.xml │ │ ├── ic_corp_badge.xml │ │ ├── ic_expand_more.xml │ │ ├── ic_faster_emergency.xml │ │ ├── ic_file_copy.xml │ │ ├── ic_hotspot_transient_animation.xml │ │ ├── ic_lock.xml │ │ ├── ic_lock_bugreport.xml │ │ ├── ic_lock_open.xml │ │ ├── ic_lock_power_off.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_mode_edit.xml │ │ ├── ic_notifications_alerted.xml │ │ ├── ic_phone.xml │ │ ├── ic_qs_airplane.xml │ │ ├── ic_qs_auto_rotate.xml │ │ ├── ic_qs_battery_saver.xml │ │ ├── ic_qs_bluetooth.xml │ │ ├── ic_qs_dnd.xml │ │ ├── ic_qs_flashlight.xml │ │ ├── ic_qs_night_display_on.xml │ │ ├── ic_qs_ui_mode_night.xml │ │ ├── ic_restart.xml │ │ ├── ic_rules.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_settings_bluetooth.xml │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ ├── ic_signal_location.xml │ │ ├── ic_signal_wifi_transient_animation.xml │ │ ├── ic_wifi_signal_0.xml │ │ ├── ic_wifi_signal_1.xml │ │ ├── ic_wifi_signal_2.xml │ │ ├── ic_wifi_signal_3.xml │ │ ├── ic_wifi_signal_4.xml │ │ ├── ic_work_apps_off.xml │ │ ├── perm_group_activity_recognition.xml │ │ ├── perm_group_aural.xml │ │ ├── perm_group_calendar.xml │ │ ├── perm_group_call_log.xml │ │ ├── perm_group_camera.xml │ │ ├── perm_group_contacts.xml │ │ ├── perm_group_location.xml │ │ ├── perm_group_microphone.xml │ │ ├── perm_group_phone_calls.xml │ │ ├── perm_group_sensors.xml │ │ ├── perm_group_sms.xml │ │ ├── perm_group_storage.xml │ │ └── perm_group_visual.xml ├── IconPackVictorLauncherOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_corp.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_hourglass_top.xml │ │ ├── ic_info_no_shadow.xml │ │ ├── ic_install_no_shadow.xml │ │ ├── ic_palette.xml │ │ ├── ic_pin.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_select.xml │ │ ├── ic_setting.xml │ │ ├── ic_share.xml │ │ ├── ic_smartspace_preferences.xml │ │ ├── ic_split_screen.xml │ │ ├── ic_uninstall_no_shadow.xml │ │ ├── ic_warning.xml │ │ └── ic_widget.xml ├── IconPackVictorSettingsOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── drag_handle.xml │ │ ├── ic_accessibility_generic.xml │ │ ├── ic_add_24dp.xml │ │ ├── ic_airplanemode_active.xml │ │ ├── ic_android.xml │ │ ├── ic_apps.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_arrow_down_24dp.xml │ │ ├── ic_battery_charging_full.xml │ │ ├── ic_battery_status_good_24dp.xml │ │ ├── ic_battery_status_maybe_24dp.xml │ │ ├── ic_call_24dp.xml │ │ ├── ic_cancel.xml │ │ ├── ic_cast_24dp.xml │ │ ├── ic_cellular_off.xml │ │ ├── ic_chevron_right_24dp.xml │ │ ├── ic_content_copy_grey600_24dp.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_delete.xml │ │ ├── ic_devices_other.xml │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ ├── ic_eject_24dp.xml │ │ ├── ic_expand_less.xml │ │ ├── ic_expand_more_inverse.xml │ │ ├── ic_find_in_page_24px.xml │ │ ├── ic_folder_vd_theme_24.xml │ │ ├── ic_friction_lock_closed.xml │ │ ├── ic_gray_scale_24dp.xml │ │ ├── ic_headset_24dp.xml │ │ ├── ic_help.xml │ │ ├── ic_help_actionbar.xml │ │ ├── ic_homepage_search.xml │ │ ├── ic_info_outline_24.xml │ │ ├── ic_local_movies.xml │ │ ├── ic_local_phone_24_lib.xml │ │ ├── ic_media_stream.xml │ │ ├── ic_media_stream_off.xml │ │ ├── ic_network_cell.xml │ │ ├── ic_notifications.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_off_24dp.xml │ │ ├── ic_phone_info.xml │ │ ├── ic_photo_library.xml │ │ ├── ic_restore.xml │ │ ├── ic_search_24dp.xml │ │ ├── ic_settings_accent.xml │ │ ├── ic_settings_accessibility.xml │ │ ├── ic_settings_accounts.xml │ │ ├── ic_settings_backup.xml │ │ ├── ic_settings_battery_white.xml │ │ ├── ic_settings_data_usage.xml │ │ ├── ic_settings_date_time.xml │ │ ├── ic_settings_delete.xml │ │ ├── ic_settings_disable.xml │ │ ├── ic_settings_display_white.xml │ │ ├── ic_settings_enable.xml │ │ ├── ic_settings_force_stop.xml │ │ ├── ic_settings_gestures.xml │ │ ├── ic_settings_home.xml │ │ ├── ic_settings_language.xml │ │ ├── ic_settings_location.xml │ │ ├── ic_settings_multiuser.xml │ │ ├── ic_settings_night_display.xml │ │ ├── ic_settings_open.xml │ │ ├── ic_settings_print.xml │ │ ├── ic_settings_privacy.xml │ │ ├── ic_settings_security_white.xml │ │ ├── ic_settings_sim.xml │ │ ├── ic_settings_system_dashboard_white.xml │ │ ├── ic_settings_wireless.xml │ │ ├── ic_storage.xml │ │ ├── ic_storage_white.xml │ │ ├── ic_suggestion_night_display.xml │ │ ├── ic_sync.xml │ │ ├── ic_sync_problem_24dp.xml │ │ ├── ic_system_update.xml │ │ ├── ic_videogame_vd_theme_24.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_up_24dp.xml │ │ ├── ic_vpn_key.xml │ │ └── ic_wifi_tethering.xml ├── IconPackVictorSystemUIOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── anim │ │ ├── lock_lock.xml │ │ ├── lock_scanning.xml │ │ ├── lock_to_error.xml │ │ └── lock_unlock.xml │ │ └── drawable │ │ ├── ic_alarm.xml │ │ ├── ic_alarm_dim.xml │ │ ├── ic_arrow_back.xml │ │ ├── ic_bluetooth_connected.xml │ │ ├── ic_brightness_thumb.xml │ │ ├── ic_camera.xml │ │ ├── ic_cast.xml │ │ ├── ic_cast_connected.xml │ │ ├── ic_close_white.xml │ │ ├── ic_data_saver.xml │ │ ├── ic_data_saver_off.xml │ │ ├── ic_drag_handle.xml │ │ ├── ic_headset.xml │ │ ├── ic_headset_mic.xml │ │ ├── ic_hotspot.xml │ │ ├── ic_info.xml │ │ ├── ic_info_outline.xml │ │ ├── ic_invert_colors.xml │ │ ├── ic_location.xml │ │ ├── ic_lockscreen_ime.xml │ │ ├── ic_notifications_alert.xml │ │ ├── ic_notifications_silence.xml │ │ ├── ic_power_low.xml │ │ ├── ic_power_saver.xml │ │ ├── ic_qs_bluetooth_connecting.xml │ │ ├── ic_qs_cancel.xml │ │ ├── ic_qs_no_sim.xml │ │ ├── ic_qs_wifi_0.xml │ │ ├── ic_qs_wifi_1.xml │ │ ├── ic_qs_wifi_2.xml │ │ ├── ic_qs_wifi_3.xml │ │ ├── ic_qs_wifi_4.xml │ │ ├── ic_qs_wifi_disconnected.xml │ │ ├── ic_screenrecord.xml │ │ ├── ic_screenshot.xml │ │ ├── ic_screenshot_delete.xml │ │ ├── ic_settings.xml │ │ ├── ic_swap_vert.xml │ │ ├── ic_tune_black_16dp.xml │ │ ├── ic_volume_alarm_mute.xml │ │ ├── ic_volume_bt_sco.xml │ │ ├── ic_volume_collapse_animation.xml │ │ ├── ic_volume_expand_animation.xml │ │ ├── ic_volume_media.xml │ │ ├── ic_volume_media_mute.xml │ │ ├── ic_volume_odi_captions.xml │ │ ├── ic_volume_odi_captions_disabled.xml │ │ ├── ic_volume_ringer.xml │ │ ├── ic_volume_ringer_mute.xml │ │ ├── ic_volume_ringer_vibrate.xml │ │ ├── ic_volume_voice.xml │ │ ├── stat_sys_managed_profile_status.xml │ │ ├── stat_sys_mic_none.xml │ │ └── stat_sys_vpn_ic.xml ├── IconPackVictorThemePickerOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── drawable │ │ ├── ic_add_24px.xml │ │ ├── ic_close_24px.xml │ │ ├── ic_colorize_24px.xml │ │ ├── ic_font.xml │ │ ├── ic_nav_clock.xml │ │ ├── ic_nav_grid.xml │ │ ├── ic_nav_theme.xml │ │ ├── ic_nav_wallpaper.xml │ │ ├── ic_shapes_24px.xml │ │ ├── ic_tune.xml │ │ └── ic_wifi_24px.xml ├── IconShapePebbleOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── IconShapeRoundedRectOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── IconShapeSquareOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── IconShapeSquircleOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── IconShapeTaperedRectOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── IconShapeTeardropOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── IconShapeVesselOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── config.xml │ │ └── strings.xml ├── ParanoidLauncherOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── overlays.mk └── static │ └── packages │ └── apps │ └── Launcher3 │ └── res │ ├── drawable │ ├── themed_icon_1111dns.xml │ ├── themed_icon_1gallery.xml │ ├── themed_icon_365_scores.xml │ ├── themed_icon_3dmark.xml │ ├── themed_icon_8ball_pool.xml │ ├── themed_icon_GoogleClassroom.xml │ ├── themed_icon_abstruct.xml │ ├── themed_icon_accubattery.xml │ ├── themed_icon_adaway.xml │ ├── themed_icon_addtext.xml │ ├── themed_icon_adm.xml │ ├── themed_icon_admin.xml │ ├── themed_icon_adobe_acrobat.xml │ ├── themed_icon_adobe_scan.xml │ ├── themed_icon_aegis.xml │ ├── themed_icon_agc.xml │ ├── themed_icon_aida64.xml │ ├── themed_icon_aimp.xml │ ├── themed_icon_aiwanji.xml │ ├── themed_icon_alarmy.xml │ ├── themed_icon_alibaba.xml │ ├── themed_icon_aliexpress.xml │ ├── themed_icon_alipay.xml │ ├── themed_icon_aliucord_installer.xml │ ├── themed_icon_aliyun.xml │ ├── themed_icon_alphabackup.xml │ ├── themed_icon_amazon_alexa.xml │ ├── themed_icon_amazon_kindle.xml │ ├── themed_icon_amazon_music.xml │ ├── themed_icon_amazon_photos.xml │ ├── themed_icon_amazon_seller.xml │ ├── themed_icon_amazon_shopping.xml │ ├── themed_icon_ana_vodafone.xml │ ├── themed_icon_android.xml │ ├── themed_icon_android_auto.xml │ ├── themed_icon_androidbetafeedback.xml │ ├── themed_icon_antutu.xml │ ├── themed_icon_any.xml │ ├── themed_icon_anythingtopip.xml │ ├── themed_icon_aov.xml │ ├── themed_icon_apex_legends.xml │ ├── themed_icon_apkmirror.xml │ ├── themed_icon_apktoolm.xml │ ├── themed_icon_apni_kaksha.xml │ ├── themed_icon_apple_music.xml │ ├── themed_icon_aruba.xml │ ├── themed_icon_asphalt_9.xml │ ├── themed_icon_asus_gallery.xml │ ├── themed_icon_athan.xml │ ├── themed_icon_attapoll.xml │ ├── themed_icon_audiomack.xml │ ├── themed_icon_aurora_store.xml │ ├── themed_icon_authenticator.xml │ ├── themed_icon_authy.xml │ ├── themed_icon_autotagger.xml │ ├── themed_icon_auxio.xml │ ├── themed_icon_aviata.xml │ ├── themed_icon_avito.xml │ ├── themed_icon_axisnet.xml │ ├── themed_icon_azcecll.xml │ ├── themed_icon_backdrops.xml │ ├── themed_icon_baidu.xml │ ├── themed_icon_baiduyun.xml │ ├── themed_icon_bandlab.xml │ ├── themed_icon_bangla.xml │ ├── themed_icon_battery_guru.xml │ ├── themed_icon_beeline.xml │ ├── themed_icon_betamaniac.xml │ ├── themed_icon_betternet.xml │ ├── themed_icon_bgram.xml │ ├── themed_icon_bhim.xml │ ├── themed_icon_bijian.xml │ ├── themed_icon_bilibili.xml │ ├── themed_icon_bima_plus.xml │ ├── themed_icon_binance.xml │ ├── themed_icon_bing.xml │ ├── themed_icon_bir.xml │ ├── themed_icon_bird.xml │ ├── themed_icon_bitwarden.xml │ ├── themed_icon_blackboard.xml │ ├── themed_icon_blackhole.xml │ ├── themed_icon_bolt.xml │ ├── themed_icon_booking.xml │ ├── themed_icon_boom.xml │ ├── themed_icon_boost.xml │ ├── themed_icon_bradesco.xml │ ├── themed_icon_brave.xml │ ├── themed_icon_brawl_stars.xml │ ├── themed_icon_brimo.xml │ ├── themed_icon_bromite.xml │ ├── themed_icon_browser.xml │ ├── themed_icon_bsi_mobile.xml │ ├── themed_icon_btmouse.xml │ ├── themed_icon_bubbleunp.xml │ ├── themed_icon_bubei.xml │ ├── themed_icon_budao.xml │ ├── themed_icon_by_u.xml │ ├── themed_icon_c6_bank.xml │ ├── themed_icon_caixa.xml │ ├── themed_icon_calculator.xml │ ├── themed_icon_calendar_1.xml │ ├── themed_icon_calendar_10.xml │ ├── themed_icon_calendar_11.xml │ ├── themed_icon_calendar_12.xml │ ├── themed_icon_calendar_13.xml │ ├── themed_icon_calendar_14.xml │ ├── themed_icon_calendar_15.xml │ ├── themed_icon_calendar_16.xml │ ├── themed_icon_calendar_17.xml │ ├── themed_icon_calendar_18.xml │ ├── themed_icon_calendar_19.xml │ ├── themed_icon_calendar_2.xml │ ├── themed_icon_calendar_20.xml │ ├── themed_icon_calendar_21.xml │ ├── themed_icon_calendar_22.xml │ ├── themed_icon_calendar_23.xml │ ├── themed_icon_calendar_24.xml │ ├── themed_icon_calendar_25.xml │ ├── themed_icon_calendar_26.xml │ ├── themed_icon_calendar_27.xml │ ├── themed_icon_calendar_28.xml │ ├── themed_icon_calendar_29.xml │ ├── themed_icon_calendar_3.xml │ ├── themed_icon_calendar_30.xml │ ├── themed_icon_calendar_31.xml │ ├── themed_icon_calendar_4.xml │ ├── themed_icon_calendar_5.xml │ ├── themed_icon_calendar_6.xml │ ├── themed_icon_calendar_7.xml │ ├── themed_icon_calendar_8.xml │ ├── themed_icon_calendar_9.xml │ ├── themed_icon_camera.xml │ ├── themed_icon_camera_go.xml │ ├── themed_icon_camscanner.xml │ ├── themed_icon_canvas.xml │ ├── themed_icon_cartogram.xml │ ├── themed_icon_catogram.xml │ ├── themed_icon_cdek.xml │ ├── themed_icon_chat.xml │ ├── themed_icon_chess.xml │ ├── themed_icon_chrome.xml │ ├── themed_icon_chrome_beta.xml │ ├── themed_icon_chrome_canary.xml │ ├── themed_icon_chrome_dev.xml │ ├── themed_icon_chromebeta.xml │ ├── themed_icon_citymapper.xml │ ├── themed_icon_clash.xml │ ├── themed_icon_clash_mini.xml │ ├── themed_icon_clash_of_clans.xml │ ├── themed_icon_clash_quest.xml │ ├── themed_icon_clash_royale.xml │ ├── themed_icon_classicpowermenu.xml │ ├── themed_icon_classroom.xml │ ├── themed_icon_clock.xml │ ├── themed_icon_cn_xuexi_android.xml │ ├── themed_icon_cod.xml │ ├── themed_icon_coinsph.xml │ ├── themed_icon_coinvero.xml │ ├── themed_icon_com_deepl_mobiletranslator.xml │ ├── themed_icon_com_douyu_rush.xml │ ├── themed_icon_com_fooview_android_fooview.xml │ ├── themed_icon_com_huya_kiwi.xml │ ├── themed_icon_com_kugou_android.xml │ ├── themed_icon_com_tencent_qt_qtl.xml │ ├── themed_icon_com_tencent_weread.xml │ ├── themed_icon_companion.xml │ ├── themed_icon_contacts.xml │ ├── themed_icon_coolapk.xml │ ├── themed_icon_cred.xml │ ├── themed_icon_crypto.xml │ ├── themed_icon_cvv.xml │ ├── themed_icon_cx_file_manager.xml │ ├── themed_icon_cyberghost.xml │ ├── themed_icon_daraz.xml │ ├── themed_icon_darq.xml │ ├── themed_icon_dashlane.xml │ ├── themed_icon_dazhong.xml │ ├── themed_icon_deck_shop.xml │ ├── themed_icon_deezer.xml │ ├── themed_icon_delivery_club.xml │ ├── themed_icon_deviantart.xml │ ├── themed_icon_deviceinfo.xml │ ├── themed_icon_dialer.xml │ ├── themed_icon_didi.xml │ ├── themed_icon_digital_wellbeing.xml │ ├── themed_icon_diia.xml │ ├── themed_icon_dingding.xml │ ├── themed_icon_discord.xml │ ├── themed_icon_discord_themer.xml │ ├── themed_icon_disney_plus.xml │ ├── themed_icon_dmzj.xml │ ├── themed_icon_docs_editors.xml │ ├── themed_icon_documents.xml │ ├── themed_icon_dolby.xml │ ├── themed_icon_doodle.xml │ ├── themed_icon_douban.xml │ ├── themed_icon_drive.xml │ ├── themed_icon_drivedroid.xml │ ├── themed_icon_droidcam.xml │ ├── themed_icon_droidify.xml │ ├── themed_icon_drom.xml │ ├── themed_icon_dublgis.xml │ ├── themed_icon_duckduckgo.xml │ ├── themed_icon_duo.xml │ ├── themed_icon_duolingo.xml │ ├── themed_icon_duomobile.xml │ ├── themed_icon_earth.xml │ ├── themed_icon_ebay.xml │ ├── themed_icon_ebay_kleinanzeigen.xml │ ├── themed_icon_egov.xml │ ├── themed_icon_ekatalog.xml │ ├── themed_icon_element.xml │ ├── themed_icon_es_explorer.xml │ ├── themed_icon_espn.xml │ ├── themed_icon_evernote.xml │ ├── themed_icon_express_vpn.xml │ ├── themed_icon_exteragram.xml │ ├── themed_icon_facebook.xml │ ├── themed_icon_fairemail.xml │ ├── themed_icon_family_link.xml │ ├── themed_icon_family_link_ct.xml │ ├── themed_icon_fasthub.xml │ ├── themed_icon_fdroid.xml │ ├── themed_icon_feizhu.xml │ ├── themed_icon_fgames_radar.xml │ ├── themed_icon_file_manager.xml │ ├── themed_icon_files.xml │ ├── themed_icon_filmic_pro.xml │ ├── themed_icon_find_my_device.xml │ ├── themed_icon_firefox.xml │ ├── themed_icon_firefox_beta.xml │ ├── themed_icon_fitbit.xml │ ├── themed_icon_fiverr.xml │ ├── themed_icon_fkm.xml │ ├── themed_icon_flashscore.xml │ ├── themed_icon_flipkart.xml │ ├── themed_icon_fm_radio.xml │ ├── themed_icon_fng.xml │ ├── themed_icon_focus_todo.xml │ ├── themed_icon_fontviewer.xml │ ├── themed_icon_foodpanda.xml │ ├── themed_icon_four_pda.xml │ ├── themed_icon_freefire.xml │ ├── themed_icon_freefire_max.xml │ ├── themed_icon_freezer.xml │ ├── themed_icon_ftx.xml │ ├── themed_icon_fusewalls.xml │ ├── themed_icon_fx.xml │ ├── themed_icon_g_translate.xml │ ├── themed_icon_gallery.xml │ ├── themed_icon_gallery_go.xml │ ├── themed_icon_gaoji.xml │ ├── themed_icon_gapo.xml │ ├── themed_icon_garanti.xml │ ├── themed_icon_gboard.xml │ ├── themed_icon_gcash.xml │ ├── themed_icon_genius.xml │ ├── themed_icon_genshin_impact.xml │ ├── themed_icon_geometricweather.xml │ ├── themed_icon_getir.xml │ ├── themed_icon_gfit_health.xml │ ├── themed_icon_giga_life.xml │ ├── themed_icon_github.xml │ ├── themed_icon_gjzs.xml │ ├── themed_icon_globeone.xml │ ├── themed_icon_glovo.xml │ ├── themed_icon_gmail.xml │ ├── themed_icon_google.xml │ ├── themed_icon_google_assistant.xml │ ├── themed_icon_google_fi.xml │ ├── themed_icon_google_one.xml │ ├── themed_icon_google_opinion.xml │ ├── themed_icon_google_tv.xml │ ├── themed_icon_gosuslugi.xml │ ├── themed_icon_gpay.xml │ ├── themed_icon_grindr.xml │ ├── themed_icon_guitar_tuna.xml │ ├── themed_icon_hali.xml │ ├── themed_icon_halkbank.xml │ ├── themed_icon_halo.xml │ ├── themed_icon_hangouts.xml │ ├── themed_icon_hbo_max.xml │ ├── themed_icon_hdfc_bank.xml │ ├── themed_icon_hearo.xml │ ├── themed_icon_hearthstone.xml │ ├── themed_icon_hh.xml │ ├── themed_icon_home.xml │ ├── themed_icon_hotstar.xml │ ├── themed_icon_huaxiaozhu.xml │ ├── themed_icon_hupu.xml │ ├── themed_icon_ibis_paint.xml │ ├── themed_icon_ic_cn_kuwo_player.xml │ ├── themed_icon_ic_cn_soulapp_android.xml │ ├── themed_icon_ic_cn_xiaochuankeji_tieba.xml │ ├── themed_icon_ic_cn_xiaochuankeji_zuiyoulite.xml │ ├── themed_icon_ic_com_app_shanghai_metro.xml │ ├── themed_icon_ic_com_baidu_baidumap.xml │ ├── themed_icon_ic_com_baidu_homework.xml │ ├── themed_icon_ic_com_baidu_input.xml │ ├── themed_icon_ic_com_bilibili_comic.xml │ ├── themed_icon_ic_com_catchingnow_icebox.xml │ ├── themed_icon_ic_com_chaoxing_mobile_wuhanuniversity.xml │ ├── themed_icon_ic_com_douyu_rush.xml │ ├── themed_icon_ic_com_duokan_reader.xml │ ├── themed_icon_ic_com_duowan_kiwi.xml │ ├── themed_icon_ic_com_farplace_qingzhuo.xml │ ├── themed_icon_ic_com_fenbi_android_solar.xml │ ├── themed_icon_ic_com_gotokeep_keep.xml │ ├── themed_icon_ic_com_mojang_minecraftpe.xml │ ├── themed_icon_ic_com_pwrd_hotta_laohu.xml │ ├── themed_icon_ic_com_qidian_qdreader.xml │ ├── themed_icon_ic_com_qingqikeji_blackhorse_passenger.xml │ ├── themed_icon_ic_com_qiyi_video.xml │ ├── themed_icon_ic_com_qq_ac_android.xml │ ├── themed_icon_ic_com_quark_browser.xml │ ├── themed_icon_ic_com_shizhuang_duapp.xml │ ├── themed_icon_ic_com_smile_gifmaker.xml │ ├── themed_icon_ic_com_taptap.xml │ ├── themed_icon_ic_com_tencent_qqlite.xml │ ├── themed_icon_ic_com_youdao_dict.xml │ ├── themed_icon_ic_flar2_devcheck.xml │ ├── themed_icon_ic_org_wikipedia.xml │ ├── themed_icon_ic_tv_acfundanmaku_video.xml │ ├── themed_icon_iceraven.xml │ ├── themed_icon_ifood.xml │ ├── themed_icon_iherb.xml │ ├── themed_icon_ime.xml │ ├── themed_icon_indriver.xml │ ├── themed_icon_infinity.xml │ ├── themed_icon_inshot.xml │ ├── themed_icon_instagram.xml │ ├── themed_icon_instapaper.xml │ ├── themed_icon_inter.xml │ ├── themed_icon_intersvyaz.xml │ ├── themed_icon_island.xml │ ├── themed_icon_ivi.xml │ ├── themed_icon_ivy_wallet.xml │ ├── themed_icon_j2meloader.xml │ ├── themed_icon_jingdong.xml │ ├── themed_icon_juicessh.xml │ ├── themed_icon_k9_mail.xml │ ├── themed_icon_kakaotalk.xml │ ├── themed_icon_kapk.xml │ ├── themed_icon_karwei.xml │ ├── themed_icon_kaspi_kz.xml │ ├── themed_icon_keep.xml │ ├── themed_icon_khan_academy.xml │ ├── themed_icon_kinemaster.xml │ ├── themed_icon_kinopoisk.xml │ ├── themed_icon_kiwi_browser.xml │ ├── themed_icon_klck.xml │ ├── themed_icon_klwp.xml │ ├── themed_icon_knigi.xml │ ├── themed_icon_kolesa.xml │ ├── themed_icon_komoot.xml │ ├── themed_icon_krisha.xml │ ├── themed_icon_kucoin.xml │ ├── themed_icon_kwai.xml │ ├── themed_icon_kwgt.xml │ ├── themed_icon_lamoda.xml │ ├── themed_icon_lastfm.xml │ ├── themed_icon_lawnchair.xml │ ├── themed_icon_lazada.xml │ ├── themed_icon_lens.xml │ ├── themed_icon_lewdfi.xml │ ├── themed_icon_libchecker.xml │ ├── themed_icon_life_is_strange.xml │ ├── themed_icon_lightroom.xml │ ├── themed_icon_line.xml │ ├── themed_icon_linkedin.xml │ ├── themed_icon_lithium.xml │ ├── themed_icon_litres_audio.xml │ ├── themed_icon_livin_by_mandiri.xml │ ├── themed_icon_lsposed.xml │ ├── themed_icon_luckypatcher.xml │ ├── themed_icon_lyb_kernel_manager.xml │ ├── themed_icon_magisk.xml │ ├── themed_icon_mail_ru.xml │ ├── themed_icon_mail_ru_cloud.xml │ ├── themed_icon_mal.xml │ ├── themed_icon_maps.xml │ ├── themed_icon_marindeck.xml │ ├── themed_icon_matlog.xml │ ├── themed_icon_maxim.xml │ ├── themed_icon_mbank.xml │ ├── themed_icon_mc_four.xml │ ├── themed_icon_mdgram.xml │ ├── themed_icon_meet.xml │ ├── themed_icon_mega.xml │ ├── themed_icon_megafon.xml │ ├── themed_icon_meituan.xml │ ├── themed_icon_meituanwaimai.xml │ ├── themed_icon_meo_remote.xml │ ├── themed_icon_mercado_libre.xml │ ├── themed_icon_messages.xml │ ├── themed_icon_messenger.xml │ ├── themed_icon_microsoft_authenticator.xml │ ├── themed_icon_microsoft_azure.xml │ ├── themed_icon_microsoft_edge.xml │ ├── themed_icon_microsoft_excel.xml │ ├── themed_icon_microsoft_launcher.xml │ ├── themed_icon_microsoft_lens.xml │ ├── themed_icon_microsoft_math.xml │ ├── themed_icon_microsoft_office.xml │ ├── themed_icon_microsoft_onedrive.xml │ ├── themed_icon_microsoft_onenote.xml │ ├── themed_icon_microsoft_outlook.xml │ ├── themed_icon_microsoft_planner.xml │ ├── themed_icon_microsoft_powerpoint.xml │ ├── themed_icon_microsoft_teams.xml │ ├── themed_icon_microsoft_todo.xml │ ├── themed_icon_microsoft_word.xml │ ├── themed_icon_mifit.xml │ ├── themed_icon_migu.xml │ ├── themed_icon_mijia.xml │ ├── themed_icon_mijn_hr.xml │ ├── themed_icon_minecraft.xml │ ├── themed_icon_mini_metro.xml │ ├── themed_icon_miuicamera.xml │ ├── themed_icon_mixplorer.xml │ ├── themed_icon_mobile_legends.xml │ ├── themed_icon_moey.xml │ ├── themed_icon_monect.xml │ ├── themed_icon_money_lover.xml │ ├── themed_icon_mtmanager.xml │ ├── themed_icon_mts.xml │ ├── themed_icon_musicolet.xml │ ├── themed_icon_musicspeedchanger.xml │ ├── themed_icon_must.xml │ ├── themed_icon_mx_player.xml │ ├── themed_icon_myairtel.xml │ ├── themed_icon_mybook.xml │ ├── themed_icon_myjio.xml │ ├── themed_icon_naptime.xml │ ├── themed_icon_nekogram.xml │ ├── themed_icon_nest.xml │ ├── themed_icon_netease.xml │ ├── themed_icon_netflix.xml │ ├── themed_icon_newpipe.xml │ ├── themed_icon_news.xml │ ├── themed_icon_next.xml │ ├── themed_icon_nfsmw.xml │ ├── themed_icon_notebook.xml │ ├── themed_icon_notify_for_miband.xml │ ├── themed_icon_nova.xml │ ├── themed_icon_nubank.xml │ ├── themed_icon_nyx.xml │ ├── themed_icon_obsidian.xml │ ├── themed_icon_olx.xml │ ├── themed_icon_one_dm_plus.xml │ ├── themed_icon_open_vpn.xml │ ├── themed_icon_opera.xml │ ├── themed_icon_opera_beta.xml │ ├── themed_icon_opera_gx.xml │ ├── themed_icon_opera_mini.xml │ ├── themed_icon_opera_mini_beta.xml │ ├── themed_icon_osmand.xml │ ├── themed_icon_osmand_plus.xml │ ├── themed_icon_oto_music.xml │ ├── themed_icon_otraku.xml │ ├── themed_icon_overdrop.xml │ ├── themed_icon_ozon.xml │ ├── themed_icon_package_names.xml │ ├── themed_icon_pandavpn.xml │ ├── themed_icon_patreon.xml │ ├── themed_icon_paypal.xml │ ├── themed_icon_paypal_business.xml │ ├── themed_icon_paytm.xml │ ├── themed_icon_pdd.xml │ ├── themed_icon_peq.xml │ ├── themed_icon_phonepe.xml │ ├── themed_icon_photomath.xml │ ├── themed_icon_photon_camera.xml │ ├── themed_icon_photos.xml │ ├── themed_icon_physicswallah.xml │ ├── themed_icon_picpay.xml │ ├── themed_icon_picsart.xml │ ├── themed_icon_pikabu.xml │ ├── themed_icon_pillars.xml │ ├── themed_icon_pinnit.xml │ ├── themed_icon_pinterest.xml │ ├── themed_icon_pixeltips.xml │ ├── themed_icon_pixiv.xml │ ├── themed_icon_plato.xml │ ├── themed_icon_play_books.xml │ ├── themed_icon_play_games.xml │ ├── themed_icon_play_services.xml │ ├── themed_icon_play_store.xml │ ├── themed_icon_pluma.xml │ ├── themed_icon_plus_messenger.xml │ ├── themed_icon_pocket_casts.xml │ ├── themed_icon_podcasts.xml │ ├── themed_icon_pokemon_go.xml │ ├── themed_icon_pokemon_unite.xml │ ├── themed_icon_pomodo.xml │ ├── themed_icon_poweramp.xml │ ├── themed_icon_prime_video.xml │ ├── themed_icon_progressbar95.xml │ ├── themed_icon_protonmail.xml │ ├── themed_icon_ps.xml │ ├── themed_icon_ps_camera.xml │ ├── themed_icon_ps_express.xml │ ├── themed_icon_pubg.xml │ ├── themed_icon_pulse_music.xml │ ├── themed_icon_pushbullet.xml │ ├── themed_icon_qingli.xml │ ├── themed_icon_qiwi.xml │ ├── themed_icon_qq.xml │ ├── themed_icon_qqfc.xml │ ├── themed_icon_qqyy.xml │ ├── themed_icon_qr_scan.xml │ ├── themed_icon_quick_edit.xml │ ├── themed_icon_quickpic.xml │ ├── themed_icon_quickstep.xml │ ├── themed_icon_quizlet.xml │ ├── themed_icon_quora.xml │ ├── themed_icon_rabobank.xml │ ├── themed_icon_rar.xml │ ├── themed_icon_rave.xml │ ├── themed_icon_rboard.xml │ ├── themed_icon_read_chan.xml │ ├── themed_icon_readera.xml │ ├── themed_icon_readwise.xml │ ├── themed_icon_realme_link.xml │ ├── themed_icon_recorder.xml │ ├── themed_icon_reddit.xml │ ├── themed_icon_redlime.xml │ ├── themed_icon_redtulum.xml │ ├── themed_icon_relay.xml │ ├── themed_icon_remotedesktop.xml │ ├── themed_icon_retro_music.xml │ ├── themed_icon_revolut.xml │ ├── themed_icon_rl_sideswipe.xml │ ├── themed_icon_roblox.xml │ ├── themed_icon_root_explorer.xml │ ├── themed_icon_rootactivitylauncher.xml │ ├── themed_icon_ru_post.xml │ ├── themed_icon_safety.xml │ ├── themed_icon_samsung_browser.xml │ ├── themed_icon_samsung_browser_beta.xml │ ├── themed_icon_samsung_music.xml │ ├── themed_icon_santander.xml │ ├── themed_icon_santander_way.xml │ ├── themed_icon_sberbank.xml │ ├── themed_icon_school_planner.xml │ ├── themed_icon_sdmaid.xml │ ├── themed_icon_sdmaidpro.xml │ ├── themed_icon_settings.xml │ ├── themed_icon_shaoshupai.xml │ ├── themed_icon_shazam.xml │ ├── themed_icon_sheets.xml │ ├── themed_icon_shopee.xml │ ├── themed_icon_shopsy.xml │ ├── themed_icon_shortcutmaker.xml │ ├── themed_icon_signal.xml │ ├── themed_icon_simple_gallery_pro.xml │ ├── themed_icon_simplenote.xml │ ├── themed_icon_simplereboot.xml │ ├── themed_icon_simtoolkit.xml │ ├── themed_icon_sked.xml │ ├── themed_icon_sky_cotl.xml │ ├── themed_icon_skype.xml │ ├── themed_icon_slack.xml │ ├── themed_icon_sleep_as_android.xml │ ├── themed_icon_slides.xml │ ├── themed_icon_smart_audiobook_player.xml │ ├── themed_icon_smartbank.xml │ ├── themed_icon_smartpackkernelmanager.xml │ ├── themed_icon_smarty.xml │ ├── themed_icon_sms_organizer.xml │ ├── themed_icon_snapchat.xml │ ├── themed_icon_snapseed.xml │ ├── themed_icon_sofa_score.xml │ ├── themed_icon_solid_explorer.xml │ ├── themed_icon_solid_soundamplifier.xml │ ├── themed_icon_sony_headphonesconnect.xml │ ├── themed_icon_sony_music.xml │ ├── themed_icon_soul_knight.xml │ ├── themed_icon_soundcloud.xml │ ├── themed_icon_sova_v_re.xml │ ├── themed_icon_spark_email.xml │ ├── themed_icon_speedtest.xml │ ├── themed_icon_splitapk.xml │ ├── themed_icon_spotify.xml │ ├── themed_icon_starwalk.xml │ ├── themed_icon_steam.xml │ ├── themed_icon_steam_chat.xml │ ├── themed_icon_stellio.xml │ ├── themed_icon_stepik.xml │ ├── themed_icon_stickerly.xml │ ├── themed_icon_storageisolation.xml │ ├── themed_icon_strava.xml │ ├── themed_icon_styx_browser.xml │ ├── themed_icon_substratum.xml │ ├── themed_icon_subway_surfers.xml │ ├── themed_icon_swapper.xml │ ├── themed_icon_sweech.xml │ ├── themed_icon_swift_backup.xml │ ├── themed_icon_sync.xml │ ├── themed_icon_syncthing.xml │ ├── themed_icon_systemui.xml │ ├── themed_icon_sysuitunernoads.xml │ ├── themed_icon_tachiyomi.xml │ ├── themed_icon_taobao.xml │ ├── themed_icon_tapatalk_pro.xml │ ├── themed_icon_tasks.xml │ ├── themed_icon_ted.xml │ ├── themed_icon_tele2.xml │ ├── themed_icon_telegram.xml │ ├── themed_icon_telegram_x.xml │ ├── themed_icon_telegraph.xml │ ├── themed_icon_termux.xml │ ├── themed_icon_theathletic.xml │ ├── themed_icon_thenks.xml │ ├── themed_icon_tidal.xml │ ├── themed_icon_tieba.xml │ ├── themed_icon_tiktok.xml │ ├── themed_icon_tim.xml │ ├── themed_icon_tinder.xml │ ├── themed_icon_tinkoff.xml │ ├── themed_icon_tinkoff_accounting.xml │ ├── themed_icon_tinkoff_investing.xml │ ├── themed_icon_toolbox.xml │ ├── themed_icon_tor_browser.xml │ ├── themed_icon_total_commander.xml │ ├── themed_icon_toutiao.xml │ ├── themed_icon_track24.xml │ ├── themed_icon_trebleinfo.xml │ ├── themed_icon_trendyol.xml │ ├── themed_icon_truecaller.xml │ ├── themed_icon_trust_wallet.xml │ ├── themed_icon_tt.xml │ ├── themed_icon_tumblr.xml │ ├── themed_icon_turkcell.xml │ ├── themed_icon_tvtime.xml │ ├── themed_icon_tw.xml │ ├── themed_icon_twitch.xml │ ├── themed_icon_twitter.xml │ ├── themed_icon_txhy.xml │ ├── themed_icon_txmap.xml │ ├── themed_icon_txsp.xml │ ├── themed_icon_uala.xml │ ├── themed_icon_uber.xml │ ├── themed_icon_uber_fleet.xml │ ├── themed_icon_uber_freight.xml │ ├── themed_icon_uber_manager.xml │ ├── themed_icon_uber_motorista.xml │ ├── themed_icon_uber_orders.xml │ ├── themed_icon_ubereats.xml │ ├── themed_icon_ucbrowser.xml │ ├── themed_icon_udemy.xml │ ├── themed_icon_vanced_manager.xml │ ├── themed_icon_vanced_music.xml │ ├── themed_icon_vanced_youtube.xml │ ├── themed_icon_venmo.xml │ ├── themed_icon_via_browser.xml │ ├── themed_icon_viber.xml │ ├── themed_icon_viper_four_android_fx.xml │ ├── themed_icon_vivacut.xml │ ├── themed_icon_vivaldi.xml │ ├── themed_icon_vk.xml │ ├── themed_icon_vk_mail.xml │ ├── themed_icon_vkontakte.xml │ ├── themed_icon_vkx.xml │ ├── themed_icon_vlc.xml │ ├── themed_icon_vodafone.xml │ ├── themed_icon_voice.xml │ ├── themed_icon_vtb_online.xml │ ├── themed_icon_wall_x.xml │ ├── themed_icon_wallet.xml │ ├── themed_icon_wavelet.xml │ ├── themed_icon_waze.xml │ ├── themed_icon_wear_os.xml │ ├── themed_icon_wechat.xml │ ├── themed_icon_weheartit.xml │ ├── themed_icon_weibo.xml │ ├── themed_icon_whatsapp.xml │ ├── themed_icon_whatsapp_business.xml │ ├── themed_icon_wild_rift.xml │ ├── themed_icon_wildberries.xml │ ├── themed_icon_windscribe.xml │ ├── themed_icon_wish.xml │ ├── themed_icon_wordweb.xml │ ├── themed_icon_wps.xml │ ├── themed_icon_wps_office.xml │ ├── themed_icon_wzry.xml │ ├── themed_icon_xda.xml │ ├── themed_icon_xhs.xml │ ├── themed_icon_xianyu.xml │ ├── themed_icon_ximiui.xml │ ├── themed_icon_xmly.xml │ ├── themed_icon_xprivacylua.xml │ ├── themed_icon_xprivacylua_pro.xml │ ├── themed_icon_xuexi.xml │ ├── themed_icon_yandex_disk.xml │ ├── themed_icon_yandex_eda.xml │ ├── themed_icon_yandex_go.xml │ ├── themed_icon_yandex_mail.xml │ ├── themed_icon_yandex_maps.xml │ ├── themed_icon_yandex_market.xml │ ├── themed_icon_yandex_music.xml │ ├── themed_icon_yandex_translate.xml │ ├── themed_icon_yeelight.xml │ ├── themed_icon_yelp.xml │ ├── themed_icon_yemeksepeti.xml │ ├── themed_icon_ykb.xml │ ├── themed_icon_ymusic.xml │ ├── themed_icon_yoo_money.xml │ ├── themed_icon_yota.xml │ ├── themed_icon_youtube.xml │ ├── themed_icon_youtube_music.xml │ ├── themed_icon_youtube_tv.xml │ ├── themed_icon_yuola.xml │ ├── themed_icon_yys.xml │ ├── themed_icon_zalo.xml │ ├── themed_icon_zalo_pay.xml │ ├── themed_icon_zarchiver.xml │ ├── themed_icon_zedge.xml │ ├── themed_icon_zhihu.xml │ ├── themed_icon_zoom.xml │ └── themed_icons_tt.xml │ ├── values │ ├── arrays.xml │ └── dimens.xml │ └── xml │ └── grayscale_icon_map.xml ├── products ├── AndroidProducts.mk ├── alioth │ ├── aospa_alioth.mk │ └── beans.xml ├── apollo │ ├── aospa_apollo.mk │ └── beans.xml ├── bitra │ ├── aospa_bitra.mk │ └── beans.xml ├── bladerunner │ ├── aospa_bladerunner.mk │ └── beans.xml ├── davinci │ ├── aospa_davinci.mk │ └── beans.xml ├── dubai │ ├── aospa_dubai.mk │ └── beans.xml ├── fuxi │ ├── aospa_fuxi.mk │ └── beans.xml ├── ishtar │ ├── aospa_ishtar.mk │ └── beans.xml ├── lahaina │ ├── aospa_lahaina.mk │ └── beans.xml ├── lito │ ├── aospa_lito.mk │ └── beans.xml ├── lmi │ ├── aospa_lmi.mk │ └── beans.xml ├── marble │ ├── aospa_marble.mk │ └── beans.xml ├── mi439_419 │ ├── aospa_mi439_419.mk │ └── beans.xml ├── miatoll │ ├── aospa_miatoll.mk │ └── beans.xml ├── munch │ ├── aospa_munch.mk │ └── beans.xml ├── nuwa │ ├── aospa_nuwa.mk │ └── beans.xml ├── oneplus7 │ ├── aospa_oneplus7.mk │ └── beans.xml ├── oneplus7pro │ ├── aospa_oneplus7pro.mk │ └── beans.xml ├── oneplus7t │ ├── aospa_oneplus7t.mk │ └── beans.xml ├── oneplus7tpro │ ├── aospa_oneplus7tpro.mk │ └── beans.xml ├── oneplus9 │ ├── aospa_oneplus9.mk │ └── beans.xml ├── pdx234 │ ├── aospa_pdx234.mk │ └── beans.xml ├── phoenix │ ├── aospa_phoenix.mk │ └── beans.xml ├── phone1 │ ├── aospa_phone1.mk │ └── beans.xml ├── phone2 │ ├── aospa_phone2.mk │ └── beans.xml ├── platforms │ ├── bengal.xml │ ├── kalama-kernel.xml │ ├── kalama.xml │ ├── kona.xml │ ├── lahaina.xml │ ├── msmnile.xml │ ├── taro-kernel.xml │ └── taro.xml ├── porsche │ ├── aospa_porsche.mk │ └── beans.xml ├── psyche │ ├── aospa_psyche.mk │ └── beans.xml ├── sky │ ├── aospa_sky.mk │ └── beans.xml ├── spes │ ├── aospa_spes.mk │ └── beans.xml ├── sunny │ ├── aospa_sunny.mk │ └── beans.xml └── surya │ ├── aospa_surya.mk │ └── beans.xml ├── sepolicy ├── private │ ├── app.te │ ├── appdomain.te │ ├── bootanim.te │ ├── file.te │ ├── file_contexts │ ├── genfs_contexts │ ├── gmscore_app.te │ ├── hub_app.te │ ├── hwservice_contexts │ ├── platform_app.te │ ├── property.te │ ├── property_contexts │ ├── rootfs.te │ ├── sdcardfs.te │ ├── seapp_contexts │ ├── service.te │ ├── service_contexts │ ├── shell.te │ ├── system_server.te │ └── update_engine.te ├── public │ ├── attributes │ ├── file.te │ └── te_macros ├── sepolicy.mk └── vendor │ ├── file_contexts │ ├── hal_aospa_powershare.te │ ├── hal_aospa_powershare_default.te │ ├── hal_lineage_health.te │ ├── hal_lineage_health_default.te │ ├── lmkd.te │ ├── property.te │ ├── property_contexts │ ├── service.te │ ├── service_contexts │ ├── system_server.te │ └── vendor_init.te ├── soong └── Android.bp ├── target ├── board │ ├── BoardConfigAOSPA.mk │ ├── BoardConfigKernel.mk │ └── BoardConfigSoong.mk ├── config │ ├── aospa_vendor_framework_compatibility_matrix.xml │ ├── apns-conf.xml │ ├── fonts_customization.xml │ ├── permissions │ │ ├── default_permissions_com.google.android.deskclock.xml │ │ ├── org.lineageos.health.xml │ │ └── privapp-permissions-hotword.xml │ ├── preinstalled-packages-aospa.xml │ └── sensitive_pn.xml └── product │ ├── aospa-target.mk │ └── version.mk └── vendorsetup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/Android.bp -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/NOTICE -------------------------------------------------------------------------------- /bootanimation/1080/bootanimation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/bootanimation/1080/bootanimation.zip -------------------------------------------------------------------------------- /bootanimation/1440/bootanimation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/bootanimation/1440/bootanimation.zip -------------------------------------------------------------------------------- /bootanimation/2160/bootanimation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/bootanimation/2160/bootanimation.zip -------------------------------------------------------------------------------- /bootanimation/720/bootanimation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/bootanimation/720/bootanimation.zip -------------------------------------------------------------------------------- /bootanimation/bootanimation.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/bootanimation/bootanimation.mk -------------------------------------------------------------------------------- /extensions/framework/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/extensions/framework/Android.bp -------------------------------------------------------------------------------- /extensions/framework/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/extensions/framework/AndroidManifest.xml -------------------------------------------------------------------------------- /extensions/framework/res/drawable/ic_custom_seekbar_minus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/extensions/framework/res/drawable/ic_custom_seekbar_minus.xml -------------------------------------------------------------------------------- /extensions/framework/res/drawable/ic_custom_seekbar_plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/extensions/framework/res/drawable/ic_custom_seekbar_plus.xml -------------------------------------------------------------------------------- /extensions/framework/res/drawable/ic_custom_seekbar_reset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/extensions/framework/res/drawable/ic_custom_seekbar_reset.xml -------------------------------------------------------------------------------- /extensions/framework/res/layout/preference_custom_seekbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/extensions/framework/res/layout/preference_custom_seekbar.xml -------------------------------------------------------------------------------- /extensions/framework/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/extensions/framework/res/values/attrs.xml -------------------------------------------------------------------------------- /extensions/framework/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/extensions/framework/res/values/colors.xml -------------------------------------------------------------------------------- /extensions/framework/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/extensions/framework/res/values/strings.xml -------------------------------------------------------------------------------- /fonts/GoogleSansClock-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/GoogleSansClock-Regular.ttf -------------------------------------------------------------------------------- /fonts/HarmonyOS-Sans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/HarmonyOS-Sans-Italic.ttf -------------------------------------------------------------------------------- /fonts/HarmonyOS-Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/HarmonyOS-Sans.ttf -------------------------------------------------------------------------------- /fonts/InterVariable-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/InterVariable-Italic.ttf -------------------------------------------------------------------------------- /fonts/InterVariable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/InterVariable.ttf -------------------------------------------------------------------------------- /fonts/Linotte.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/Linotte.ttf -------------------------------------------------------------------------------- /fonts/Manrope-VF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/Manrope-VF.ttf -------------------------------------------------------------------------------- /fonts/OPSans-En-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/OPSans-En-Regular.ttf -------------------------------------------------------------------------------- /fonts/OppoSans-En-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/OppoSans-En-Regular.ttf -------------------------------------------------------------------------------- /fonts/Urbanist-VF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/fonts/Urbanist-VF.ttf -------------------------------------------------------------------------------- /interfaces/biometrics/face/aidl/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/biometrics/face/aidl/Android.bp -------------------------------------------------------------------------------- /interfaces/health/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/health/Android.bp -------------------------------------------------------------------------------- /interfaces/health/aidl_api/vendor.lineage.health/1/.hash: -------------------------------------------------------------------------------- 1 | 33fe8d162b07b2c4b66feccb70a5e45628e9e241 2 | -------------------------------------------------------------------------------- /interfaces/health/default/.clang-format: -------------------------------------------------------------------------------- 1 | ../../../../../../build/soong/scripts/system-clang-format -------------------------------------------------------------------------------- /interfaces/health/default/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/health/default/Android.bp -------------------------------------------------------------------------------- /interfaces/health/default/ChargingControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/health/default/ChargingControl.cpp -------------------------------------------------------------------------------- /interfaces/health/default/ChargingControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/health/default/ChargingControl.h -------------------------------------------------------------------------------- /interfaces/health/default/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/health/default/service.cpp -------------------------------------------------------------------------------- /interfaces/health/default/vendor.lineage.health-service.default.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/health/default/vendor.lineage.health-service.default.rc -------------------------------------------------------------------------------- /interfaces/health/default/vendor.lineage.health-service.default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/health/default/vendor.lineage.health-service.default.xml -------------------------------------------------------------------------------- /interfaces/health/vendor/lineage/health/IChargingControl.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/health/vendor/lineage/health/IChargingControl.aidl -------------------------------------------------------------------------------- /interfaces/power/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/power/Android.bp -------------------------------------------------------------------------------- /interfaces/power/aidl_api/vendor.aospa.power/1/.hash: -------------------------------------------------------------------------------- 1 | 0e81b830e7a845e1dd462dd82c21a20400f45751 2 | -------------------------------------------------------------------------------- /interfaces/power/default/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/power/default/Android.bp -------------------------------------------------------------------------------- /interfaces/power/default/PowerFeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/power/default/PowerFeature.cpp -------------------------------------------------------------------------------- /interfaces/power/default/PowerFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/power/default/PowerFeature.h -------------------------------------------------------------------------------- /interfaces/power/default/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/power/default/main.cpp -------------------------------------------------------------------------------- /interfaces/power/default/vendor.aospa.power-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/power/default/vendor.aospa.power-service.rc -------------------------------------------------------------------------------- /interfaces/power/default/vendor.aospa.power.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/power/default/vendor.aospa.power.xml -------------------------------------------------------------------------------- /interfaces/power/vendor/aospa/power/Feature.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/power/vendor/aospa/power/Feature.aidl -------------------------------------------------------------------------------- /interfaces/power/vendor/aospa/power/IPowerFeature.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/power/vendor/aospa/power/IPowerFeature.aidl -------------------------------------------------------------------------------- /interfaces/powershare/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/powershare/Android.bp -------------------------------------------------------------------------------- /interfaces/powershare/aidl_api/vendor.aospa.powershare/1/.hash: -------------------------------------------------------------------------------- 1 | 3d78e828be7583a4fea2e38150d679ac5e7dccbe 2 | -------------------------------------------------------------------------------- /interfaces/powershare/default/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/powershare/default/Android.bp -------------------------------------------------------------------------------- /interfaces/powershare/default/PowerShare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/powershare/default/PowerShare.cpp -------------------------------------------------------------------------------- /interfaces/powershare/default/PowerShare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/powershare/default/PowerShare.h -------------------------------------------------------------------------------- /interfaces/powershare/default/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/powershare/default/main.cpp -------------------------------------------------------------------------------- /interfaces/powershare/default/vendor.aospa.powershare-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/powershare/default/vendor.aospa.powershare-service.rc -------------------------------------------------------------------------------- /interfaces/powershare/default/vendor.aospa.powershare-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/powershare/default/vendor.aospa.powershare-service.xml -------------------------------------------------------------------------------- /interfaces/powershare/vendor/aospa/powershare/IPowerShare.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/powershare/vendor/aospa/powershare/IPowerShare.aidl -------------------------------------------------------------------------------- /interfaces/qcom/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/Android.bp -------------------------------------------------------------------------------- /interfaces/qcom/bluetooth_audio/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/bluetooth_audio/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/qcom/bluetooth_audio/1.0/IBluetoothAudio.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/bluetooth_audio/1.0/IBluetoothAudio.hal -------------------------------------------------------------------------------- /interfaces/qcom/bluetooth_audio/1.0/IBluetoothAudioCallbacks.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/bluetooth_audio/1.0/IBluetoothAudioCallbacks.hal -------------------------------------------------------------------------------- /interfaces/qcom/bluetooth_audio/1.0/types.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/bluetooth_audio/1.0/types.hal -------------------------------------------------------------------------------- /interfaces/qcom/btconfigstore/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/btconfigstore/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/qcom/btconfigstore/1.0/IBTConfigStore.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/btconfigstore/1.0/IBTConfigStore.hal -------------------------------------------------------------------------------- /interfaces/qcom/btconfigstore/1.0/types.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/btconfigstore/1.0/types.hal -------------------------------------------------------------------------------- /interfaces/qcom/btconfigstore/2.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/btconfigstore/2.0/Android.bp -------------------------------------------------------------------------------- /interfaces/qcom/btconfigstore/2.0/IBTConfigStore.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/btconfigstore/2.0/IBTConfigStore.hal -------------------------------------------------------------------------------- /interfaces/qcom/btconfigstore/2.0/types.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/btconfigstore/2.0/types.hal -------------------------------------------------------------------------------- /interfaces/qcom/capabilityconfigstore/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/capabilityconfigstore/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/qcom/capabilityconfigstore/1.0/ICapabilityConfigStore.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/capabilityconfigstore/1.0/ICapabilityConfigStore.hal -------------------------------------------------------------------------------- /interfaces/qcom/capabilityconfigstore/1.0/types.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/capabilityconfigstore/1.0/types.hal -------------------------------------------------------------------------------- /interfaces/qcom/cryptfshw/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/cryptfshw/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/qcom/cryptfshw/1.0/ICryptfsHw.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/cryptfshw/1.0/ICryptfsHw.hal -------------------------------------------------------------------------------- /interfaces/qcom/cryptfshw/1.0/default/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/cryptfshw/1.0/default/Android.bp -------------------------------------------------------------------------------- /interfaces/qcom/cryptfshw/1.0/default/CryptfsHw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/cryptfshw/1.0/default/CryptfsHw.h -------------------------------------------------------------------------------- /interfaces/qcom/current.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/current.txt -------------------------------------------------------------------------------- /interfaces/qcom/fm/1.0/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/fm/1.0/Android.bp -------------------------------------------------------------------------------- /interfaces/qcom/fm/1.0/IFmHci.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/fm/1.0/IFmHci.hal -------------------------------------------------------------------------------- /interfaces/qcom/fm/1.0/IFmHciCallbacks.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/fm/1.0/IFmHciCallbacks.hal -------------------------------------------------------------------------------- /interfaces/qcom/fm/1.0/types.hal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/fm/1.0/types.hal -------------------------------------------------------------------------------- /interfaces/qcom/fm/aidl/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/fm/aidl/Android.bp -------------------------------------------------------------------------------- /interfaces/qcom/fm/aidl/aidl_api/vendor.qti.hardware.fm/1/.hash: -------------------------------------------------------------------------------- 1 | af88707cae8bd863668def1a0df8df2e298c549f 2 | -------------------------------------------------------------------------------- /interfaces/qcom/fm/aidl/vendor/qti/hardware/fm/IFmHci.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/fm/aidl/vendor/qti/hardware/fm/IFmHci.aidl -------------------------------------------------------------------------------- /interfaces/qcom/fm/aidl/vendor/qti/hardware/fm/IFmHciCallbacks.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/fm/aidl/vendor/qti/hardware/fm/IFmHciCallbacks.aidl -------------------------------------------------------------------------------- /interfaces/qcom/fm/aidl/vendor/qti/hardware/fm/Status.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/qcom/fm/aidl/vendor/qti/hardware/fm/Status.aidl -------------------------------------------------------------------------------- /interfaces/richtap/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/richtap/Android.bp -------------------------------------------------------------------------------- /interfaces/richtap/aidl_api/vendor.aac.hardware.richtap.vibrator/1/.hash: -------------------------------------------------------------------------------- 1 | 9d7839c1ba4db20b2479ee23b36daf3747adfe5d 2 | -------------------------------------------------------------------------------- /interfaces/richtap/aidl_api/vendor.aac.hardware.richtap.vibrator/2/.hash: -------------------------------------------------------------------------------- 1 | eb4960d2cf16ff09338158e5559b1624097fc64e 2 | -------------------------------------------------------------------------------- /interfaces/usb/1.0/default/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/usb/1.0/default/Android.bp -------------------------------------------------------------------------------- /interfaces/usb/1.0/default/Usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/usb/1.0/default/Usb.cpp -------------------------------------------------------------------------------- /interfaces/usb/1.0/default/Usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/usb/1.0/default/Usb.h -------------------------------------------------------------------------------- /interfaces/usb/1.0/default/android.hardware.usb@1.0-service.basic.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/usb/1.0/default/android.hardware.usb@1.0-service.basic.rc -------------------------------------------------------------------------------- /interfaces/usb/1.0/default/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/interfaces/usb/1.0/default/service.cpp -------------------------------------------------------------------------------- /overlay/AOSPABlackThemeOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPABlackThemeOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/AOSPABlackThemeOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPABlackThemeOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPABlackThemeOverlay/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPABlackThemeOverlay/res/values-night/colors.xml -------------------------------------------------------------------------------- /overlay/AOSPAFrameworksOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAFrameworksOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/AOSPAFrameworksOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAFrameworksOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPAFrameworksOverlay/res/values-mcc404/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAFrameworksOverlay/res/values-mcc404/config.xml -------------------------------------------------------------------------------- /overlay/AOSPAFrameworksOverlay/res/values-mcc405/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAFrameworksOverlay/res/values-mcc405/config.xml -------------------------------------------------------------------------------- /overlay/AOSPAFrameworksOverlay/res/values-mcc460/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAFrameworksOverlay/res/values-mcc460/config.xml -------------------------------------------------------------------------------- /overlay/AOSPAFrameworksOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAFrameworksOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/AOSPAFrameworksOverlay/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAFrameworksOverlay/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/AOSPAImmersiveNavigationOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAImmersiveNavigationOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/AOSPAImmersiveNavigationOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAImmersiveNavigationOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPAImmersiveNavigationOverlay/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAImmersiveNavigationOverlay/res/values-land/dimens.xml -------------------------------------------------------------------------------- /overlay/AOSPAImmersiveNavigationOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAImmersiveNavigationOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/AOSPAImmersiveNavigationOverlay/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAImmersiveNavigationOverlay/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/AOSPAImmersiveNavigationOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAImmersiveNavigationOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPANetworkStackOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPANetworkStackOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/AOSPANetworkStackOverlay/AndroidGoogleManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPANetworkStackOverlay/AndroidGoogleManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPANetworkStackOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPANetworkStackOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPANetworkStackOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPANetworkStackOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/AOSPAOverlayStub/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAOverlayStub/Android.bp -------------------------------------------------------------------------------- /overlay/AOSPAOverlayStub/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAOverlayStub/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPAOverlayStub/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAOverlayStub/res/values/arrays.xml -------------------------------------------------------------------------------- /overlay/AOSPAOverlayStub/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAOverlayStub/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/raw/face_education_lottie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/raw/face_education_lottie.json -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/raw/face_settings.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/raw/face_settings.mp4 -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-af/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-am/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-am/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ar-rXB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ar-rXB/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ar/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-as/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-as/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-az/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-b+sr+Latn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-b+sr+Latn/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-be/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-bg/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-bn/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-bs/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ca/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-cs/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-da/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-de/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-el/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-en-rAU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-en-rAU/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-en-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-en-rCA/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-en-rXA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-en-rXA/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-es/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-et/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-eu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-eu/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-fa/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-fi/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-fr-rCA/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-fr/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-gl/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-gu/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-hi/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-hr/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-hu/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-hy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-hy/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-in/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-is/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-is/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-it/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-iw/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ja/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ka/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ka/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-kk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-kk/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-km/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-km/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-kn/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ko/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ky/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ky/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-lo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-lo/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-lt/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-lv/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-mk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-mk/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ml/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-mn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-mn/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-mr/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ms/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-my/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-my/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-nb/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ne/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ne/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-nl/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-or/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-or/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-pa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-pa/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-pl/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-pt/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ro/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ru/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-si/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-sk/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-sl/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-sq/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-sr/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-sv/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-sw/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ta/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-te/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-th/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-tl/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-tr/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-uk/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-ur/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-ur/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-uz/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-uz/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-vi/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values-zu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values-zu/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsProviderOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsProviderOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/AOSPASettingsProviderOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsProviderOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPASettingsProviderOverlay/res/values/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASettingsProviderOverlay/res/values/defaults.xml -------------------------------------------------------------------------------- /overlay/AOSPASystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/AOSPASystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASystemUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPASystemUIOverlay/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASystemUIOverlay/res/values-night/colors.xml -------------------------------------------------------------------------------- /overlay/AOSPASystemUIOverlay/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASystemUIOverlay/res/values/colors.xml -------------------------------------------------------------------------------- /overlay/AOSPASystemUIOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASystemUIOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/AOSPASystemUIOverlay/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASystemUIOverlay/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/AOSPASystemUIOverlay/res/values/flags.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPASystemUIOverlay/res/values/flags.xml -------------------------------------------------------------------------------- /overlay/AOSPAThemePickerOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAThemePickerOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/AOSPAThemePickerOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAThemePickerOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/AOSPAThemePickerOverlay/res/values/override.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/AOSPAThemePickerOverlay/res/values/override.xml -------------------------------------------------------------------------------- /overlay/FontGoogleSansOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontGoogleSansOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/FontGoogleSansOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontGoogleSansOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/FontGoogleSansOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontGoogleSansOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/FontGoogleSansOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontGoogleSansOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/FontHarmonySansOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontHarmonySansOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/FontHarmonySansOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontHarmonySansOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/FontHarmonySansOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontHarmonySansOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/FontHarmonySansOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontHarmonySansOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/FontInterOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontInterOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/FontInterOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontInterOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/FontInterOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontInterOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/FontInterOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontInterOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/FontLinotteSourceOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontLinotteSourceOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/FontLinotteSourceOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontLinotteSourceOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/FontLinotteSourceOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontLinotteSourceOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/FontLinotteSourceOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontLinotteSourceOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/FontManropeOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontManropeOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/FontManropeOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontManropeOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/FontManropeOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontManropeOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/FontManropeOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontManropeOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/FontOnePlusSansOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontOnePlusSansOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/FontOnePlusSansOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontOnePlusSansOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/FontOnePlusSansOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontOnePlusSansOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/FontOppoSansOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontOppoSansOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/FontOppoSansOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontOppoSansOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/FontOppoSansOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontOppoSansOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/FontUrbanistOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontUrbanistOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/FontUrbanistOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontUrbanistOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/FontUrbanistOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontUrbanistOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/FontUrbanistOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/FontUrbanistOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/res/drawable/ic_bt_laptop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/res/drawable/ic_bt_laptop.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/res/drawable/ic_file_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/res/drawable/ic_file_copy.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/res/drawable/ic_lock_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/res/drawable/ic_lock_open.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/res/drawable/ic_mode_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/res/drawable/ic_mode_edit.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/res/drawable/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/res/drawable/ic_phone.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/res/drawable/ic_qs_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/res/drawable/ic_qs_dnd.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/res/drawable/ic_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/res/drawable/ic_restart.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularAndroidOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularAndroidOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/res/drawable/ic_corp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/res/drawable/ic_corp.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/res/drawable/ic_corp_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/res/drawable/ic_corp_off.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/res/drawable/ic_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/res/drawable/ic_palette.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/res/drawable/ic_pin.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/res/drawable/ic_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/res/drawable/ic_select.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/res/drawable/ic_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/res/drawable/ic_setting.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularLauncherOverlay/res/drawable/ic_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularLauncherOverlay/res/drawable/ic_widget.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/drag_handle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/drag_handle.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_add_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_add_24dp.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_android.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_apps.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_cancel.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_storage.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSettingsOverlay/res/drawable/ic_vpn_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSettingsOverlay/res/drawable/ic_vpn_key.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_alarm.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_camera.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_cast.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_headset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_headset.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_hotspot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_hotspot.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_location.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularSystemUIOverlay/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularThemePickerOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularThemePickerOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackCircularThemePickerOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularThemePickerOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularThemePickerOverlay/res/drawable/ic_font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularThemePickerOverlay/res/drawable/ic_font.xml -------------------------------------------------------------------------------- /overlay/IconPackCircularThemePickerOverlay/res/drawable/ic_tune.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackCircularThemePickerOverlay/res/drawable/ic_tune.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_audio_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_audio_alarm.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_bt_laptop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_bt_laptop.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_bt_misc_hid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_bt_misc_hid.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_corp_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_corp_badge.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_expand_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_expand_more.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_file_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_file_copy.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_lock_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_lock_open.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_mode_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_mode_edit.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_phone.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_qs_airplane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_qs_airplane.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_qs_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_qs_dnd.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_restart.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/drawable/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/drawable/ic_screenshot.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledAndroidOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledAndroidOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/res/drawable/ic_corp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/res/drawable/ic_corp.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/res/drawable/ic_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/res/drawable/ic_palette.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/res/drawable/ic_pin.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/res/drawable/ic_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/res/drawable/ic_select.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/res/drawable/ic_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/res/drawable/ic_setting.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledLauncherOverlay/res/drawable/ic_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledLauncherOverlay/res/drawable/ic_widget.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/res/drawable/ic_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/res/drawable/ic_android.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/res/drawable/ic_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/res/drawable/ic_apps.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/res/drawable/ic_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/res/drawable/ic_cancel.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/res/drawable/ic_storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/res/drawable/ic_storage.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSettingsOverlay/res/drawable/ic_vpn_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSettingsOverlay/res/drawable/ic_vpn_key.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackFilledSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSystemUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_alarm.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_camera.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_cast.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_headset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_headset.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_hotspot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_hotspot.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledSystemUIOverlay/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledThemePickerOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledThemePickerOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackFilledThemePickerOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledThemePickerOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledThemePickerOverlay/res/drawable/ic_font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledThemePickerOverlay/res/drawable/ic_font.xml -------------------------------------------------------------------------------- /overlay/IconPackFilledThemePickerOverlay/res/drawable/ic_tune.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackFilledThemePickerOverlay/res/drawable/ic_tune.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_audio_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_audio_alarm.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_bt_laptop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_bt_laptop.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_bt_misc_hid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_bt_misc_hid.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_corp_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_corp_badge.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_expand_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_expand_more.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_file_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_file_copy.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_lock_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_lock_open.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_mode_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_mode_edit.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_phone.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_qs_airplane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_qs_airplane.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_qs_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_qs_dnd.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_restart.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_rules.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/ic_screenshot.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiAndroidOverlay/res/drawable/perm_group_sms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiAndroidOverlay/res/drawable/perm_group_sms.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/res/drawable/ic_corp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/res/drawable/ic_corp.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/res/drawable/ic_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/res/drawable/ic_palette.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/res/drawable/ic_pin.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/res/drawable/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/res/drawable/ic_screenshot.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/res/drawable/ic_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/res/drawable/ic_select.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/res/drawable/ic_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/res/drawable/ic_setting.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiLauncherOverlay/res/drawable/ic_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiLauncherOverlay/res/drawable/ic_widget.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/drag_handle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/drag_handle.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_add_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_add_24dp.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_android.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_apps.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_call_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_call_24dp.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_cancel.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_cast_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_cast_24dp.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_data_saver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_data_saver.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_eject_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_eject_24dp.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_phone_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_phone_info.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_restore.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_storage.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSettingsOverlay/res/drawable/ic_vpn_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSettingsOverlay/res/drawable/ic_vpn_key.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/anim/lock_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/anim/lock_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/anim/lock_scanning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/anim/lock_scanning.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/anim/lock_to_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/anim/lock_to_error.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/anim/lock_unlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/anim/lock_unlock.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_alarm.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_alarm_dim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_alarm_dim.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_camera.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_cast.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_data_saver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_data_saver.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_headset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_headset.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_hotspot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_hotspot.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_location.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_power_low.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_power_low.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_cancel.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_no_sim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_no_sim.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_0.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_1.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_2.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_3.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_qs_wifi_4.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_screenshot.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_swap_vert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiSystemUIOverlay/res/drawable/ic_swap_vert.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiThemePickerOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiThemePickerOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackKaiThemePickerOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiThemePickerOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiThemePickerOverlay/res/drawable/ic_font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiThemePickerOverlay/res/drawable/ic_font.xml -------------------------------------------------------------------------------- /overlay/IconPackKaiThemePickerOverlay/res/drawable/ic_tune.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackKaiThemePickerOverlay/res/drawable/ic_tune.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackRoundedAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedAndroidOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedAndroidOverlay/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedAndroidOverlay/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedAndroidOverlay/res/drawable/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedAndroidOverlay/res/drawable/ic_phone.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedAndroidOverlay/res/drawable/ic_qs_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedAndroidOverlay/res/drawable/ic_qs_dnd.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedAndroidOverlay/res/drawable/ic_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedAndroidOverlay/res/drawable/ic_restart.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedAndroidOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedAndroidOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackRoundedLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_corp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_corp.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_pin.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_select.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedLauncherOverlay/res/drawable/ic_widget.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackRoundedSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_apps.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_cancel.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSettingsOverlay/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackRoundedSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSystemUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSystemUIOverlay/res/drawable/ic_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSystemUIOverlay/res/drawable/ic_alarm.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSystemUIOverlay/res/drawable/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSystemUIOverlay/res/drawable/ic_camera.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSystemUIOverlay/res/drawable/ic_cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSystemUIOverlay/res/drawable/ic_cast.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedSystemUIOverlay/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedSystemUIOverlay/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /overlay/IconPackRoundedThemePickerOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedThemePickerOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackRoundedThemePickerOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackRoundedThemePickerOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_audio_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_audio_alarm.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_bt_laptop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_bt_laptop.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_bt_misc_hid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_bt_misc_hid.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_corp_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_corp_badge.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_expand_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_expand_more.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_file_copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_file_copy.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_lock_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_lock_open.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_mode_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_mode_edit.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_phone.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_qs_airplane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_qs_airplane.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_qs_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_qs_dnd.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_restart.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_rules.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/ic_screenshot.xml -------------------------------------------------------------------------------- /overlay/IconPackSamAndroidOverlay/res/drawable/perm_group_sms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamAndroidOverlay/res/drawable/perm_group_sms.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/res/drawable/ic_corp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/res/drawable/ic_corp.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/res/drawable/ic_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/res/drawable/ic_palette.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/res/drawable/ic_pin.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/res/drawable/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/res/drawable/ic_screenshot.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/res/drawable/ic_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/res/drawable/ic_select.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/res/drawable/ic_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/res/drawable/ic_setting.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /overlay/IconPackSamLauncherOverlay/res/drawable/ic_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamLauncherOverlay/res/drawable/ic_widget.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/drag_handle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/drag_handle.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_add_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_add_24dp.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_android.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_apps.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_call_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_call_24dp.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_cancel.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_cast_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_cast_24dp.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_data_saver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_data_saver.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_eject_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_eject_24dp.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_phone_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_phone_info.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_restore.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_storage.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSettingsOverlay/res/drawable/ic_vpn_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSettingsOverlay/res/drawable/ic_vpn_key.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/anim/lock_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/anim/lock_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/anim/lock_scanning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/anim/lock_scanning.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/anim/lock_to_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/anim/lock_to_error.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/anim/lock_unlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/anim/lock_unlock.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_alarm.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_alarm_dim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_alarm_dim.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_arrow_back.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_camera.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_cast.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_data_saver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_data_saver.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_headset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_headset.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_hotspot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_hotspot.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_location.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_power_low.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_power_low.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_cancel.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_no_sim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_no_sim.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_0.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_1.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_2.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_3.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_qs_wifi_4.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_screenshot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_screenshot.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_settings.xml -------------------------------------------------------------------------------- /overlay/IconPackSamSystemUIOverlay/res/drawable/ic_swap_vert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamSystemUIOverlay/res/drawable/ic_swap_vert.xml -------------------------------------------------------------------------------- /overlay/IconPackSamThemePickerOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamThemePickerOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackSamThemePickerOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamThemePickerOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackSamThemePickerOverlay/res/drawable/ic_font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamThemePickerOverlay/res/drawable/ic_font.xml -------------------------------------------------------------------------------- /overlay/IconPackSamThemePickerOverlay/res/drawable/ic_tune.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackSamThemePickerOverlay/res/drawable/ic_tune.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackVictorAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorAndroidOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorAndroidOverlay/res/drawable/ic_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorAndroidOverlay/res/drawable/ic_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorAndroidOverlay/res/drawable/ic_phone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorAndroidOverlay/res/drawable/ic_phone.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorAndroidOverlay/res/drawable/ic_qs_dnd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorAndroidOverlay/res/drawable/ic_qs_dnd.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorAndroidOverlay/res/drawable/ic_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorAndroidOverlay/res/drawable/ic_restart.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorAndroidOverlay/res/drawable/ic_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorAndroidOverlay/res/drawable/ic_rules.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/res/drawable/ic_corp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/res/drawable/ic_corp.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/res/drawable/ic_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/res/drawable/ic_palette.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/res/drawable/ic_pin.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/res/drawable/ic_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/res/drawable/ic_select.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/res/drawable/ic_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/res/drawable/ic_setting.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/res/drawable/ic_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/res/drawable/ic_share.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorLauncherOverlay/res/drawable/ic_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorLauncherOverlay/res/drawable/ic_widget.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/res/drawable/ic_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/res/drawable/ic_android.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/res/drawable/ic_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/res/drawable/ic_apps.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/res/drawable/ic_cancel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/res/drawable/ic_cancel.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/res/drawable/ic_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/res/drawable/ic_restore.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/res/drawable/ic_storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/res/drawable/ic_storage.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSettingsOverlay/res/drawable/ic_vpn_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSettingsOverlay/res/drawable/ic_vpn_key.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/anim/lock_lock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/anim/lock_lock.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/anim/lock_scanning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/anim/lock_scanning.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/anim/lock_to_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/anim/lock_to_error.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/anim/lock_unlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/anim/lock_unlock.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_alarm.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_camera.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_cast.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_headset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_headset.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_hotspot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_hotspot.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorSystemUIOverlay/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorThemePickerOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorThemePickerOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconPackVictorThemePickerOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorThemePickerOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorThemePickerOverlay/res/drawable/ic_font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorThemePickerOverlay/res/drawable/ic_font.xml -------------------------------------------------------------------------------- /overlay/IconPackVictorThemePickerOverlay/res/drawable/ic_tune.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconPackVictorThemePickerOverlay/res/drawable/ic_tune.xml -------------------------------------------------------------------------------- /overlay/IconShapePebbleOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapePebbleOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconShapePebbleOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapePebbleOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconShapePebbleOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapePebbleOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconShapePebbleOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapePebbleOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/IconShapeRoundedRectOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeRoundedRectOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconShapeRoundedRectOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeRoundedRectOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconShapeRoundedRectOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeRoundedRectOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconShapeRoundedRectOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeRoundedRectOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/IconShapeSquareOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeSquareOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconShapeSquareOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeSquareOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconShapeSquareOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeSquareOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconShapeSquareOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeSquareOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/IconShapeSquircleOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeSquircleOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconShapeSquircleOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeSquircleOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconShapeSquircleOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeSquircleOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconShapeSquircleOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeSquircleOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/IconShapeTaperedRectOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeTaperedRectOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconShapeTaperedRectOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeTaperedRectOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconShapeTaperedRectOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeTaperedRectOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconShapeTaperedRectOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeTaperedRectOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/IconShapeTeardropOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeTeardropOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconShapeTeardropOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeTeardropOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconShapeTeardropOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeTeardropOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconShapeTeardropOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeTeardropOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/IconShapeVesselOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeVesselOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/IconShapeVesselOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeVesselOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/IconShapeVesselOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeVesselOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/IconShapeVesselOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/IconShapeVesselOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/ParanoidLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/ParanoidLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/ParanoidLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/ParanoidLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/ParanoidLauncherOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/ParanoidLauncherOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/overlays.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/overlays.mk -------------------------------------------------------------------------------- /overlay/static/packages/apps/Launcher3/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/static/packages/apps/Launcher3/res/values/arrays.xml -------------------------------------------------------------------------------- /overlay/static/packages/apps/Launcher3/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/overlay/static/packages/apps/Launcher3/res/values/dimens.xml -------------------------------------------------------------------------------- /products/AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/AndroidProducts.mk -------------------------------------------------------------------------------- /products/alioth/aospa_alioth.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/alioth/aospa_alioth.mk -------------------------------------------------------------------------------- /products/alioth/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/alioth/beans.xml -------------------------------------------------------------------------------- /products/apollo/aospa_apollo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/apollo/aospa_apollo.mk -------------------------------------------------------------------------------- /products/apollo/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/apollo/beans.xml -------------------------------------------------------------------------------- /products/bitra/aospa_bitra.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/bitra/aospa_bitra.mk -------------------------------------------------------------------------------- /products/bitra/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/bitra/beans.xml -------------------------------------------------------------------------------- /products/bladerunner/aospa_bladerunner.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/bladerunner/aospa_bladerunner.mk -------------------------------------------------------------------------------- /products/bladerunner/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/bladerunner/beans.xml -------------------------------------------------------------------------------- /products/davinci/aospa_davinci.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/davinci/aospa_davinci.mk -------------------------------------------------------------------------------- /products/davinci/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/davinci/beans.xml -------------------------------------------------------------------------------- /products/dubai/aospa_dubai.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/dubai/aospa_dubai.mk -------------------------------------------------------------------------------- /products/dubai/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/dubai/beans.xml -------------------------------------------------------------------------------- /products/fuxi/aospa_fuxi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/fuxi/aospa_fuxi.mk -------------------------------------------------------------------------------- /products/fuxi/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/fuxi/beans.xml -------------------------------------------------------------------------------- /products/ishtar/aospa_ishtar.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/ishtar/aospa_ishtar.mk -------------------------------------------------------------------------------- /products/ishtar/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/ishtar/beans.xml -------------------------------------------------------------------------------- /products/lahaina/aospa_lahaina.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/lahaina/aospa_lahaina.mk -------------------------------------------------------------------------------- /products/lahaina/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/lahaina/beans.xml -------------------------------------------------------------------------------- /products/lito/aospa_lito.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/lito/aospa_lito.mk -------------------------------------------------------------------------------- /products/lito/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/lito/beans.xml -------------------------------------------------------------------------------- /products/lmi/aospa_lmi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/lmi/aospa_lmi.mk -------------------------------------------------------------------------------- /products/lmi/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/lmi/beans.xml -------------------------------------------------------------------------------- /products/marble/aospa_marble.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/marble/aospa_marble.mk -------------------------------------------------------------------------------- /products/marble/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/marble/beans.xml -------------------------------------------------------------------------------- /products/mi439_419/aospa_mi439_419.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/mi439_419/aospa_mi439_419.mk -------------------------------------------------------------------------------- /products/mi439_419/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/mi439_419/beans.xml -------------------------------------------------------------------------------- /products/miatoll/aospa_miatoll.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/miatoll/aospa_miatoll.mk -------------------------------------------------------------------------------- /products/miatoll/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/miatoll/beans.xml -------------------------------------------------------------------------------- /products/munch/aospa_munch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/munch/aospa_munch.mk -------------------------------------------------------------------------------- /products/munch/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/munch/beans.xml -------------------------------------------------------------------------------- /products/nuwa/aospa_nuwa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/nuwa/aospa_nuwa.mk -------------------------------------------------------------------------------- /products/nuwa/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/nuwa/beans.xml -------------------------------------------------------------------------------- /products/oneplus7/aospa_oneplus7.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus7/aospa_oneplus7.mk -------------------------------------------------------------------------------- /products/oneplus7/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus7/beans.xml -------------------------------------------------------------------------------- /products/oneplus7pro/aospa_oneplus7pro.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus7pro/aospa_oneplus7pro.mk -------------------------------------------------------------------------------- /products/oneplus7pro/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus7pro/beans.xml -------------------------------------------------------------------------------- /products/oneplus7t/aospa_oneplus7t.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus7t/aospa_oneplus7t.mk -------------------------------------------------------------------------------- /products/oneplus7t/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus7t/beans.xml -------------------------------------------------------------------------------- /products/oneplus7tpro/aospa_oneplus7tpro.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus7tpro/aospa_oneplus7tpro.mk -------------------------------------------------------------------------------- /products/oneplus7tpro/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus7tpro/beans.xml -------------------------------------------------------------------------------- /products/oneplus9/aospa_oneplus9.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus9/aospa_oneplus9.mk -------------------------------------------------------------------------------- /products/oneplus9/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/oneplus9/beans.xml -------------------------------------------------------------------------------- /products/pdx234/aospa_pdx234.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/pdx234/aospa_pdx234.mk -------------------------------------------------------------------------------- /products/pdx234/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/pdx234/beans.xml -------------------------------------------------------------------------------- /products/phoenix/aospa_phoenix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/phoenix/aospa_phoenix.mk -------------------------------------------------------------------------------- /products/phoenix/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/phoenix/beans.xml -------------------------------------------------------------------------------- /products/phone1/aospa_phone1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/phone1/aospa_phone1.mk -------------------------------------------------------------------------------- /products/phone1/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/phone1/beans.xml -------------------------------------------------------------------------------- /products/phone2/aospa_phone2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/phone2/aospa_phone2.mk -------------------------------------------------------------------------------- /products/phone2/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/phone2/beans.xml -------------------------------------------------------------------------------- /products/platforms/bengal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/platforms/bengal.xml -------------------------------------------------------------------------------- /products/platforms/kalama-kernel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/platforms/kalama-kernel.xml -------------------------------------------------------------------------------- /products/platforms/kalama.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/platforms/kalama.xml -------------------------------------------------------------------------------- /products/platforms/kona.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/platforms/kona.xml -------------------------------------------------------------------------------- /products/platforms/lahaina.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/platforms/lahaina.xml -------------------------------------------------------------------------------- /products/platforms/msmnile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/platforms/msmnile.xml -------------------------------------------------------------------------------- /products/platforms/taro-kernel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/platforms/taro-kernel.xml -------------------------------------------------------------------------------- /products/platforms/taro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/platforms/taro.xml -------------------------------------------------------------------------------- /products/porsche/aospa_porsche.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/porsche/aospa_porsche.mk -------------------------------------------------------------------------------- /products/porsche/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/porsche/beans.xml -------------------------------------------------------------------------------- /products/psyche/aospa_psyche.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/psyche/aospa_psyche.mk -------------------------------------------------------------------------------- /products/psyche/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/psyche/beans.xml -------------------------------------------------------------------------------- /products/sky/aospa_sky.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/sky/aospa_sky.mk -------------------------------------------------------------------------------- /products/sky/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/sky/beans.xml -------------------------------------------------------------------------------- /products/spes/aospa_spes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/spes/aospa_spes.mk -------------------------------------------------------------------------------- /products/spes/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/spes/beans.xml -------------------------------------------------------------------------------- /products/sunny/aospa_sunny.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/sunny/aospa_sunny.mk -------------------------------------------------------------------------------- /products/sunny/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/sunny/beans.xml -------------------------------------------------------------------------------- /products/surya/aospa_surya.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/surya/aospa_surya.mk -------------------------------------------------------------------------------- /products/surya/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/products/surya/beans.xml -------------------------------------------------------------------------------- /sepolicy/private/app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/app.te -------------------------------------------------------------------------------- /sepolicy/private/appdomain.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/appdomain.te -------------------------------------------------------------------------------- /sepolicy/private/bootanim.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/bootanim.te -------------------------------------------------------------------------------- /sepolicy/private/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/file.te -------------------------------------------------------------------------------- /sepolicy/private/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/file_contexts -------------------------------------------------------------------------------- /sepolicy/private/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/private/gmscore_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/gmscore_app.te -------------------------------------------------------------------------------- /sepolicy/private/hub_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/hub_app.te -------------------------------------------------------------------------------- /sepolicy/private/hwservice_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/hwservice_contexts -------------------------------------------------------------------------------- /sepolicy/private/platform_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/platform_app.te -------------------------------------------------------------------------------- /sepolicy/private/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/property.te -------------------------------------------------------------------------------- /sepolicy/private/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/property_contexts -------------------------------------------------------------------------------- /sepolicy/private/rootfs.te: -------------------------------------------------------------------------------- 1 | allow rootfs labeledfs:filesystem associate; 2 | -------------------------------------------------------------------------------- /sepolicy/private/sdcardfs.te: -------------------------------------------------------------------------------- 1 | allow sdcardfs labeledfs:filesystem associate; 2 | -------------------------------------------------------------------------------- /sepolicy/private/seapp_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/seapp_contexts -------------------------------------------------------------------------------- /sepolicy/private/service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/service.te -------------------------------------------------------------------------------- /sepolicy/private/service_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/service_contexts -------------------------------------------------------------------------------- /sepolicy/private/shell.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/shell.te -------------------------------------------------------------------------------- /sepolicy/private/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/system_server.te -------------------------------------------------------------------------------- /sepolicy/private/update_engine.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/private/update_engine.te -------------------------------------------------------------------------------- /sepolicy/public/attributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/public/attributes -------------------------------------------------------------------------------- /sepolicy/public/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/public/file.te -------------------------------------------------------------------------------- /sepolicy/public/te_macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/public/te_macros -------------------------------------------------------------------------------- /sepolicy/sepolicy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/sepolicy.mk -------------------------------------------------------------------------------- /sepolicy/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/hal_aospa_powershare.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/hal_aospa_powershare.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_aospa_powershare_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/hal_aospa_powershare_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_lineage_health.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/hal_lineage_health.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_lineage_health_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/hal_lineage_health_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/lmkd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/lmkd.te -------------------------------------------------------------------------------- /sepolicy/vendor/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/property.te -------------------------------------------------------------------------------- /sepolicy/vendor/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/property_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/service.te -------------------------------------------------------------------------------- /sepolicy/vendor/service_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/service_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/system_server.te -------------------------------------------------------------------------------- /sepolicy/vendor/vendor_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/sepolicy/vendor/vendor_init.te -------------------------------------------------------------------------------- /soong/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/soong/Android.bp -------------------------------------------------------------------------------- /target/board/BoardConfigAOSPA.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/board/BoardConfigAOSPA.mk -------------------------------------------------------------------------------- /target/board/BoardConfigKernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/board/BoardConfigKernel.mk -------------------------------------------------------------------------------- /target/board/BoardConfigSoong.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/board/BoardConfigSoong.mk -------------------------------------------------------------------------------- /target/config/aospa_vendor_framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/config/aospa_vendor_framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /target/config/apns-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/config/apns-conf.xml -------------------------------------------------------------------------------- /target/config/fonts_customization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/config/fonts_customization.xml -------------------------------------------------------------------------------- /target/config/permissions/org.lineageos.health.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/config/permissions/org.lineageos.health.xml -------------------------------------------------------------------------------- /target/config/permissions/privapp-permissions-hotword.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/config/permissions/privapp-permissions-hotword.xml -------------------------------------------------------------------------------- /target/config/preinstalled-packages-aospa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/config/preinstalled-packages-aospa.xml -------------------------------------------------------------------------------- /target/config/sensitive_pn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/config/sensitive_pn.xml -------------------------------------------------------------------------------- /target/product/aospa-target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/product/aospa-target.mk -------------------------------------------------------------------------------- /target/product/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/target/product/version.mk -------------------------------------------------------------------------------- /vendorsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AOSPA/android_vendor_aospa/HEAD/vendorsetup.sh --------------------------------------------------------------------------------