├── packages ├── Android.mk └── overlays │ ├── Android.mk │ └── common │ ├── Android.mk │ ├── HideCutout │ ├── res │ │ └── values │ │ │ ├── strings.xml │ │ │ └── config.xml │ ├── Android.mk │ └── AndroidManifest.xml │ ├── StatusBarStock │ ├── res │ │ └── values │ │ │ ├── strings.xml │ │ │ └── config.xml │ ├── Android.mk │ └── AndroidManifest.xml │ ├── PotatoThemesStub │ ├── AndroidManifest.xml │ ├── Android.mk │ └── res │ │ └── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ └── strings.xml │ └── NavigationBarNoHint │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ └── values │ └── dimens.xml ├── config ├── common_full_tablet_wifionly.mk ├── BoardConfigPotato.mk ├── partner_gms.mk ├── branding.mk ├── common_full_phone.mk └── permissions │ └── custom-power-whitelist.xml ├── version.json ├── overlay ├── common │ ├── packages │ │ └── apps │ │ │ ├── Email │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── mail_bg.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── mail_fg.png │ │ │ │ └── ic_launcher_mail.xml │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── mail_fg.png │ │ │ │ └── ic_launcher_mail.xml │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── mail_fg.png │ │ │ │ └── ic_launcher_mail.xml │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── mail_fg.png │ │ │ │ └── ic_launcher_mail.xml │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── mail_fg.png │ │ │ │ └── ic_launcher_mail.xml │ │ │ ├── Snap │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── camera_bg.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── camera_fg.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── camera_fg.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── camera_fg.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── camera_fg.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── camera_fg.png │ │ │ │ └── mipmap-anydpi │ │ │ │ └── ic_launcher.xml │ │ │ ├── Camera2 │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── camera_bg.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── camera_fg.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── camera_fg.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── camera_fg.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── camera_fg.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── camera_fg.png │ │ │ │ └── mipmap-anydpi │ │ │ │ └── logo_camera_color.xml │ │ │ ├── DeskClock │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── clock_bg.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── clock_fg.png │ │ │ │ └── ic_launcher_alarmclock.xml │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── clock_fg.png │ │ │ │ └── ic_launcher_alarmclock.xml │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── clock_fg.png │ │ │ │ └── ic_launcher_alarmclock.xml │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── clock_fg.png │ │ │ │ └── ic_launcher_alarmclock.xml │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── clock_fg.png │ │ │ │ └── ic_launcher_alarmclock.xml │ │ │ ├── Gallery2 │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── gallery_bg.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── gallery_fg.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── gallery_fg.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── gallery_fg.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── gallery_fg.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── gallery_fg.png │ │ │ │ └── mipmap-anydpi │ │ │ │ └── ic_launcher_gallery.xml │ │ │ ├── Calendar │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── calendar_bg.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── calendar_fg.png │ │ │ │ └── ic_launcher_calendar.xml │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── calendar_fg.png │ │ │ │ └── ic_launcher_calendar.xml │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── calendar_fg.png │ │ │ │ └── ic_launcher_calendar.xml │ │ │ │ └── mipmap-xxhdpi │ │ │ │ ├── calendar_fg.png │ │ │ │ └── ic_launcher_calendar.xml │ │ │ ├── Contacts │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── contacts_bg.xml │ │ │ │ ├── mipmap-hdpi-v26 │ │ │ │ ├── contacts_fg.png │ │ │ │ └── ic_contacts_launcher.xml │ │ │ │ ├── mipmap-mdpi-v26 │ │ │ │ ├── contacts_fg.png │ │ │ │ └── ic_contacts_launcher.xml │ │ │ │ ├── mipmap-xhdpi-v26 │ │ │ │ ├── contacts_fg.png │ │ │ │ └── ic_contacts_launcher.xml │ │ │ │ ├── mipmap-xxhdpi-v26 │ │ │ │ ├── contacts_fg.png │ │ │ │ └── ic_contacts_launcher.xml │ │ │ │ └── mipmap-xxxhdpi-v26 │ │ │ │ ├── contacts_fg.png │ │ │ │ └── ic_contacts_launcher.xml │ │ │ ├── Messaging │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── messages_bg.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── messages_fg.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── messages_fg.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── messages_fg.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── messages_fg.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── messages_fg.png │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher.xml │ │ │ │ └── drawable-xxxhdpi │ │ │ │ └── ic_launcher.xml │ │ │ ├── Settings │ │ │ └── res │ │ │ │ ├── values │ │ │ │ ├── settings_bg.xml │ │ │ │ └── dimens.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── settings_fg.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── settings_fg.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── settings_fg.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── settings_fg.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── settings_fg.png │ │ │ │ └── drawable │ │ │ │ └── ic_launcher_settings.xml │ │ │ ├── DocumentsUI │ │ │ └── res │ │ │ │ ├── values │ │ │ │ ├── downloads_bg.xml │ │ │ │ └── config.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── downloads_fg.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── downloads_fg.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── downloads_fg.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── downloads_fg.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── downloads_fg.png │ │ │ │ └── mipmap-anydpi │ │ │ │ └── ic_app_icon.xml │ │ │ ├── ExactCalculator │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── calculator_bg.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── calculator_fg.png │ │ │ │ └── ic_launcher_calculator.xml │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── calculator_fg.png │ │ │ │ └── ic_launcher_calculator.xml │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── calculator_fg.png │ │ │ │ └── ic_launcher_calculator.xml │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── calculator_fg.png │ │ │ │ └── ic_launcher_calculator.xml │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── calculator_fg.png │ │ │ │ └── ic_launcher_calculator.xml │ │ │ ├── Dialer │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── dialer │ │ │ │ └── app │ │ │ │ └── res │ │ │ │ ├── values │ │ │ │ └── dialer_bg.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── dialer_fg.png │ │ │ │ └── ic_launcher_phone.xml │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── dialer_fg.png │ │ │ │ └── ic_launcher_phone.xml │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── dialer_fg.png │ │ │ │ └── ic_launcher_phone.xml │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── dialer_fg.png │ │ │ │ └── ic_launcher_phone.xml │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── dialer_fg.png │ │ │ │ └── ic_launcher_phone.xml │ │ │ ├── Launcher3 │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ │ ├── ThemePicker │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── override.xml │ │ │ └── PackageInstaller │ │ │ └── res │ │ │ └── values │ │ │ └── styles.xml │ ├── hardware │ │ └── qcom │ │ │ └── fm │ │ │ └── fmapp2 │ │ │ └── res │ │ │ ├── values │ │ │ └── fmradio_bg.xml │ │ │ ├── mipmap-hdpi │ │ │ └── fmradio_fg.png │ │ │ ├── mipmap-mdpi │ │ │ └── fmradio_fg.png │ │ │ ├── mipmap-xhdpi │ │ │ └── fmradio_fg.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── fmradio_fg.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── fmradio_fg.png │ │ │ └── mipmap-anydpi │ │ │ └── ic_launcher.xml │ └── frameworks │ │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── default_wallpaper.png │ │ │ ├── drawable-nodpi │ │ │ └── default_wallpaper.png │ │ │ ├── drawable-xhdpi │ │ │ └── default_wallpaper.png │ │ │ ├── drawable-xxhdpi │ │ │ └── default_wallpaper.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── default_wallpaper.png │ │ │ ├── drawable-sw600dp-nodpi │ │ │ └── default_wallpaper.png │ │ │ ├── drawable-sw720dp-nodpi │ │ │ └── default_wallpaper.png │ │ │ └── values │ │ │ └── colors.xml │ │ └── packages │ │ ├── SystemUI │ │ └── res │ │ │ ├── values │ │ │ ├── flags.xml │ │ │ └── config.xml │ │ │ └── values-night │ │ │ └── colors.xml │ │ └── SettingsProvider │ │ └── res │ │ └── values │ │ └── defaults.xml └── themes │ └── icons │ ├── IconPackKaiAndroidOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_expand_more.xml │ │ │ └── ic_battery_80_24dp.xml │ └── AndroidManifest.xml │ ├── IconPackKaiLauncherOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ └── ic_drag_handle.xml │ └── AndroidManifest.xml │ ├── IconPackKaiSettingsOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_expand_less.xml │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ ├── ic_settings_battery_white.xml │ │ │ ├── ic_expand_more_inverse.xml │ │ │ ├── drag_handle.xml │ │ │ ├── ic_add_24dp.xml │ │ │ ├── ic_arrow_back.xml │ │ │ └── ic_chevron_right_24dp.xml │ └── AndroidManifest.xml │ ├── IconPackSamAndroidOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ ├── ic_wifi_signal_4.xml │ │ │ ├── ic_battery_80_24dp.xml │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ └── ic_signal_cellular_3_4_bar.xml │ └── AndroidManifest.xml │ ├── IconPackSamLauncherOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackSamSettingsOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_settings_battery_white.xml │ │ │ ├── ic_local_movies.xml │ │ │ └── ic_network_cell.xml │ └── AndroidManifest.xml │ ├── IconPackFilledAndroidOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackKaiSystemUIOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_drag_handle.xml │ │ │ ├── ic_close_white.xml │ │ │ └── ic_arrow_back.xml │ └── AndroidManifest.xml │ ├── IconPackSamSystemUIOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_drag_handle.xml │ │ │ └── ic_location.xml │ └── AndroidManifest.xml │ ├── IconPackFilledLauncherOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackFilledSettingsOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackFilledSystemUIOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackRoundedAndroidOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackVictorAndroidOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_signal_cellular_4_4_bar.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_wifi_signal_4.xml │ │ │ ├── ic_battery_80_24dp.xml │ │ │ ├── ic_expand_more.xml │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ ├── perm_group_storage.xml │ │ │ ├── ic_wifi_signal_0.xml │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ ├── ic_qs_dnd.xml │ │ │ ├── ic_mode_edit.xml │ │ │ ├── ic_wifi_signal_3.xml │ │ │ └── ic_wifi_signal_1.xml │ └── AndroidManifest.xml │ ├── IconPackVictorLauncherOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_drag_handle.xml │ │ │ ├── ic_hourglass_top.xml │ │ │ └── ic_pin.xml │ └── AndroidManifest.xml │ ├── IconPackVictorSettingsOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_network_cell.xml │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ ├── ic_expand_less.xml │ │ │ ├── ic_expand_more_inverse.xml │ │ │ ├── ic_media_stream.xml │ │ │ ├── ic_settings_battery_white.xml │ │ │ ├── ic_folder_vd_theme_24.xml │ │ │ ├── ic_chevron_right_24dp.xml │ │ │ ├── drag_handle.xml │ │ │ ├── ic_arrow_back.xml │ │ │ ├── ic_add_24dp.xml │ │ │ ├── ic_settings_home.xml │ │ │ └── ic_local_movies.xml │ └── AndroidManifest.xml │ ├── IconPackCircularAndroidOverlay │ ├── Android.bp │ ├── res │ │ └── anim │ │ │ └── ic_signal_wifi_transient_animation_4.xml │ └── AndroidManifest.xml │ ├── IconPackCircularLauncherOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackCircularSettingsOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackCircularSystemUIOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackRoundedLauncherOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackRoundedSettingsOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackRoundedSystemUIOverlay │ ├── Android.bp │ └── AndroidManifest.xml │ ├── IconPackVictorSystemUIOverlay │ ├── Android.bp │ ├── res │ │ └── drawable │ │ │ ├── ic_volume_media.xml │ │ │ ├── ic_drag_handle.xml │ │ │ ├── ic_close_white.xml │ │ │ ├── ic_invert_colors.xml │ │ │ └── ic_arrow_back.xml │ └── AndroidManifest.xml │ ├── IconShapePebbleOverlay │ ├── Android.bp │ └── res │ │ └── values │ │ └── strings.xml │ ├── IconShapeSquareOverlay │ ├── Android.bp │ └── res │ │ └── values │ │ └── strings.xml │ ├── IconShapeVesselOverlay │ ├── Android.bp │ └── res │ │ └── values │ │ └── strings.xml │ ├── IconShapeSquircleOverlay │ ├── Android.bp │ └── res │ │ └── values │ │ └── strings.xml │ ├── IconShapeTeardropOverlay │ ├── Android.bp │ └── res │ │ └── values │ │ └── strings.xml │ ├── IconShapeRoundedRectOverlay │ ├── Android.bp │ └── res │ │ └── values │ │ └── strings.xml │ └── IconShapeTaperedRectOverlay │ ├── Android.bp │ └── res │ └── values │ └── strings.xml ├── prebuilt └── common │ └── etc │ ├── permissions │ ├── co.potatoproject.posp.xml │ └── privapp-permissions-fries.xml │ ├── sysconfig │ └── potatofries-hiddenapi-package-whitelist.xml │ ├── dialer_experience.xml │ └── spn-conf.xml ├── devices.json └── libbfqio └── include └── bfqio └── bfqio.h /packages/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | 3 | include $(call all-makefiles-under,$(LOCAL_PATH)) 4 | -------------------------------------------------------------------------------- /packages/overlays/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | 3 | include $(call all-makefiles-under,$(LOCAL_PATH)) 4 | -------------------------------------------------------------------------------- /config/common_full_tablet_wifionly.mk: -------------------------------------------------------------------------------- 1 | # Inherit common stuff 2 | $(call inherit-product, vendor/potato/config/common.mk) 3 | -------------------------------------------------------------------------------- /packages/overlays/common/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | 3 | include $(call all-makefiles-under,$(LOCAL_PATH)) 4 | -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- 1 | { 2 | "dish": "hashbrown", 3 | "platform": "14", 4 | "vernum": "7.0.0+staging1" 5 | } 6 | -------------------------------------------------------------------------------- /config/BoardConfigPotato.mk: -------------------------------------------------------------------------------- 1 | include vendor/potato/config/BoardConfigKernel.mk 2 | include vendor/potato/config/BoardConfigSoong.mk 3 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/values/mail_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFB127 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Snap/res/values/camera_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #356FEF 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Camera2/res/values/camera_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #356FEF 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/values/clock_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #89D35E 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Gallery2/res/values/gallery_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF5252 4 | -------------------------------------------------------------------------------- /overlay/common/hardware/qcom/fm/fmapp2/res/values/fmradio_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF6490 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Calendar/res/values/calendar_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #00A6E0 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/values/contacts_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #00BCD4 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-hdpi/mail_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Email/res/mipmap-hdpi/mail_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-mdpi/mail_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Email/res/mipmap-mdpi/mail_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/values/messages_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #66BB6A 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/settings_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #546E7A 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/DocumentsUI/res/values/downloads_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #4D42E2 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-xhdpi/mail_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Email/res/mipmap-xhdpi/mail_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-xxhdpi/mail_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Email/res/mipmap-xxhdpi/mail_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-xxxhdpi/mail_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Email/res/mipmap-xxxhdpi/mail_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Snap/res/mipmap-hdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Snap/res/mipmap-hdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Snap/res/mipmap-mdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Snap/res/mipmap-mdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Snap/res/mipmap-xhdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Snap/res/mipmap-xhdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Snap/res/mipmap-xxhdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Snap/res/mipmap-xxhdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Camera2/res/mipmap-hdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Camera2/res/mipmap-hdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Camera2/res/mipmap-mdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Camera2/res/mipmap-mdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Camera2/res/mipmap-xhdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Camera2/res/mipmap-xhdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-hdpi/clock_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DeskClock/res/mipmap-hdpi/clock_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-mdpi/clock_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DeskClock/res/mipmap-mdpi/clock_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/values/calculator_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF7043 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Snap/res/mipmap-xxxhdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Snap/res/mipmap-xxxhdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-hdpi/fmradio_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-hdpi/fmradio_fg.png -------------------------------------------------------------------------------- /overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-mdpi/fmradio_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-mdpi/fmradio_fg.png -------------------------------------------------------------------------------- /overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-xhdpi/fmradio_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-xhdpi/fmradio_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Calendar/res/mipmap-hdpi/calendar_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Calendar/res/mipmap-hdpi/calendar_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Calendar/res/mipmap-mdpi/calendar_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Calendar/res/mipmap-mdpi/calendar_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Calendar/res/mipmap-xhdpi/calendar_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Calendar/res/mipmap-xhdpi/calendar_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Camera2/res/mipmap-xxhdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Camera2/res/mipmap-xxhdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Camera2/res/mipmap-xxxhdpi/camera_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Camera2/res/mipmap-xxxhdpi/camera_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-xhdpi/clock_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DeskClock/res/mipmap-xhdpi/clock_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-xxhdpi/clock_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DeskClock/res/mipmap-xxhdpi/clock_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-xxxhdpi/clock_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DeskClock/res/mipmap-xxxhdpi/clock_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Gallery2/res/mipmap-hdpi/gallery_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Gallery2/res/mipmap-hdpi/gallery_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Gallery2/res/mipmap-mdpi/gallery_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Gallery2/res/mipmap-mdpi/gallery_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Gallery2/res/mipmap-xhdpi/gallery_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Gallery2/res/mipmap-xhdpi/gallery_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Gallery2/res/mipmap-xxhdpi/gallery_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Gallery2/res/mipmap-xxhdpi/gallery_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/mipmap-hdpi/messages_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Messaging/res/mipmap-hdpi/messages_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/mipmap-mdpi/messages_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Messaging/res/mipmap-mdpi/messages_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/mipmap-hdpi/settings_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Settings/res/mipmap-hdpi/settings_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/mipmap-mdpi/settings_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Settings/res/mipmap-mdpi/settings_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/mipmap-xhdpi/settings_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Settings/res/mipmap-xhdpi/settings_fg.png -------------------------------------------------------------------------------- /overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-xxhdpi/fmradio_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-xxhdpi/fmradio_fg.png -------------------------------------------------------------------------------- /overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-xxxhdpi/fmradio_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-xxxhdpi/fmradio_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Calendar/res/mipmap-xxhdpi/calendar_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Calendar/res/mipmap-xxhdpi/calendar_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/values/dialer_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #00BFA5 4 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Gallery2/res/mipmap-xxxhdpi/gallery_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Gallery2/res/mipmap-xxxhdpi/gallery_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/mipmap-xhdpi/messages_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Messaging/res/mipmap-xhdpi/messages_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/mipmap-xxhdpi/messages_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Messaging/res/mipmap-xxhdpi/messages_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/mipmap-xxhdpi/settings_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Settings/res/mipmap-xxhdpi/settings_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/mipmap-xxxhdpi/settings_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Settings/res/mipmap-xxxhdpi/settings_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-hdpi-v26/contacts_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Contacts/res/mipmap-hdpi-v26/contacts_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-mdpi-v26/contacts_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Contacts/res/mipmap-mdpi-v26/contacts_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-xhdpi-v26/contacts_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Contacts/res/mipmap-xhdpi-v26/contacts_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-xxhdpi-v26/contacts_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Contacts/res/mipmap-xxhdpi-v26/contacts_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DocumentsUI/res/mipmap-hdpi/downloads_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DocumentsUI/res/mipmap-hdpi/downloads_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DocumentsUI/res/mipmap-mdpi/downloads_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DocumentsUI/res/mipmap-mdpi/downloads_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DocumentsUI/res/mipmap-xhdpi/downloads_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DocumentsUI/res/mipmap-xhdpi/downloads_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DocumentsUI/res/mipmap-xxhdpi/downloads_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DocumentsUI/res/mipmap-xxhdpi/downloads_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/mipmap-xxxhdpi/messages_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Messaging/res/mipmap-xxxhdpi/messages_fg.png -------------------------------------------------------------------------------- /config/partner_gms.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(WITH_GMS),true) 2 | $(call inherit-product, vendor/google/gms/gms-vendor.mk) 3 | $(call inherit-product-if-exists, vendor/partner_modules/build/mainline_modules.mk) 4 | endif 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-xxxhdpi-v26/contacts_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Contacts/res/mipmap-xxxhdpi-v26/contacts_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/DocumentsUI/res/mipmap-xxxhdpi/downloads_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/DocumentsUI/res/mipmap-xxxhdpi/downloads_fg.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-hdpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/frameworks/base/core/res/res/drawable-hdpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-xhdpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/frameworks/base/core/res/res/drawable-xhdpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-hdpi/calculator_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/ExactCalculator/res/mipmap-hdpi/calculator_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-mdpi/calculator_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/ExactCalculator/res/mipmap-mdpi/calculator_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-xhdpi/calculator_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/ExactCalculator/res/mipmap-xhdpi/calculator_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-xxhdpi/calculator_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/ExactCalculator/res/mipmap-xxhdpi/calculator_fg.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-xxhdpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/frameworks/base/core/res/res/drawable-xxhdpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-xxxhdpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/frameworks/base/core/res/res/drawable-xxxhdpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-xxxhdpi/calculator_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/ExactCalculator/res/mipmap-xxxhdpi/calculator_fg.png -------------------------------------------------------------------------------- /prebuilt/common/etc/permissions/co.potatoproject.posp.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /packages/overlays/common/HideCutout/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Cutout Hide 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-sw600dp-nodpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/frameworks/base/core/res/res/drawable-sw600dp-nodpi/default_wallpaper.png -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/drawable-sw720dp-nodpi/default_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/frameworks/base/core/res/res/drawable-sw720dp-nodpi/default_wallpaper.png -------------------------------------------------------------------------------- /packages/overlays/common/StatusBarStock/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Default StatusBar 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-hdpi/dialer_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-hdpi/dialer_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-mdpi/dialer_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-mdpi/dialer_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-xhdpi/dialer_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-xhdpi/dialer_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-xxhdpi/dialer_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-xxhdpi/dialer_fg.png -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-xxxhdpi/dialer_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoProject/vendor_potato/HEAD/overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-xxxhdpi/dialer_fg.png -------------------------------------------------------------------------------- /prebuilt/common/etc/sysconfig/potatofries-hiddenapi-package-whitelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-hdpi/ic_launcher_mail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-mdpi/ic_launcher_mail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-xhdpi/ic_launcher_mail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Snap/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/overlays/common/PotatoThemesStub/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-xxhdpi/ic_launcher_mail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Email/res/mipmap-xxxhdpi/ic_launcher_mail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/overlays/common/HideCutout/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | true 5 | 6 | -------------------------------------------------------------------------------- /overlay/common/hardware/qcom/fm/fmapp2/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Camera2/res/mipmap-anydpi/logo_camera_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/drawable-hdpi/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/drawable-mdpi/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/drawable-xhdpi/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/drawable-xxhdpi/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Calendar/res/mipmap-hdpi/ic_launcher_calendar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Calendar/res/mipmap-mdpi/ic_launcher_calendar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Calendar/res/mipmap-xhdpi/ic_launcher_calendar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-hdpi/ic_launcher_alarmclock.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-mdpi/ic_launcher_alarmclock.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-xhdpi/ic_launcher_alarmclock.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-xxhdpi/ic_launcher_alarmclock.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/DeskClock/res/mipmap-xxxhdpi/ic_launcher_alarmclock.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/DocumentsUI/res/mipmap-anydpi/ic_app_icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Gallery2/res/mipmap-anydpi/ic_launcher_gallery.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Messaging/res/drawable-xxxhdpi/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/drawable/ic_launcher_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/overlays/common/HideCutout/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH:= $(call my-dir) 2 | include $(CLEAR_VARS) 3 | 4 | LOCAL_MODULE_TAGS := optional 5 | 6 | LOCAL_PACKAGE_NAME := HideCutout 7 | LOCAL_SDK_VERSION := current 8 | LOCAL_CERTIFICATE := platform 9 | LOCAL_PRIVILEGED_MODULE := false 10 | 11 | include $(BUILD_PACKAGE) 12 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Calendar/res/mipmap-xxhdpi/ic_launcher_calendar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-hdpi-v26/ic_contacts_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-mdpi-v26/ic_contacts_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-xhdpi-v26/ic_contacts_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-xxhdpi-v26/ic_contacts_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/overlays/common/StatusBarStock/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH:= $(call my-dir) 2 | include $(CLEAR_VARS) 3 | 4 | LOCAL_MODULE_TAGS := optional 5 | 6 | LOCAL_PACKAGE_NAME := StatusBarStock 7 | LOCAL_SDK_VERSION := current 8 | LOCAL_CERTIFICATE := platform 9 | LOCAL_PRIVILEGED_MODULE := false 10 | 11 | include $(BUILD_PACKAGE) 12 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Contacts/res/mipmap-xxxhdpi-v26/ic_contacts_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-hdpi/ic_launcher_calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-mdpi/ic_launcher_calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-xhdpi/ic_launcher_calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-xxhdpi/ic_launcher_calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/ExactCalculator/res/mipmap-xxxhdpi/ic_launcher_calculator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-hdpi/ic_launcher_phone.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-mdpi/ic_launcher_phone.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-xhdpi/ic_launcher_phone.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-xxhdpi/ic_launcher_phone.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/overlays/common/StatusBarStock/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 28dp 5 | 28dp 6 | 7 | -------------------------------------------------------------------------------- /prebuilt/common/etc/dialer_experience.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Dialer/java/com/android/dialer/app/res/mipmap-xxxhdpi/ic_launcher_phone.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/overlays/common/PotatoThemesStub/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH:= $(call my-dir) 2 | include $(CLEAR_VARS) 3 | 4 | LOCAL_PRODUCT_MODULE := true 5 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 6 | LOCAL_MANIFEST_FILE := AndroidManifest.xml 7 | LOCAL_PACKAGE_NAME := PotatoThemesStub 8 | LOCAL_SDK_VERSION := current 9 | 10 | include $(BUILD_PACKAGE) 11 | -------------------------------------------------------------------------------- /devices.json: -------------------------------------------------------------------------------- 1 | { 2 | "beryllium": { 3 | "repo": "https://github.com/PotatoDevices/device_xiaomi_beryllium", 4 | "gms": true 5 | }, 6 | "sargo": { 7 | "repo": "https://github.com/PotatoDevices/device_google_sargo", 8 | "gms": true 9 | }, 10 | "spacewar": { 11 | "repo": "https://github.com/PotatoDevices/device_nothing_spacewar", 12 | "gms": true 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /packages/overlays/common/PotatoThemesStub/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | default 8 | bundle1 9 | bundle2 10 | bundle3 11 | 12 | 13 | -------------------------------------------------------------------------------- /packages/overlays/common/NavigationBarNoHint/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH:= $(call my-dir) 2 | include $(CLEAR_VARS) 3 | 4 | LOCAL_RRO_THEME := NavigationBarNoHint 5 | LOCAL_PRODUCT_MODULE := true 6 | LOCAL_CERTIFICATE := platform 7 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 8 | LOCAL_PACKAGE_NAME := NavigationBarNoHint 9 | 10 | LOCAL_PRIVATE_PLATFORM_APIS := true 11 | 12 | include $(BUILD_RRO_PACKAGE) 13 | -------------------------------------------------------------------------------- /packages/overlays/common/HideCutout/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Launcher3/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.android.wallpaper 5 | 6 | 7 | true 8 | 9 | -------------------------------------------------------------------------------- /packages/overlays/common/StatusBarStock/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/overlays/common/NavigationBarNoHint/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 11 | 12 | -------------------------------------------------------------------------------- /packages/overlays/common/PotatoThemesStub/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #0a8758 5 | #746bc1 6 | #a66800 7 | #ffffff 8 | #0a8758 9 | #746bc1 10 | #a66800 11 | #1a73e8 12 | 13 | -------------------------------------------------------------------------------- /config/branding.mk: -------------------------------------------------------------------------------- 1 | GET_VERSION := vendor/potato/build/tools/getversion.py 2 | $(shell $(GET_VERSION) invalidate) 3 | POTATO_VERNUM := $(shell $(GET_VERSION) vernum) 4 | POTATO_DISH := $(shell $(GET_VERSION) dish) 5 | BUILD_DATE_TIME := $(BUILD_TIME)$(BUILD_DATE) 6 | BUILD_TYPE := $(shell $(GET_VERSION) buildtype) 7 | POTATO_BRANDING_VERSION := $(BUILD_TYPE) 8 | POTATO_VERSION := $(shell $(GET_VERSION) version) 9 | $(shell $(GET_VERSION) write) 10 | ifeq ($(filter-out Cheesy Mashed Salad, $(BUILD_TYPE)),) 11 | PRODUCT_PACKAGES += \ 12 | Updater 13 | endif 14 | 15 | ifneq ($(SIGNING_KEYS),) 16 | PRODUCT_DEFAULT_DEV_CERTIFICATE := $(SIGNING_KEYS)/releasekey 17 | endif 18 | -------------------------------------------------------------------------------- /packages/overlays/common/NavigationBarNoHint/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 0dp 9 | 10 | 0dp 11 | 12 | 0dp 13 | 14 | -------------------------------------------------------------------------------- /config/common_full_phone.mk: -------------------------------------------------------------------------------- 1 | # Inherit common stuff 2 | $(call inherit-product, vendor/potato/config/common.mk) 3 | 4 | # World APN list 5 | PRODUCT_COPY_FILES += \ 6 | vendor/potato/prebuilt/common/etc/apns-conf.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/apns-conf.xml 7 | 8 | # World SPN overrides list 9 | PRODUCT_COPY_FILES += \ 10 | vendor/potato/prebuilt/common/etc/spn-conf.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/spn-conf.xml 11 | 12 | # Selective SPN list for operator number who has the problem. 13 | PRODUCT_COPY_FILES += \ 14 | vendor/potato/prebuilt/common/etc/selective-spn-conf.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/selective-spn-conf.xml 15 | 16 | # Phone related apps 17 | PRODUCT_PACKAGES += \ 18 | messaging \ 19 | Stk 20 | -------------------------------------------------------------------------------- /packages/overlays/common/PotatoThemesStub/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Teracube Themes 5 | 6 | 7 | Carbon 8 | Paper 9 | Sun 10 | Classic 11 | @string/bundle1_color_name 12 | @string/bundle2_color_name 13 | @string/bundle3_color_name 14 | @string/default_color_name 15 | 16 | -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ff5e97f6 4 | #ff5c6bc0 5 | #ff26a69a 6 | #ffec407a 7 | #ff33ac71 8 | #ff8bc34a 9 | #ffff9800 10 | #ffff7043 11 | #ffea4335 12 | #ff151618 13 | 14 | 15 | #ff5a9af8 16 | #ff5795f0 17 | 18 | 19 | -------------------------------------------------------------------------------- /libbfqio/include/bfqio/bfqio.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2017 The LineageOS Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #pragma once 18 | 19 | #ifdef __cplusplus 20 | extern "C" { 21 | #endif 22 | 23 | int android_set_rt_ioprio(int pid, int rt); 24 | 25 | #ifdef __cplusplus 26 | } 27 | #endif 28 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (C) 2020, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackKaiAndroidOverlay", 19 | theme: "IconPackKaiAndroid", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackKaiLauncherOverlay", 19 | theme: "IconPackKaiLauncher", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackKaiSettingsOverlay", 19 | theme: "IconPackKaiSettings", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (C) 2020, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackSamAndroidOverlay", 19 | theme: "IconPackSamAndroid", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackSamLauncherOverlay", 19 | theme: "IconPackSamLauncher", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackSamSettingsOverlay", 19 | theme: "IconPackSamSettings", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackFilledAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackFilledAndroidOverlay", 19 | theme: "IconPackFilledAndroid", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (C) 2020, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackKaiSystemUIOverlay", 19 | theme: "IconPackKaiSystemUI", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (C) 2020, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackSamSystemUIOverlay", 19 | theme: "IconPackSamSystemUI", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackFilledLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackFilledLauncherOverlay", 19 | theme: "IconPackFilledLauncher", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackFilledSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackFilledSettingsOverlay", 19 | theme: "IconPackFilledSettings", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackFilledSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackFilledSystemUIOverlay", 19 | theme: "IconPackFilledSystemUI", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackRoundedAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackRoundedAndroidOverlay", 19 | theme: "IconPackRoundedAndroid", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (C) 2020, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackVictorAndroidOverlay", 19 | theme: "IconPackVictorAndroid", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackVictorLauncherOverlay", 19 | theme: "IconPackVictorLauncher", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackVictorSettingsOverlay", 19 | theme: "IconPackVictorSettings", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackCircularAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackCircularAndroidOverlay", 19 | theme: "IconPackCircularAndroid", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackCircularLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackCircularLauncherOverlay", 19 | theme: "IconPackCircularLauncher", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackCircularSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackCircularSettingsOverlay", 19 | theme: "IconPackCircularSettings", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackCircularSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackCircularSystemUIOverlay", 19 | theme: "IconPackCircularSystemUI", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackRoundedLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackRoundedLauncherOverlay", 19 | theme: "IconPackRoundedLauncher", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackRoundedSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackRoundedSettingsOverlay", 19 | theme: "IconPackRoundedSettings", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackRoundedSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2019, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackRoundedSystemUIOverlay", 19 | theme: "IconPackRoundedSystemUI", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (C) 2020, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | runtime_resource_overlay { 18 | name: "IconPackVictorSystemUIOverlay", 19 | theme: "IconPackVictorSystemUI", 20 | product_specific: true, 21 | } 22 | -------------------------------------------------------------------------------- /config/permissions/custom-power-whitelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 24.0dip 15 | 8.0dip 16 | 17 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/ThemePicker/res/values/override.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | co.potatoproject.stub 20 | 21 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/DocumentsUI/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | true 19 | true 20 | 21 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapePebbleOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2020, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | package { 18 | default_applicable_licenses: ["Android-Apache-2.0"], 19 | } 20 | 21 | runtime_resource_overlay { 22 | name: "IconShapePebbleOverlay", 23 | theme: "IconShapePebble", 24 | product_specific: true, 25 | } 26 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeSquareOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2018, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | package { 18 | default_applicable_licenses: ["Android-Apache-2.0"], 19 | } 20 | 21 | runtime_resource_overlay { 22 | name: "IconShapeSquareOverlay", 23 | theme: "IconShapeSquare", 24 | product_specific: true, 25 | } 26 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeVesselOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2020, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | package { 18 | default_applicable_licenses: ["Android-Apache-2.0"], 19 | } 20 | 21 | runtime_resource_overlay { 22 | name: "IconShapeVesselOverlay", 23 | theme: "IconShapeVessel", 24 | product_specific: true, 25 | } 26 | -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/SystemUI/res/values/flags.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | true 19 | true 20 | true 21 | 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeSquircleOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2018, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | package { 18 | default_applicable_licenses: ["Android-Apache-2.0"], 19 | } 20 | 21 | runtime_resource_overlay { 22 | name: "IconShapeSquircleOverlay", 23 | theme: "IconShapeSquircle", 24 | product_specific: true, 25 | } 26 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeTeardropOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2018, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | package { 18 | default_applicable_licenses: ["Android-Apache-2.0"], 19 | } 20 | 21 | runtime_resource_overlay { 22 | name: "IconShapeTeardropOverlay", 23 | theme: "IconShapeTeardrop", 24 | product_specific: true, 25 | } 26 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeRoundedRectOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2018, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | package { 18 | default_applicable_licenses: ["Android-Apache-2.0"], 19 | } 20 | 21 | runtime_resource_overlay { 22 | name: "IconShapeRoundedRectOverlay", 23 | theme: "IconShapeRoundedRect", 24 | product_specific: true, 25 | } 26 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeTaperedRectOverlay/Android.bp: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2020, The Android Open Source Project 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | package { 18 | default_applicable_licenses: ["Android-Apache-2.0"], 19 | } 20 | 21 | runtime_resource_overlay { 22 | name: "IconShapeTaperedRectOverlay", 23 | theme: "IconShapeTaperedRect", 24 | product_specific: true, 25 | } 26 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeTaperedRectOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | Tapered Rect 19 | 20 | 21 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapePebbleOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | Pebble 22 | 23 | 24 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeVesselOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | Vessel 20 | 21 | 22 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeSquareOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | Square 22 | 23 | 24 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeTeardropOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | Teardrop 22 | 23 | 24 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeSquircleOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | Squircle 22 | 23 | 24 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_signal_cellular_4_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconShapeRoundedRectOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | Rounded Rectangle 22 | 23 | 24 | -------------------------------------------------------------------------------- /prebuilt/common/etc/permissions/privapp-permissions-fries.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_signal_cellular_0_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_signal_cellular_1_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_signal_cellular_2_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_signal_cellular_3_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_wifi_signal_4.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/common/packages/apps/PackageInstaller/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 15 | 20 | 21 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/res/drawable/ic_qs_ui_mode_night.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_battery_80_24dp.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_expand_more.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_network_cell.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_arrow_down_24dp.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_expand_less.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/SystemUI/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | 20 | 21 | 22 | 23 | @*android:color/accent_device_default_light 24 | 25 | 26 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/res/drawable/ic_signal_cellular_4_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_qs_ui_mode_night.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_expand_more_inverse.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_media_stream.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_settings_battery_white.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSystemUIOverlay/res/drawable/ic_volume_media.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /prebuilt/common/etc/spn-conf.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/SettingsProvider/res/values/defaults.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | true 21 | true 22 | true 23 | com.google.android.gms/.backup.BackupTransportService 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSystemUIOverlay/res/drawable/ic_drag_handle.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/res/drawable/ic_expand_less.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamSettingsOverlay/res/drawable/ic_settings_battery_white.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSystemUIOverlay/res/drawable/ic_drag_handle.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSystemUIOverlay/res/drawable/ic_close_white.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiAndroidOverlay/res/drawable/ic_expand_more.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/perm_group_storage.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSystemUIOverlay/res/drawable/ic_close_white.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/res/drawable/ic_arrow_down_24dp.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/res/drawable/ic_settings_battery_white.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_wifi_signal_0.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_folder_vd_theme_24.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackCircularAndroidOverlay/res/anim/ic_signal_wifi_transient_animation_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 21 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/res/drawable/ic_wifi_signal_4.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSystemUIOverlay/res/drawable/ic_invert_colors.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/res/drawable/ic_expand_more_inverse.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_chevron_right_24dp.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/res/drawable/ic_battery_80_24dp.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | 6 | 9 | com.google.android.markup/com.google.android.markup.AnnotateActivity 10 | 11 | 12 | true 13 | 14 | 15 | 16 | com.android.systemui.plugin.globalactions.wallet 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiLauncherOverlay/res/drawable/ic_drag_handle.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/res/drawable/drag_handle.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/res/drawable/ic_signal_cellular_1_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/res/drawable/ic_signal_cellular_2_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorLauncherOverlay/res/drawable/ic_drag_handle.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorLauncherOverlay/res/drawable/ic_hourglass_top.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorLauncherOverlay/res/drawable/ic_pin.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/res/drawable/ic_add_24dp.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/res/drawable/ic_signal_cellular_0_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamAndroidOverlay/res/drawable/ic_signal_cellular_3_4_bar.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamSystemUIOverlay/res/drawable/ic_drag_handle.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/drag_handle.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSystemUIOverlay/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackFilledAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSystemUIOverlay/res/drawable/ic_arrow_back.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamSettingsOverlay/res/drawable/ic_local_movies.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_bt_pointing_hid.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_qs_dnd.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_add_24dp.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_settings_home.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackCircularAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSettingsOverlay/res/drawable/ic_chevron_right_24dp.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackRoundedAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamSettingsOverlay/res/drawable/ic_network_cell.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_mode_edit.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackFilledLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackFilledSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackFilledSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackCircularSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackCircularSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackKaiAndroidOverlay/res/drawable/ic_battery_80_24dp.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackRoundedLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackRoundedSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackRoundedSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackSamSystemUIOverlay/res/drawable/ic_location.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_wifi_signal_3.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorSettingsOverlay/res/drawable/ic_local_movies.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackCircularLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 18 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /overlay/themes/icons/IconPackVictorAndroidOverlay/res/drawable/ic_wifi_signal_1.xml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 18 | --------------------------------------------------------------------------------