├── Android.mk ├── AndroidProducts.mk ├── changelog └── projects.xml ├── charger ├── Android.mk ├── anim │ └── animation.txt ├── fonts │ ├── 480dpi │ ├── 560dpi │ ├── 640dpi │ ├── hdpi │ │ └── font_charger.png │ ├── ldpi │ │ └── font_charger.png │ ├── mdpi │ │ └── font_charger.png │ ├── xhdpi │ │ └── font_charger.png │ ├── xxhdpi │ │ └── font_charger.png │ └── xxxhdpi │ │ └── font_charger.png └── images │ ├── 420dpi │ ├── 480dpi │ ├── battery_fail.png │ └── battery_scale.png │ ├── 560dpi │ ├── battery_fail.png │ └── battery_scale.png │ ├── xhdpi │ ├── xxhdpi │ └── xxxhdpi ├── config ├── Android.bp ├── BoardConfigKernel.mk ├── BoardConfigOmni.mk ├── BoardConfigSoong.mk ├── branding.mk ├── cdma.mk ├── common.mk ├── common_tablet.mk ├── gsm.mk ├── manifest │ └── omni_vendor_framework_compatibility_matrix.xml ├── packages.mk └── version.mk ├── google ├── Android.mk ├── README.md └── themes │ ├── AccentBlueMonday │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentDeadRed │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentDeepOrange │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentDeepPurple │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentFromHell │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentGoldenShower │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentOmni │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentPixel │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentRottenOrange │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentSluttyPink │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentSmokingGreen │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentTeal │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── AccentWhite │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── Android.mk │ ├── ContactsTheme │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable │ │ ├── dialog_background_material.xml │ │ └── item_background_material_dark.xml │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml │ ├── DialerTheme │ ├── Android.mk │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── android │ │ ├── contacts │ │ └── common │ │ │ └── res │ │ │ └── values │ │ │ └── colors.xml │ │ ├── dialer │ │ ├── app │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── color.xml │ │ │ │ └── style.xml │ │ ├── dialpadview │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ └── theme │ │ │ └── res │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── incallui │ │ └── res │ │ └── values │ │ └── colors.xml │ ├── DocumentsUITheme │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ └── toast_frame.xml │ │ └── values │ │ └── colors.xml │ ├── GboardOmniTheme │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── values-v21 │ │ └── colors.xml │ │ └── values │ │ ├── colors.xml │ │ └── strings.xml │ ├── MessagesTheme │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml │ ├── MusicFXTheme │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── NotificationsDark │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── colors.xml │ │ └── config.xml │ ├── NotificationsLight │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── colors.xml │ │ └── config.xml │ ├── NotificationsPrimary │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── colors.xml │ ├── PhonographTheme │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml │ ├── PrimaryAlmostBlack │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ └── toast_frame.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── settings.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ ├── PrimaryBlack │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ └── toast_frame.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── settings.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ ├── PrimaryColdWhite │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ └── toast_frame.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── settings.xml │ │ └── themes.xml │ ├── PrimaryDarkBlue │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ ├── list_divider_material.xml │ │ └── toast_frame.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── settings.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ ├── PrimaryOmni │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ └── toast_frame.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── settings.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ ├── PrimaryTealMeal │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ ├── list_divider_material.xml │ │ └── toast_frame.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── settings.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ ├── PrimaryViolator │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ ├── list_divider_material.xml │ │ └── toast_frame.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── settings.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ ├── PrimaryWarmWhite │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ └── toast_frame.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── settings.xml │ │ └── themes.xml │ ├── PrimaryWhite │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ │ ├── color │ │ └── ripple_material_light.xml │ │ ├── drawable │ │ └── toast_frame.xml │ │ └── values │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── settings.xml │ │ └── themes.xml │ └── TelecommTheme │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ └── values │ ├── colors.xml │ └── styles.xml ├── overlay ├── CarrierConfig │ └── packages │ │ └── apps │ │ └── CarrierConfig │ │ └── res │ │ └── xml │ │ └── vendor.xml ├── MicrogOmniLibOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ └── values │ │ └── config.xml ├── MicrogUIOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-anydpi-v26 │ │ └── ic_app_settings_foreground_mono.xml │ │ ├── drawable-night-v26 │ │ └── ic_app_settings_foreground_mono.xml │ │ └── values │ │ └── strings.xml └── common │ ├── frameworks │ └── base │ │ ├── core │ │ └── res │ │ │ └── res │ │ │ ├── drawable-nodpi │ │ │ └── default_wallpaper.png │ │ │ ├── drawable-sw600dp-nodpi │ │ │ └── default_wallpaper.png │ │ │ ├── drawable-sw720dp-nodpi │ │ │ └── default_wallpaper.png │ │ │ ├── values-mcc204-mnc04 │ │ │ └── config.xml │ │ │ ├── values-mcc208-mnc10 │ │ │ └── config.xml │ │ │ ├── values-mcc214-mnc01 │ │ │ └── config.xml │ │ │ ├── values-mcc234-mnc15-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc234-mnc15-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc234-mnc15 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc01 │ │ │ └── strings.xml │ │ │ ├── values-mcc262-mnc02-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc02-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc04-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc04-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc04 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc07 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc08 │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc09-en-rGB │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc09-en-rIN │ │ │ └── config.xml │ │ │ ├── values-mcc262-mnc09 │ │ │ └── config.xml │ │ │ ├── values-mcc268-mnc01 │ │ │ └── config.xml │ │ │ ├── values-mcc302-mnc220 │ │ │ └── config.xml │ │ │ ├── values-mcc302-mnc370 │ │ │ └── config.xml │ │ │ ├── values-mcc302-mnc610 │ │ │ └── config.xml │ │ │ ├── values-mcc302-mnc720 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc004 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc070 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc090 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc120 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc150 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc170 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc260 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc380 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc410 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc560 │ │ │ └── config.xml │ │ │ ├── values-mcc310-mnc680 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc180 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc220 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc221 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc222 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc223 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc224 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc225 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc226 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc227 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc228 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc229 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc480 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc490 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc580 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc581 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc582 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc583 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc584 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc585 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc586 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc587 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc588 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc589 │ │ │ └── config.xml │ │ │ ├── values-mcc311-mnc870 │ │ │ └── config.xml │ │ │ ├── values-mcc312-mnc530 │ │ │ └── config.xml │ │ │ ├── values-mcc316-mnc010 │ │ │ └── config.xml │ │ │ ├── values-mcc330-mnc110 │ │ │ └── config.xml │ │ │ ├── values-mcc334-mnc020 │ │ │ └── config.xml │ │ │ ├── values-mcc334-mnc050 │ │ │ └── config.xml │ │ │ ├── values-mcc334-mnc090 │ │ │ └── config.xml │ │ │ ├── values-mcc334-mnc30 │ │ │ └── config.xml │ │ │ ├── values-mcc370-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc404-mnc01 │ │ │ └── config.xml │ │ │ ├── values-mcc405-mnc840 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc854 │ │ │ └── config.xml │ │ │ ├── values-mcc405-mnc855 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc856 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc857 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc858 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc859 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc860 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc861 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc862 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc863 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc864 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc865 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc866 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc867 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc868 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc869 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc870 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc871 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc872 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc873 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc405-mnc874 │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ │ ├── values-mcc460-mnc03 │ │ │ └── config.xml │ │ │ ├── values-mcc460-mnc11 │ │ │ └── config.xml │ │ │ ├── values-mcc505-mnc01 │ │ │ └── config.xml │ │ │ ├── values-mcc505-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc505-mnc03 │ │ │ └── config.xml │ │ │ ├── values-mcc505-mnc07 │ │ │ └── config.xml │ │ │ ├── values-mcc505-mnc11 │ │ │ └── config.xml │ │ │ ├── values-mcc505-mnc71 │ │ │ └── config.xml │ │ │ ├── values-mcc505-mnc72 │ │ │ └── config.xml │ │ │ ├── values-mcc505-mnc90 │ │ │ └── config.xml │ │ │ ├── values-mcc706-mnc01 │ │ │ └── config.xml │ │ │ ├── values-mcc712-mnc03 │ │ │ └── config.xml │ │ │ ├── values-mcc714-mnc03 │ │ │ └── config.xml │ │ │ ├── values-mcc716-mnc06 │ │ │ └── config.xml │ │ │ ├── values-mcc716-mnc10 │ │ │ └── config.xml │ │ │ ├── values-mcc716-mnc17 │ │ │ └── config.xml │ │ │ ├── values-mcc722-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc722-mnc07 │ │ │ └── config.xml │ │ │ ├── values-mcc722-mnc310 │ │ │ └── config.xml │ │ │ ├── values-mcc722-mnc34 │ │ │ └── config.xml │ │ │ ├── values-mcc722-mnc340 │ │ │ └── config.xml │ │ │ ├── values-mcc722-mnc341 │ │ │ └── config.xml │ │ │ ├── values-mcc722-mnc36 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc03 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc04 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc05 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc06 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc10 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc11 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc16 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc23 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc24 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc31 │ │ │ └── config.xml │ │ │ ├── values-mcc724-mnc39 │ │ │ └── config.xml │ │ │ ├── values-mcc730-mnc01 │ │ │ └── config.xml │ │ │ ├── values-mcc730-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc730-mnc09 │ │ │ └── config.xml │ │ │ ├── values-mcc730-mnc10 │ │ │ └── config.xml │ │ │ ├── values-mcc732-mnc101 │ │ │ └── config.xml │ │ │ ├── values-mcc732-mnc103 │ │ │ └── config.xml │ │ │ ├── values-mcc732-mnc111 │ │ │ └── config.xml │ │ │ ├── values-mcc732-mnc12 │ │ │ └── config.xml │ │ │ ├── values-mcc732-mnc123 │ │ │ └── config.xml │ │ │ ├── values-mcc732-mnc130 │ │ │ └── config.xml │ │ │ ├── values-mcc734-mnc04 │ │ │ └── config.xml │ │ │ ├── values-mcc740-mnc01 │ │ │ └── config.xml │ │ │ ├── values-mcc744-mnc02 │ │ │ └── config.xml │ │ │ ├── values-mcc748-mnc10 │ │ │ └── config.xml │ │ │ ├── values │ │ │ ├── config.xml │ │ │ ├── dimen.xml │ │ │ └── vendor_required_apps_managed_profile.xml │ │ │ └── xml │ │ │ └── config_webview_packages.xml │ │ └── packages │ │ ├── SettingsLib │ │ └── SettingsTheme │ │ │ └── res │ │ │ ├── color-v31 │ │ │ └── settingslib_switch_track_on.xml │ │ │ └── values-v31 │ │ │ └── colors.xml │ │ ├── SettingsProvider │ │ └── res │ │ │ └── values │ │ │ └── defaults.xml │ │ └── SystemUI │ │ └── res │ │ └── values │ │ ├── config.xml │ │ ├── config_qti.xml │ │ └── integers.xml │ └── packages │ ├── apps │ ├── CellBroadcastReceiver │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ ├── Settings │ │ └── res │ │ │ └── values │ │ │ ├── config.xml │ │ │ └── dimens.xml │ └── SimpleDeviceConfig │ │ └── res │ │ └── values │ │ └── config.xml │ ├── inputmethods │ └── LatinIME │ │ └── java │ │ └── res │ │ └── values │ │ └── gesture-input.xml │ ├── modules │ └── Permission │ │ └── PermissionController │ │ └── res │ │ ├── values-night │ │ └── colors.xml │ │ └── values │ │ └── colors.xml │ └── services │ ├── BuiltInPrintService │ └── res │ │ └── values │ │ └── colors.xml │ └── Telephony │ └── res │ ├── values-af │ └── strings.xml │ ├── values-am │ └── strings.xml │ ├── values-ar │ └── strings.xml │ ├── values-az-rAZ │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bn-rBD │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-en-rAU │ └── strings.xml │ ├── values-en-rCA │ └── strings.xml │ ├── values-en-rGB │ └── strings.xml │ ├── values-en-rIN │ └── strings.xml │ ├── values-en-rXC │ └── strings.xml │ ├── values-es-rUS │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et-rEE │ └── strings.xml │ ├── values-eu-rES │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr-rCA │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-gl-rES │ └── strings.xml │ ├── values-hi │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-hy-rAM │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-is-rIS │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ka-rGE │ └── strings.xml │ ├── values-km-rKH │ └── strings.xml │ ├── values-kn-rIN │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-lo-rLA │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-mcc234-mnc15-en-rGB │ └── strings.xml │ ├── values-mcc234-mnc15-en-rIN │ └── strings.xml │ ├── values-mcc234-mnc15 │ └── strings.xml │ ├── values-mcc262-mnc02-en-rGB │ └── strings.xml │ ├── values-mcc262-mnc02-en-rIN │ └── strings.xml │ ├── values-mcc262-mnc02 │ └── strings.xml │ ├── values-mcc262-mnc04-en-rGB │ └── strings.xml │ ├── values-mcc262-mnc04-en-rIN │ └── strings.xml │ ├── values-mcc262-mnc04 │ └── strings.xml │ ├── values-mcc262-mnc09-en-rGB │ └── strings.xml │ ├── values-mcc262-mnc09-en-rIN │ └── strings.xml │ ├── values-mcc262-mnc09 │ └── strings.xml │ ├── values-ml-rIN │ └── strings.xml │ ├── values-mn-rMN │ └── strings.xml │ ├── values-mr-rIN │ └── strings.xml │ ├── values-ms-rMY │ └── strings.xml │ ├── values-nb │ └── strings.xml │ ├── values-ne-rNP │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-si-rLK │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-sw │ └── strings.xml │ ├── values-ta-rIN │ └── strings.xml │ ├── values-te-rIN │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tl │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-ur-rPK │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values-zu │ └── strings.xml │ └── values │ └── strings.xml ├── prebuilt ├── Android.mk ├── app │ ├── Android.mk │ ├── Fun │ │ ├── Android.mk │ │ └── EggGame.apk │ └── OmniStore │ │ ├── Android.mk │ │ └── OmniStoreInstaller.apk ├── bootanimation │ ├── bootanimation.zip │ └── res │ │ ├── 1080p.zip │ │ ├── 1080x608.zip │ │ ├── 1440p.zip │ │ ├── 1440x814.zip │ │ ├── 360p.zip │ │ ├── 360x240.zip │ │ ├── 720p.zip │ │ ├── 720x407.zip │ │ └── generate-packages.sh ├── common │ └── bin │ │ ├── 50-hosts.sh │ │ ├── backuptool.functions │ │ ├── backuptool.sh │ │ ├── backuptool_ab.functions │ │ ├── backuptool_ab.sh │ │ ├── backuptool_postinstall.sh │ │ └── clean_cache.sh ├── etc │ ├── apns-conf-cdma.xml │ ├── apns-conf.xml │ ├── fonts_customization.xml │ ├── init.local.rc │ ├── mkshrc │ ├── permissions │ │ ├── org.lineageos.health.xml │ │ ├── privapp-permissions-omni-ext.xml │ │ └── privapp-permissions-omni.xml │ └── sysconfig │ │ ├── backup.xml │ │ └── omniota.xml ├── fonts │ ├── Android.bp │ ├── GoogleSansClock-Regular.ttf │ ├── Muli-Bold.ttf │ ├── Muli-BoldItalic.ttf │ ├── Muli-Italic.ttf │ ├── Muli-Medium.ttf │ ├── Muli-MediumItalic.ttf │ ├── Muli-Regular.ttf │ ├── Muli-SemiBold.ttf │ ├── Muli-SemiBoldItalic.ttf │ └── fonts.mk ├── lib │ ├── Android.bp │ └── libGoogleFeed.jar ├── postinst │ ├── Android.bp │ └── omnipreopt_script.sh ├── sounds │ ├── VideoRecord_48k.ogg │ ├── VideoStop_48k.ogg │ ├── camera_click_48k.ogg │ ├── omni_alarm1.ogg │ ├── omni_alarm2.ogg │ ├── omni_charge_start.ogg │ ├── omni_lock_phone.ogg │ ├── omni_lowbattery1.ogg │ ├── omni_notification1.ogg │ ├── omni_ringtone1.ogg │ ├── omni_ringtone2.ogg │ ├── omni_ringtone3.ogg │ └── omni_unlock_phone.ogg └── wallpapers │ ├── create_thumbs.sh │ ├── json.php │ ├── json_wallpapers_xml.php │ ├── upload.sh │ └── wallpapers.xml ├── release ├── aconfig │ └── bp1a │ │ ├── Android.bp │ │ ├── com.android.launcher3 │ │ ├── Android.bp │ │ └── force_monochrome_app_icons_flag_values.textproto │ │ ├── com.android.settings.flags │ │ ├── Android.bp │ │ └── homepage_revamp_flag_values.textproto │ │ └── com.android.systemui │ │ ├── Android.bp │ │ └── systemui_flags.textproto ├── build_config │ ├── DEFAULT=proto │ └── bp1a.textproto ├── release_config_map.mk ├── release_config_map.textproto └── release_configs │ └── bp1a.textproto ├── sepolicy ├── libperfmgr │ ├── sepolicy.mk │ └── vendor │ │ ├── hal_power_default.te │ │ ├── property.te │ │ ├── property_contexts │ │ └── vendor_init.te ├── private │ ├── backuptool.te │ ├── dex2oat.te │ ├── file.te │ ├── file_contexts │ ├── hal_bootctl.te │ ├── hal_health.te │ ├── init.te │ ├── mkfs.te │ ├── otapreopt_chroot.te │ ├── platform_app.te │ ├── priv_app.te │ ├── property.te │ ├── property_contexts │ ├── recovery.te │ ├── rootfs.te │ ├── sdcardfs.te │ ├── service.te │ ├── service_contexts │ ├── shell.te │ ├── system_app.te │ ├── system_server.te │ ├── update_engine.te │ └── vold.te ├── public │ ├── attributes │ ├── file.te │ ├── fsck_untrusted.te │ └── te_macros ├── qcom │ └── vendor │ │ ├── file.te │ │ ├── file_contexts │ │ ├── genfs_contexts │ │ ├── hal_lineage_health_default.te │ │ └── hal_power_default.te ├── sepolicy.mk └── vendor │ ├── file_contexts │ ├── hal_lineage_health.te │ ├── hal_lineage_health_default.te │ ├── service.te │ └── service_contexts ├── themes ├── Android.mk ├── PreferenceTheme │ ├── Android.bp │ ├── AndroidManifest.xml │ ├── README │ └── res │ │ ├── color-night-v34 │ │ └── omni_settings_switch_track_outline_color.xml │ │ ├── color-v31 │ │ ├── omni_settings_switch_thumb_color.xml │ │ └── omni_settings_switch_track_color.xml │ │ ├── color-v34 │ │ ├── omni_settings_switch_thumb_color.xml │ │ └── omni_settings_switch_track_outline_color.xml │ │ ├── drawable-v31 │ │ ├── omni_settings_switch_thumb.xml │ │ └── omni_settings_switch_track.xml │ │ ├── drawable-v34 │ │ └── omni_settings_switch_track.xml │ │ ├── values-night-v31 │ │ └── colors.xml │ │ ├── values-night-v34 │ │ └── colors.xml │ │ ├── values-v31 │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── styles_preference.xml │ │ └── values-v34 │ │ └── colors.xml ├── README.md ├── overlays │ ├── AccentColor │ │ ├── AccentColorOmniOverlay │ │ │ ├── Android.mk │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── strings.xml │ │ ├── AccentColorOrangeOverlay │ │ │ ├── Android.mk │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── strings.xml │ │ ├── AccentColorPurpleOverlay │ │ │ ├── Android.mk │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── strings.xml │ │ └── AccentColorSluttyPinkOverlay │ │ │ ├── Android.mk │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── strings.xml │ ├── Android.mk │ ├── Fonts │ │ ├── FontLatoSourceOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── config.xml │ │ │ │ └── strings.xml │ │ └── FontMuliSourceOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ └── values │ │ │ ├── config.xml │ │ │ └── strings.xml │ ├── IconsPack │ │ ├── IconPackCircularAndroidOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ ├── ic_signal_wifi_transient_animation_0.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_1.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_2.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_3.xml │ │ │ │ └── ic_signal_wifi_transient_animation_4.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ ├── ic_expand_more.xml │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ ├── ic_file_copy.xml │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ ├── ic_phone.xml │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ ├── ic_restart.xml │ │ │ │ ├── ic_screenshot.xml │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── ic_signal_location.xml │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ ├── perm_group_aural.xml │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ ├── perm_group_camera.xml │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ ├── perm_group_location.xml │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ ├── perm_group_sms.xml │ │ │ │ ├── perm_group_storage.xml │ │ │ │ └── perm_group_visual.xml │ │ │ │ └── values │ │ │ │ └── config.xml │ │ ├── IconPackCircularLauncherOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_corp.xml │ │ │ │ ├── ic_corp_off.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_hourglass_top.xml │ │ │ │ ├── ic_info_no_shadow.xml │ │ │ │ ├── ic_install_no_shadow.xml │ │ │ │ ├── ic_palette.xml │ │ │ │ ├── ic_pin.xml │ │ │ │ ├── ic_remove_no_shadow.xml │ │ │ │ ├── ic_screenshot.xml │ │ │ │ ├── ic_select.xml │ │ │ │ ├── ic_setting.xml │ │ │ │ ├── ic_share.xml │ │ │ │ ├── ic_smartspace_preferences.xml │ │ │ │ ├── ic_split_screen.xml │ │ │ │ ├── ic_uninstall_no_shadow.xml │ │ │ │ ├── ic_warning.xml │ │ │ │ └── ic_widget.xml │ │ ├── IconPackCircularSettingsOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── drag_handle.xml │ │ │ │ ├── ic_add_24dp.xml │ │ │ │ ├── ic_airplanemode_active.xml │ │ │ │ ├── ic_android.xml │ │ │ │ ├── ic_apps.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ ├── ic_battery_charging_full.xml │ │ │ │ ├── ic_battery_status_good_24dp.xml │ │ │ │ ├── ic_battery_status_maybe_24dp.xml │ │ │ │ ├── ic_call_24dp.xml │ │ │ │ ├── ic_cancel.xml │ │ │ │ ├── ic_cast_24dp.xml │ │ │ │ ├── ic_cellular_off.xml │ │ │ │ ├── ic_chevron_right_24dp.xml │ │ │ │ ├── ic_content_copy_grey600_24dp.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_delete.xml │ │ │ │ ├── ic_devices_other.xml │ │ │ │ ├── ic_devices_other_32dp.xml │ │ │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ ├── ic_expand_less.xml │ │ │ │ ├── ic_expand_more_inverse.xml │ │ │ │ ├── ic_find_in_page_24px.xml │ │ │ │ ├── ic_folder_vd_theme_24.xml │ │ │ │ ├── ic_friction_lock_closed.xml │ │ │ │ ├── ic_gray_scale_24dp.xml │ │ │ │ ├── ic_headset_24dp.xml │ │ │ │ ├── ic_help.xml │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ ├── ic_local_movies.xml │ │ │ │ ├── ic_local_phone_24_lib.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_media_stream.xml │ │ │ │ ├── ic_media_stream_off.xml │ │ │ │ ├── ic_network_cell.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_notifications_off_24dp.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_photo_library.xml │ │ │ │ ├── ic_scan_24dp.xml │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ ├── ic_settings_accent.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_backup.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_data_usage.xml │ │ │ │ ├── ic_settings_date_time.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ ├── ic_settings_home.xml │ │ │ │ ├── ic_settings_language.xml │ │ │ │ ├── ic_settings_location.xml │ │ │ │ ├── ic_settings_multiuser.xml │ │ │ │ ├── ic_settings_night_display.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_print.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ ├── ic_settings_sim.xml │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ ├── ic_storage.xml │ │ │ │ ├── ic_storage_white.xml │ │ │ │ ├── ic_suggestion_night_display.xml │ │ │ │ ├── ic_sync.xml │ │ │ │ ├── ic_sync_problem_24dp.xml │ │ │ │ ├── ic_system_update.xml │ │ │ │ ├── ic_videogame_vd_theme_24.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ ├── ic_vpn_key.xml │ │ │ │ └── ic_wifi_tethering.xml │ │ ├── IconPackCircularSystemUIOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_alarm.xml │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_cast.xml │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ ├── ic_close_white.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ ├── ic_hotspot.xml │ │ │ │ ├── ic_info.xml │ │ │ │ ├── ic_info_outline.xml │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ ├── ic_location.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ ├── ic_power_low.xml │ │ │ │ ├── ic_power_saver.xml │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ ├── ic_settings.xml │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ ├── ic_volume_media.xml │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ └── stat_sys_vpn_ic.xml │ │ ├── IconPackFilledAndroidOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ ├── ic_expand_more.xml │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ ├── ic_file_copy.xml │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ ├── ic_phone.xml │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ ├── ic_restart.xml │ │ │ │ ├── ic_screenshot.xml │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── ic_signal_location.xml │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ ├── perm_group_aural.xml │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ ├── perm_group_camera.xml │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ ├── perm_group_location.xml │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ ├── perm_group_sms.xml │ │ │ │ ├── perm_group_storage.xml │ │ │ │ └── perm_group_visual.xml │ │ │ │ └── values │ │ │ │ └── config.xml │ │ ├── IconPackFilledLauncherOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_corp.xml │ │ │ │ ├── ic_corp_off.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_hourglass_top.xml │ │ │ │ ├── ic_info_no_shadow.xml │ │ │ │ ├── ic_install_no_shadow.xml │ │ │ │ ├── ic_palette.xml │ │ │ │ ├── ic_pin.xml │ │ │ │ ├── ic_remove_no_shadow.xml │ │ │ │ ├── ic_screenshot.xml │ │ │ │ ├── ic_select.xml │ │ │ │ ├── ic_setting.xml │ │ │ │ ├── ic_share.xml │ │ │ │ ├── ic_smartspace_preferences.xml │ │ │ │ ├── ic_split_screen.xml │ │ │ │ ├── ic_uninstall_no_shadow.xml │ │ │ │ ├── ic_warning.xml │ │ │ │ └── ic_widget.xml │ │ ├── IconPackFilledSettingsOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── drag_handle.xml │ │ │ │ ├── ic_add_24dp.xml │ │ │ │ ├── ic_airplanemode_active.xml │ │ │ │ ├── ic_android.xml │ │ │ │ ├── ic_apps.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ ├── ic_battery_charging_full.xml │ │ │ │ ├── ic_battery_status_good_24dp.xml │ │ │ │ ├── ic_battery_status_maybe_24dp.xml │ │ │ │ ├── ic_call_24dp.xml │ │ │ │ ├── ic_cancel.xml │ │ │ │ ├── ic_cast_24dp.xml │ │ │ │ ├── ic_cellular_off.xml │ │ │ │ ├── ic_chevron_right_24dp.xml │ │ │ │ ├── ic_content_copy_grey600_24dp.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_delete.xml │ │ │ │ ├── ic_devices_other.xml │ │ │ │ ├── ic_devices_other_32dp.xml │ │ │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ ├── ic_expand_less.xml │ │ │ │ ├── ic_expand_more_inverse.xml │ │ │ │ ├── ic_find_in_page_24px.xml │ │ │ │ ├── ic_folder_vd_theme_24.xml │ │ │ │ ├── ic_friction_lock_closed.xml │ │ │ │ ├── ic_gray_scale_24dp.xml │ │ │ │ ├── ic_headset_24dp.xml │ │ │ │ ├── ic_help.xml │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ ├── ic_local_movies.xml │ │ │ │ ├── ic_local_phone_24_lib.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_media_stream.xml │ │ │ │ ├── ic_media_stream_off.xml │ │ │ │ ├── ic_network_cell.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_notifications_off_24dp.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_photo_library.xml │ │ │ │ ├── ic_scan_24dp.xml │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ ├── ic_settings_accent.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_backup.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_data_usage.xml │ │ │ │ ├── ic_settings_date_time.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ ├── ic_settings_home.xml │ │ │ │ ├── ic_settings_language.xml │ │ │ │ ├── ic_settings_location.xml │ │ │ │ ├── ic_settings_multiuser.xml │ │ │ │ ├── ic_settings_night_display.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_print.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ ├── ic_settings_sim.xml │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ ├── ic_storage.xml │ │ │ │ ├── ic_storage_white.xml │ │ │ │ ├── ic_suggestion_night_display.xml │ │ │ │ ├── ic_sync.xml │ │ │ │ ├── ic_sync_problem_24dp.xml │ │ │ │ ├── ic_system_update.xml │ │ │ │ ├── ic_videogame_vd_theme_24.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ ├── ic_vpn_key.xml │ │ │ │ └── ic_wifi_tethering.xml │ │ ├── IconPackFilledSystemUIOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_alarm.xml │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_cast.xml │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ ├── ic_close_white.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ ├── ic_hotspot.xml │ │ │ │ ├── ic_info.xml │ │ │ │ ├── ic_info_outline.xml │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ ├── ic_location.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ ├── ic_power_low.xml │ │ │ │ ├── ic_power_saver.xml │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ ├── ic_settings.xml │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ ├── ic_volume_media.xml │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ └── stat_sys_vpn_ic.xml │ │ ├── IconPackKaiAndroidOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ ├── ic_expand_more.xml │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ ├── ic_file_copy.xml │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ ├── ic_phone.xml │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ ├── ic_restart.xml │ │ │ │ ├── ic_screenshot.xml │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ ├── ic_signal_location.xml │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ ├── perm_group_aural.xml │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ ├── perm_group_camera.xml │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ ├── perm_group_location.xml │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ ├── perm_group_sms.xml │ │ │ │ ├── perm_group_storage.xml │ │ │ │ └── perm_group_visual.xml │ │ ├── IconPackKaiLauncherOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_corp.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_hourglass_top.xml │ │ │ │ ├── ic_info_no_shadow.xml │ │ │ │ ├── ic_install_no_shadow.xml │ │ │ │ ├── ic_palette.xml │ │ │ │ ├── ic_pin.xml │ │ │ │ ├── ic_select.xml │ │ │ │ ├── ic_setting.xml │ │ │ │ ├── ic_smartspace_preferences.xml │ │ │ │ ├── ic_split_screen.xml │ │ │ │ ├── ic_uninstall_no_shadow.xml │ │ │ │ ├── ic_warning.xml │ │ │ │ └── ic_widget.xml │ │ ├── IconPackKaiSettingsOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── drag_handle.xml │ │ │ │ ├── ic_add_24dp.xml │ │ │ │ ├── ic_airplanemode_active.xml │ │ │ │ ├── ic_android.xml │ │ │ │ ├── ic_apps.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ ├── ic_battery_charging_full.xml │ │ │ │ ├── ic_battery_status_good_24dp.xml │ │ │ │ ├── ic_battery_status_maybe_24dp.xml │ │ │ │ ├── ic_call_24dp.xml │ │ │ │ ├── ic_cancel.xml │ │ │ │ ├── ic_cast_24dp.xml │ │ │ │ ├── ic_cellular_off.xml │ │ │ │ ├── ic_chevron_right_24dp.xml │ │ │ │ ├── ic_content_copy_grey600_24dp.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_delete.xml │ │ │ │ ├── ic_devices_other.xml │ │ │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ ├── ic_expand_less.xml │ │ │ │ ├── ic_expand_more_inverse.xml │ │ │ │ ├── ic_find_in_page_24px.xml │ │ │ │ ├── ic_folder_vd_theme_24.xml │ │ │ │ ├── ic_friction_lock_closed.xml │ │ │ │ ├── ic_gray_scale_24dp.xml │ │ │ │ ├── ic_headset_24dp.xml │ │ │ │ ├── ic_help.xml │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ ├── ic_local_movies.xml │ │ │ │ ├── ic_local_phone_24_lib.xml │ │ │ │ ├── ic_media_stream.xml │ │ │ │ ├── ic_media_stream_off.xml │ │ │ │ ├── ic_network_cell.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_notifications_off_24dp.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_photo_library.xml │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ ├── ic_settings_accent.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_backup.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_data_usage.xml │ │ │ │ ├── ic_settings_date_time.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ ├── ic_settings_home.xml │ │ │ │ ├── ic_settings_language.xml │ │ │ │ ├── ic_settings_location.xml │ │ │ │ ├── ic_settings_multiuser.xml │ │ │ │ ├── ic_settings_night_display.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_print.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ ├── ic_settings_sim.xml │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ ├── ic_storage.xml │ │ │ │ ├── ic_storage_white.xml │ │ │ │ ├── ic_suggestion_night_display.xml │ │ │ │ ├── ic_sync.xml │ │ │ │ ├── ic_sync_problem_24dp.xml │ │ │ │ ├── ic_system_update.xml │ │ │ │ ├── ic_videogame_vd_theme_24.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ ├── ic_vpn_key.xml │ │ │ │ └── ic_wifi_tethering.xml │ │ ├── IconPackKaiSystemUIOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ ├── lock_lock.xml │ │ │ │ ├── lock_scanning.xml │ │ │ │ ├── lock_to_error.xml │ │ │ │ └── lock_unlock.xml │ │ │ │ └── drawable │ │ │ │ ├── ic_alarm.xml │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_cast.xml │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ ├── ic_close_white.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ ├── ic_hotspot.xml │ │ │ │ ├── ic_info.xml │ │ │ │ ├── ic_info_outline.xml │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ ├── ic_location.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ ├── ic_power_low.xml │ │ │ │ ├── ic_power_saver.xml │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ ├── ic_settings.xml │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ ├── ic_volume_collapse_animation.xml │ │ │ │ ├── ic_volume_expand_animation.xml │ │ │ │ ├── ic_volume_media.xml │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ └── stat_sys_vpn_ic.xml │ │ ├── IconPackRoundedAndroidOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ ├── ic_bluetooth_transient_animation_drawable.xml │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ ├── ic_expand_more.xml │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ ├── ic_file_copy.xml │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ ├── ic_hotspot_transient_animation_drawable.xml │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ ├── ic_phone.xml │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ ├── ic_restart.xml │ │ │ │ ├── ic_screenshot.xml │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ ├── ic_signal_cellular_0_5_bar.xml │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ ├── ic_signal_cellular_1_5_bar.xml │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ ├── ic_signal_cellular_2_5_bar.xml │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ ├── ic_signal_cellular_3_5_bar.xml │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ ├── ic_signal_cellular_4_5_bar.xml │ │ │ │ ├── ic_signal_cellular_5_5_bar.xml │ │ │ │ ├── ic_signal_location.xml │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ ├── ic_signal_wifi_transient_animation_drawable.xml │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ ├── perm_group_aural.xml │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ ├── perm_group_camera.xml │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ ├── perm_group_location.xml │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ ├── perm_group_sms.xml │ │ │ │ ├── perm_group_storage.xml │ │ │ │ └── perm_group_visual.xml │ │ │ │ └── values │ │ │ │ └── config.xml │ │ ├── IconPackRoundedLauncherOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_corp.xml │ │ │ │ ├── ic_corp_off.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_hourglass_top.xml │ │ │ │ ├── ic_info_no_shadow.xml │ │ │ │ ├── ic_install_no_shadow.xml │ │ │ │ ├── ic_palette.xml │ │ │ │ ├── ic_pin.xml │ │ │ │ ├── ic_remove_no_shadow.xml │ │ │ │ ├── ic_screenshot.xml │ │ │ │ ├── ic_select.xml │ │ │ │ ├── ic_setting.xml │ │ │ │ ├── ic_share.xml │ │ │ │ ├── ic_smartspace_preferences.xml │ │ │ │ ├── ic_split_screen.xml │ │ │ │ ├── ic_uninstall_no_shadow.xml │ │ │ │ ├── ic_warning.xml │ │ │ │ └── ic_widget.xml │ │ ├── IconPackRoundedSettingsOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── drag_handle.xml │ │ │ │ ├── ic_add_24dp.xml │ │ │ │ ├── ic_airplanemode_active.xml │ │ │ │ ├── ic_android.xml │ │ │ │ ├── ic_apps.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ ├── ic_battery_charging_full.xml │ │ │ │ ├── ic_battery_status_good_24dp.xml │ │ │ │ ├── ic_battery_status_maybe_24dp.xml │ │ │ │ ├── ic_call_24dp.xml │ │ │ │ ├── ic_cancel.xml │ │ │ │ ├── ic_cast_24dp.xml │ │ │ │ ├── ic_cellular_off.xml │ │ │ │ ├── ic_chevron_right_24dp.xml │ │ │ │ ├── ic_content_copy_grey600_24dp.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_delete.xml │ │ │ │ ├── ic_devices_other.xml │ │ │ │ ├── ic_devices_other_32dp.xml │ │ │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ ├── ic_expand_less.xml │ │ │ │ ├── ic_expand_more_inverse.xml │ │ │ │ ├── ic_find_in_page_24px.xml │ │ │ │ ├── ic_folder_vd_theme_24.xml │ │ │ │ ├── ic_friction_lock_closed.xml │ │ │ │ ├── ic_gray_scale_24dp.xml │ │ │ │ ├── ic_headset_24dp.xml │ │ │ │ ├── ic_help.xml │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ ├── ic_local_movies.xml │ │ │ │ ├── ic_local_phone_24_lib.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_media_stream.xml │ │ │ │ ├── ic_media_stream_off.xml │ │ │ │ ├── ic_network_cell.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_notifications_off_24dp.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_photo_library.xml │ │ │ │ ├── ic_scan_24dp.xml │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ ├── ic_settings_accent.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_backup.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_data_usage.xml │ │ │ │ ├── ic_settings_date_time.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ ├── ic_settings_home.xml │ │ │ │ ├── ic_settings_language.xml │ │ │ │ ├── ic_settings_location.xml │ │ │ │ ├── ic_settings_multiuser.xml │ │ │ │ ├── ic_settings_night_display.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_print.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ ├── ic_settings_sim.xml │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ ├── ic_storage.xml │ │ │ │ ├── ic_storage_white.xml │ │ │ │ ├── ic_suggestion_night_display.xml │ │ │ │ ├── ic_sync.xml │ │ │ │ ├── ic_sync_problem_24dp.xml │ │ │ │ ├── ic_system_update.xml │ │ │ │ ├── ic_videogame_vd_theme_24.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ ├── ic_vpn_key.xml │ │ │ │ └── ic_wifi_tethering.xml │ │ ├── IconPackRoundedSystemUIOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_alarm.xml │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_cast.xml │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ ├── ic_cast_connected_fill.xml │ │ │ │ ├── ic_close_white.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ ├── ic_hotspot.xml │ │ │ │ ├── ic_info.xml │ │ │ │ ├── ic_info_outline.xml │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ ├── ic_location.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ ├── ic_power_low.xml │ │ │ │ ├── ic_power_saver.xml │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ ├── ic_qs_bluetooth_on.xml │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ ├── ic_settings.xml │ │ │ │ ├── ic_settings_16dp.xml │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ ├── ic_volume_alarm.xml │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ ├── ic_volume_media.xml │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ ├── stat_sys_camera.xml │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ └── stat_sys_vpn_ic.xml │ │ ├── IconPackSamAndroidOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ ├── ic_expand_more.xml │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ ├── ic_file_copy.xml │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ ├── ic_phone.xml │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ ├── ic_restart.xml │ │ │ │ ├── ic_screenshot.xml │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ ├── ic_signal_location.xml │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ ├── perm_group_aural.xml │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ ├── perm_group_camera.xml │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ ├── perm_group_location.xml │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ ├── perm_group_sms.xml │ │ │ │ ├── perm_group_storage.xml │ │ │ │ └── perm_group_visual.xml │ │ ├── IconPackSamLauncherOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_corp.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_hourglass_top.xml │ │ │ │ ├── ic_info_no_shadow.xml │ │ │ │ ├── ic_install_no_shadow.xml │ │ │ │ ├── ic_palette.xml │ │ │ │ ├── ic_pin.xml │ │ │ │ ├── ic_select.xml │ │ │ │ ├── ic_setting.xml │ │ │ │ ├── ic_smartspace_preferences.xml │ │ │ │ ├── ic_split_screen.xml │ │ │ │ ├── ic_uninstall_no_shadow.xml │ │ │ │ ├── ic_warning.xml │ │ │ │ └── ic_widget.xml │ │ ├── IconPackSamSettingsOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── drag_handle.xml │ │ │ │ ├── ic_add_24dp.xml │ │ │ │ ├── ic_airplanemode_active.xml │ │ │ │ ├── ic_android.xml │ │ │ │ ├── ic_apps.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ ├── ic_battery_charging_full.xml │ │ │ │ ├── ic_battery_status_good_24dp.xml │ │ │ │ ├── ic_battery_status_maybe_24dp.xml │ │ │ │ ├── ic_call_24dp.xml │ │ │ │ ├── ic_cancel.xml │ │ │ │ ├── ic_cast_24dp.xml │ │ │ │ ├── ic_cellular_off.xml │ │ │ │ ├── ic_chevron_right_24dp.xml │ │ │ │ ├── ic_content_copy_grey600_24dp.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_delete.xml │ │ │ │ ├── ic_devices_other.xml │ │ │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ ├── ic_expand_less.xml │ │ │ │ ├── ic_expand_more_inverse.xml │ │ │ │ ├── ic_find_in_page_24px.xml │ │ │ │ ├── ic_folder_vd_theme_24.xml │ │ │ │ ├── ic_friction_lock_closed.xml │ │ │ │ ├── ic_gray_scale_24dp.xml │ │ │ │ ├── ic_headset_24dp.xml │ │ │ │ ├── ic_help.xml │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ ├── ic_local_movies.xml │ │ │ │ ├── ic_local_phone_24_lib.xml │ │ │ │ ├── ic_media_stream.xml │ │ │ │ ├── ic_media_stream_off.xml │ │ │ │ ├── ic_network_cell.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_notifications_off_24dp.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_photo_library.xml │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ ├── ic_settings_accent.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_backup.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_data_usage.xml │ │ │ │ ├── ic_settings_date_time.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ ├── ic_settings_home.xml │ │ │ │ ├── ic_settings_language.xml │ │ │ │ ├── ic_settings_location.xml │ │ │ │ ├── ic_settings_multiuser.xml │ │ │ │ ├── ic_settings_night_display.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_print.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ ├── ic_settings_sim.xml │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ ├── ic_storage.xml │ │ │ │ ├── ic_storage_white.xml │ │ │ │ ├── ic_suggestion_night_display.xml │ │ │ │ ├── ic_sync.xml │ │ │ │ ├── ic_sync_problem_24dp.xml │ │ │ │ ├── ic_system_update.xml │ │ │ │ ├── ic_videogame_vd_theme_24.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ ├── ic_vpn_key.xml │ │ │ │ └── ic_wifi_tethering.xml │ │ ├── IconPackSamSystemUIOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ ├── lock_lock.xml │ │ │ │ ├── lock_scanning.xml │ │ │ │ ├── lock_to_error.xml │ │ │ │ └── lock_unlock.xml │ │ │ │ └── drawable │ │ │ │ ├── ic_alarm.xml │ │ │ │ ├── ic_alarm_dim.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_bluetooth_connected.xml │ │ │ │ ├── ic_brightness_thumb.xml │ │ │ │ ├── ic_camera.xml │ │ │ │ ├── ic_cast.xml │ │ │ │ ├── ic_cast_connected.xml │ │ │ │ ├── ic_close_white.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_data_saver_off.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_headset.xml │ │ │ │ ├── ic_headset_mic.xml │ │ │ │ ├── ic_hotspot.xml │ │ │ │ ├── ic_info.xml │ │ │ │ ├── ic_info_outline.xml │ │ │ │ ├── ic_invert_colors.xml │ │ │ │ ├── ic_location.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_notifications_alert.xml │ │ │ │ ├── ic_notifications_silence.xml │ │ │ │ ├── ic_power_low.xml │ │ │ │ ├── ic_power_saver.xml │ │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ │ ├── ic_qs_cancel.xml │ │ │ │ ├── ic_qs_no_sim.xml │ │ │ │ ├── ic_qs_wifi_0.xml │ │ │ │ ├── ic_qs_wifi_1.xml │ │ │ │ ├── ic_qs_wifi_2.xml │ │ │ │ ├── ic_qs_wifi_3.xml │ │ │ │ ├── ic_qs_wifi_4.xml │ │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ │ ├── ic_screenshot_delete.xml │ │ │ │ ├── ic_settings.xml │ │ │ │ ├── ic_swap_vert.xml │ │ │ │ ├── ic_tune_black_16dp.xml │ │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ │ ├── ic_volume_bt_sco.xml │ │ │ │ ├── ic_volume_collapse_animation.xml │ │ │ │ ├── ic_volume_expand_animation.xml │ │ │ │ ├── ic_volume_media.xml │ │ │ │ ├── ic_volume_media_mute.xml │ │ │ │ ├── ic_volume_odi_captions.xml │ │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ │ ├── ic_volume_ringer.xml │ │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_voice.xml │ │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ │ ├── stat_sys_mic_none.xml │ │ │ │ └── stat_sys_vpn_ic.xml │ │ ├── IconPackVictorAndroidOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_audio_alarm.xml │ │ │ │ ├── ic_audio_alarm_mute.xml │ │ │ │ ├── ic_battery_80_24dp.xml │ │ │ │ ├── ic_bluetooth_share_icon.xml │ │ │ │ ├── ic_bluetooth_transient_animation.xml │ │ │ │ ├── ic_bt_headphones_a2dp.xml │ │ │ │ ├── ic_bt_headset_hfp.xml │ │ │ │ ├── ic_bt_hearing_aid.xml │ │ │ │ ├── ic_bt_laptop.xml │ │ │ │ ├── ic_bt_misc_hid.xml │ │ │ │ ├── ic_bt_network_pan.xml │ │ │ │ ├── ic_bt_pointing_hid.xml │ │ │ │ ├── ic_corp_badge.xml │ │ │ │ ├── ic_expand_more.xml │ │ │ │ ├── ic_faster_emergency.xml │ │ │ │ ├── ic_file_copy.xml │ │ │ │ ├── ic_hotspot_transient_animation.xml │ │ │ │ ├── ic_lock.xml │ │ │ │ ├── ic_lock_bugreport.xml │ │ │ │ ├── ic_lock_open.xml │ │ │ │ ├── ic_lock_power_off.xml │ │ │ │ ├── ic_lockscreen_ime.xml │ │ │ │ ├── ic_mode_edit.xml │ │ │ │ ├── ic_notifications_alerted.xml │ │ │ │ ├── ic_phone.xml │ │ │ │ ├── ic_qs_airplane.xml │ │ │ │ ├── ic_qs_auto_rotate.xml │ │ │ │ ├── ic_qs_battery_saver.xml │ │ │ │ ├── ic_qs_bluetooth.xml │ │ │ │ ├── ic_qs_dnd.xml │ │ │ │ ├── ic_qs_flashlight.xml │ │ │ │ ├── ic_qs_night_display_on.xml │ │ │ │ ├── ic_qs_ui_mode_night.xml │ │ │ │ ├── ic_restart.xml │ │ │ │ ├── ic_screenshot.xml │ │ │ │ ├── ic_settings_bluetooth.xml │ │ │ │ ├── ic_signal_cellular_0_4_bar.xml │ │ │ │ ├── ic_signal_cellular_1_4_bar.xml │ │ │ │ ├── ic_signal_cellular_2_4_bar.xml │ │ │ │ ├── ic_signal_cellular_3_4_bar.xml │ │ │ │ ├── ic_signal_cellular_4_4_bar.xml │ │ │ │ ├── ic_signal_location.xml │ │ │ │ ├── ic_signal_wifi_transient_animation.xml │ │ │ │ ├── ic_wifi_signal_0.xml │ │ │ │ ├── ic_wifi_signal_1.xml │ │ │ │ ├── ic_wifi_signal_2.xml │ │ │ │ ├── ic_wifi_signal_3.xml │ │ │ │ ├── ic_wifi_signal_4.xml │ │ │ │ ├── perm_group_activity_recognition.xml │ │ │ │ ├── perm_group_aural.xml │ │ │ │ ├── perm_group_calendar.xml │ │ │ │ ├── perm_group_call_log.xml │ │ │ │ ├── perm_group_camera.xml │ │ │ │ ├── perm_group_contacts.xml │ │ │ │ ├── perm_group_location.xml │ │ │ │ ├── perm_group_microphone.xml │ │ │ │ ├── perm_group_phone_calls.xml │ │ │ │ ├── perm_group_sensors.xml │ │ │ │ ├── perm_group_sms.xml │ │ │ │ ├── perm_group_storage.xml │ │ │ │ └── perm_group_visual.xml │ │ ├── IconPackVictorLauncherOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── ic_corp.xml │ │ │ │ ├── ic_drag_handle.xml │ │ │ │ ├── ic_hourglass_top.xml │ │ │ │ ├── ic_info_no_shadow.xml │ │ │ │ ├── ic_install_no_shadow.xml │ │ │ │ ├── ic_palette.xml │ │ │ │ ├── ic_pin.xml │ │ │ │ ├── ic_select.xml │ │ │ │ ├── ic_setting.xml │ │ │ │ ├── ic_smartspace_preferences.xml │ │ │ │ ├── ic_split_screen.xml │ │ │ │ ├── ic_uninstall_no_shadow.xml │ │ │ │ ├── ic_warning.xml │ │ │ │ └── ic_widget.xml │ │ ├── IconPackVictorSettingsOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── drawable │ │ │ │ ├── drag_handle.xml │ │ │ │ ├── ic_add_24dp.xml │ │ │ │ ├── ic_airplanemode_active.xml │ │ │ │ ├── ic_android.xml │ │ │ │ ├── ic_apps.xml │ │ │ │ ├── ic_arrow_back.xml │ │ │ │ ├── ic_arrow_down_24dp.xml │ │ │ │ ├── ic_battery_charging_full.xml │ │ │ │ ├── ic_battery_status_good_24dp.xml │ │ │ │ ├── ic_battery_status_maybe_24dp.xml │ │ │ │ ├── ic_call_24dp.xml │ │ │ │ ├── ic_cancel.xml │ │ │ │ ├── ic_cast_24dp.xml │ │ │ │ ├── ic_cellular_off.xml │ │ │ │ ├── ic_chevron_right_24dp.xml │ │ │ │ ├── ic_content_copy_grey600_24dp.xml │ │ │ │ ├── ic_data_saver.xml │ │ │ │ ├── ic_delete.xml │ │ │ │ ├── ic_devices_other.xml │ │ │ │ ├── ic_do_not_disturb_on_24dp.xml │ │ │ │ ├── ic_eject_24dp.xml │ │ │ │ ├── ic_expand_less.xml │ │ │ │ ├── ic_expand_more_inverse.xml │ │ │ │ ├── ic_find_in_page_24px.xml │ │ │ │ ├── ic_folder_vd_theme_24.xml │ │ │ │ ├── ic_friction_lock_closed.xml │ │ │ │ ├── ic_gray_scale_24dp.xml │ │ │ │ ├── ic_headset_24dp.xml │ │ │ │ ├── ic_help.xml │ │ │ │ ├── ic_help_actionbar.xml │ │ │ │ ├── ic_homepage_search.xml │ │ │ │ ├── ic_info_outline_24.xml │ │ │ │ ├── ic_local_movies.xml │ │ │ │ ├── ic_local_phone_24_lib.xml │ │ │ │ ├── ic_media_stream.xml │ │ │ │ ├── ic_media_stream_off.xml │ │ │ │ ├── ic_network_cell.xml │ │ │ │ ├── ic_notifications.xml │ │ │ │ ├── ic_notifications_off_24dp.xml │ │ │ │ ├── ic_phone_info.xml │ │ │ │ ├── ic_photo_library.xml │ │ │ │ ├── ic_search_24dp.xml │ │ │ │ ├── ic_settings_accent.xml │ │ │ │ ├── ic_settings_accessibility.xml │ │ │ │ ├── ic_settings_accounts.xml │ │ │ │ ├── ic_settings_backup.xml │ │ │ │ ├── ic_settings_battery_white.xml │ │ │ │ ├── ic_settings_data_usage.xml │ │ │ │ ├── ic_settings_date_time.xml │ │ │ │ ├── ic_settings_delete.xml │ │ │ │ ├── ic_settings_disable.xml │ │ │ │ ├── ic_settings_display_white.xml │ │ │ │ ├── ic_settings_enable.xml │ │ │ │ ├── ic_settings_home.xml │ │ │ │ ├── ic_settings_language.xml │ │ │ │ ├── ic_settings_location.xml │ │ │ │ ├── ic_settings_multiuser.xml │ │ │ │ ├── ic_settings_night_display.xml │ │ │ │ ├── ic_settings_open.xml │ │ │ │ ├── ic_settings_print.xml │ │ │ │ ├── ic_settings_privacy.xml │ │ │ │ ├── ic_settings_security_white.xml │ │ │ │ ├── ic_settings_sim.xml │ │ │ │ ├── ic_settings_system_dashboard_white.xml │ │ │ │ ├── ic_settings_wireless.xml │ │ │ │ ├── ic_storage.xml │ │ │ │ ├── ic_storage_white.xml │ │ │ │ ├── ic_suggestion_night_display.xml │ │ │ │ ├── ic_sync.xml │ │ │ │ ├── ic_sync_problem_24dp.xml │ │ │ │ ├── ic_system_update.xml │ │ │ │ ├── ic_videogame_vd_theme_24.xml │ │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ │ ├── ic_volume_up_24dp.xml │ │ │ │ ├── ic_vpn_key.xml │ │ │ │ └── ic_wifi_tethering.xml │ │ └── IconPackVictorSystemUIOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── anim │ │ │ ├── lock_lock.xml │ │ │ ├── lock_scanning.xml │ │ │ ├── lock_to_error.xml │ │ │ └── lock_unlock.xml │ │ │ └── drawable │ │ │ ├── ic_alarm.xml │ │ │ ├── ic_alarm_dim.xml │ │ │ ├── ic_arrow_back.xml │ │ │ ├── ic_bluetooth_connected.xml │ │ │ ├── ic_brightness_thumb.xml │ │ │ ├── ic_camera.xml │ │ │ ├── ic_cast.xml │ │ │ ├── ic_cast_connected.xml │ │ │ ├── ic_close_white.xml │ │ │ ├── ic_data_saver.xml │ │ │ ├── ic_data_saver_off.xml │ │ │ ├── ic_drag_handle.xml │ │ │ ├── ic_headset.xml │ │ │ ├── ic_headset_mic.xml │ │ │ ├── ic_hotspot.xml │ │ │ ├── ic_info.xml │ │ │ ├── ic_info_outline.xml │ │ │ ├── ic_invert_colors.xml │ │ │ ├── ic_location.xml │ │ │ ├── ic_lockscreen_ime.xml │ │ │ ├── ic_notifications_alert.xml │ │ │ ├── ic_notifications_silence.xml │ │ │ ├── ic_power_low.xml │ │ │ ├── ic_power_saver.xml │ │ │ ├── ic_qs_bluetooth_connecting.xml │ │ │ ├── ic_qs_cancel.xml │ │ │ ├── ic_qs_no_sim.xml │ │ │ ├── ic_qs_wifi_0.xml │ │ │ ├── ic_qs_wifi_1.xml │ │ │ ├── ic_qs_wifi_2.xml │ │ │ ├── ic_qs_wifi_3.xml │ │ │ ├── ic_qs_wifi_4.xml │ │ │ ├── ic_qs_wifi_disconnected.xml │ │ │ ├── ic_screenshot_delete.xml │ │ │ ├── ic_settings.xml │ │ │ ├── ic_swap_vert.xml │ │ │ ├── ic_tune_black_16dp.xml │ │ │ ├── ic_volume_alarm_mute.xml │ │ │ ├── ic_volume_bt_sco.xml │ │ │ ├── ic_volume_collapse_animation.xml │ │ │ ├── ic_volume_expand_animation.xml │ │ │ ├── ic_volume_media.xml │ │ │ ├── ic_volume_media_mute.xml │ │ │ ├── ic_volume_odi_captions.xml │ │ │ ├── ic_volume_odi_captions_disabled.xml │ │ │ ├── ic_volume_ringer.xml │ │ │ ├── ic_volume_ringer_mute.xml │ │ │ ├── ic_volume_ringer_vibrate.xml │ │ │ ├── ic_volume_voice.xml │ │ │ ├── stat_sys_managed_profile_status.xml │ │ │ ├── stat_sys_mic_none.xml │ │ │ └── stat_sys_vpn_ic.xml │ ├── IconsShape │ │ ├── IconShapeCircleOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── config.xml │ │ │ │ └── strings.xml │ │ ├── IconShapePebbleOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── config.xml │ │ │ │ └── strings.xml │ │ ├── IconShapeRoundedRectOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── config.xml │ │ │ │ └── strings.xml │ │ ├── IconShapeSquareOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── config.xml │ │ │ │ └── strings.xml │ │ ├── IconShapeSquircleOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── config.xml │ │ │ │ └── strings.xml │ │ └── IconShapeTeardropOverlay │ │ │ ├── Android.bp │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ └── values │ │ │ ├── config.xml │ │ │ └── strings.xml │ ├── NotificationUIOverlay │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ └── drawable │ │ │ └── notification_material_action_background.xml │ └── PrimaryColor │ │ ├── PrimaryColorDarkBlueOverlay │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── strings.xml │ │ └── PrimaryColorDarkGrayOverlay │ │ ├── Android.bp │ │ ├── AndroidManifest.xml │ │ └── res │ │ └── values │ │ ├── colors.xml │ │ └── strings.xml └── overlaystub │ ├── Android.mk │ ├── AndroidManifest.xml │ └── res │ ├── drawable │ ├── nature_header.jpg │ ├── nature_wallpaper.jpg │ ├── omni_header.jpg │ ├── omni_wallpaper.png │ ├── red_header.jpg │ ├── red_wallpaper.jpg │ ├── space_header.jpg │ └── space_wallpaper.jpg │ └── values │ ├── arrays.xml │ ├── drawable.xml │ └── strings.xml ├── tools └── clean_headers.sh └── utils ├── Android.mk ├── README.md ├── aosp-forked-list ├── aosp-merge.sh ├── aosp-push-merge.sh ├── caf-merge.sh ├── caf-push-merge.sh ├── caf-repos-list ├── fork_aosp.sh ├── fork_github.sh ├── kernel-upstream.sh ├── omni_emulator ├── Android.mk ├── BoardConfig.mk ├── BoardConfigEmuCommon.mk ├── GoldfishParts │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable │ │ │ ├── ic_camera.xml │ │ │ ├── ic_disabled.xml │ │ │ ├── ic_flashlight.xml │ │ │ ├── ic_music_next.xml │ │ │ ├── ic_music_play.xml │ │ │ └── ic_music_prev.xml │ │ ├── layout │ │ │ ├── applist_preference.xml │ │ │ ├── applist_preference_icon.xml │ │ │ └── preference_dialog_vibrator_strength.xml │ │ ├── values │ │ │ ├── arrays.xml │ │ │ ├── config.xml │ │ │ └── strings.xml │ │ └── xml │ │ │ └── main.xml │ └── src │ │ └── org │ │ └── omnirom │ │ └── device │ │ ├── DeviceSettings.java │ │ └── KeyHandler.java ├── README ├── common.mk ├── create_emulator_image.sh ├── fstab.ranchu ├── fstab.ranchu.initrd ├── omni_emulator.mk ├── overlay │ ├── frameworks │ │ └── base │ │ │ ├── core │ │ │ └── res │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ │ └── packages │ │ │ └── SystemUI │ │ │ └── res │ │ │ └── values │ │ │ └── dimens.xml │ └── packages │ │ └── apps │ │ └── Settings │ │ └── res │ │ └── values │ │ └── config.xml ├── packages.mk ├── skins │ ├── pixel_2_xl │ │ ├── hardware.ini │ │ ├── land_back.webp │ │ ├── land_fore.webp │ │ ├── land_shadow.webp │ │ ├── layout │ │ ├── port_back.webp │ │ ├── port_fore.webp │ │ └── port_shadow.webp │ ├── pixel_3a │ │ ├── hardware.ini │ │ ├── land_back.webp │ │ ├── land_fore.webp │ │ ├── layout │ │ ├── port_back.webp │ │ ├── port_fore.webp │ │ └── rounded_corners.webp │ └── pixel_xl │ │ ├── hardware.ini │ │ ├── land_back.webp │ │ ├── land_fore.webp │ │ ├── land_shadow.webp │ │ ├── layout │ │ ├── port_back.webp │ │ ├── port_fore.webp │ │ └── port_shadow.webp ├── start_emulator_image.sh └── system.prop ├── pixel-forked-list ├── pixel-merge.sh └── pixel-push-merge.sh /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/AndroidProducts.mk -------------------------------------------------------------------------------- /changelog/projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/changelog/projects.xml -------------------------------------------------------------------------------- /charger/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/Android.mk -------------------------------------------------------------------------------- /charger/anim/animation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/anim/animation.txt -------------------------------------------------------------------------------- /charger/fonts/480dpi: -------------------------------------------------------------------------------- 1 | hdpi -------------------------------------------------------------------------------- /charger/fonts/560dpi: -------------------------------------------------------------------------------- 1 | xxhdpi -------------------------------------------------------------------------------- /charger/fonts/640dpi: -------------------------------------------------------------------------------- 1 | xxxhdpi -------------------------------------------------------------------------------- /charger/fonts/hdpi/font_charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/fonts/hdpi/font_charger.png -------------------------------------------------------------------------------- /charger/fonts/ldpi/font_charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/fonts/ldpi/font_charger.png -------------------------------------------------------------------------------- /charger/fonts/mdpi/font_charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/fonts/mdpi/font_charger.png -------------------------------------------------------------------------------- /charger/fonts/xhdpi/font_charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/fonts/xhdpi/font_charger.png -------------------------------------------------------------------------------- /charger/fonts/xxhdpi/font_charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/fonts/xxhdpi/font_charger.png -------------------------------------------------------------------------------- /charger/fonts/xxxhdpi/font_charger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/fonts/xxxhdpi/font_charger.png -------------------------------------------------------------------------------- /charger/images/420dpi: -------------------------------------------------------------------------------- 1 | 480dpi -------------------------------------------------------------------------------- /charger/images/480dpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/images/480dpi/battery_fail.png -------------------------------------------------------------------------------- /charger/images/480dpi/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/images/480dpi/battery_scale.png -------------------------------------------------------------------------------- /charger/images/560dpi/battery_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/images/560dpi/battery_fail.png -------------------------------------------------------------------------------- /charger/images/560dpi/battery_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/charger/images/560dpi/battery_scale.png -------------------------------------------------------------------------------- /charger/images/xhdpi: -------------------------------------------------------------------------------- 1 | 480dpi/ -------------------------------------------------------------------------------- /charger/images/xxhdpi: -------------------------------------------------------------------------------- 1 | 480dpi/ -------------------------------------------------------------------------------- /charger/images/xxxhdpi: -------------------------------------------------------------------------------- 1 | 560dpi/ -------------------------------------------------------------------------------- /config/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/Android.bp -------------------------------------------------------------------------------- /config/BoardConfigKernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/BoardConfigKernel.mk -------------------------------------------------------------------------------- /config/BoardConfigOmni.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/BoardConfigOmni.mk -------------------------------------------------------------------------------- /config/BoardConfigSoong.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/BoardConfigSoong.mk -------------------------------------------------------------------------------- /config/branding.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/branding.mk -------------------------------------------------------------------------------- /config/cdma.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/cdma.mk -------------------------------------------------------------------------------- /config/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/common.mk -------------------------------------------------------------------------------- /config/common_tablet.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/common_tablet.mk -------------------------------------------------------------------------------- /config/gsm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/gsm.mk -------------------------------------------------------------------------------- /config/manifest/omni_vendor_framework_compatibility_matrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/manifest/omni_vendor_framework_compatibility_matrix.xml -------------------------------------------------------------------------------- /config/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/packages.mk -------------------------------------------------------------------------------- /config/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/config/version.mk -------------------------------------------------------------------------------- /google/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/Android.mk -------------------------------------------------------------------------------- /google/README.md: -------------------------------------------------------------------------------- 1 | Deprecated pre Q overlays - just kept for reference 2 | -------------------------------------------------------------------------------- /google/themes/AccentBlueMonday/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentBlueMonday/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentBlueMonday/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentBlueMonday/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentBlueMonday/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentBlueMonday/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentDeadRed/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentDeadRed/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentDeadRed/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentDeadRed/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentDeadRed/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentDeadRed/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentDeepOrange/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentDeepOrange/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentDeepOrange/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentDeepOrange/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentDeepOrange/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentDeepOrange/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentDeepPurple/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentDeepPurple/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentDeepPurple/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentDeepPurple/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentDeepPurple/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentDeepPurple/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentFromHell/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentFromHell/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentFromHell/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentFromHell/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentFromHell/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentFromHell/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentGoldenShower/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentGoldenShower/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentGoldenShower/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentGoldenShower/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentGoldenShower/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentGoldenShower/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentOmni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentOmni/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentOmni/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentOmni/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentOmni/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentOmni/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentPixel/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentPixel/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentPixel/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentPixel/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentPixel/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentPixel/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentRottenOrange/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentRottenOrange/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentRottenOrange/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentRottenOrange/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentRottenOrange/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentRottenOrange/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentSluttyPink/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentSluttyPink/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentSluttyPink/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentSluttyPink/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentSluttyPink/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentSluttyPink/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentSmokingGreen/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentSmokingGreen/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentSmokingGreen/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentSmokingGreen/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentSmokingGreen/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentSmokingGreen/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentTeal/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentTeal/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentTeal/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentTeal/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentTeal/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentTeal/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/AccentWhite/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentWhite/Android.mk -------------------------------------------------------------------------------- /google/themes/AccentWhite/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentWhite/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/AccentWhite/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/AccentWhite/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/Android.mk -------------------------------------------------------------------------------- /google/themes/ContactsTheme/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/ContactsTheme/Android.mk -------------------------------------------------------------------------------- /google/themes/ContactsTheme/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/ContactsTheme/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/ContactsTheme/res/drawable/dialog_background_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/ContactsTheme/res/drawable/dialog_background_material.xml -------------------------------------------------------------------------------- /google/themes/ContactsTheme/res/drawable/item_background_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/ContactsTheme/res/drawable/item_background_material_dark.xml -------------------------------------------------------------------------------- /google/themes/ContactsTheme/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/ContactsTheme/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/ContactsTheme/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/ContactsTheme/res/values/styles.xml -------------------------------------------------------------------------------- /google/themes/DialerTheme/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DialerTheme/Android.mk -------------------------------------------------------------------------------- /google/themes/DialerTheme/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DialerTheme/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/DialerTheme/java/com/android/dialer/app/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DialerTheme/java/com/android/dialer/app/res/values/color.xml -------------------------------------------------------------------------------- /google/themes/DialerTheme/java/com/android/dialer/app/res/values/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DialerTheme/java/com/android/dialer/app/res/values/style.xml -------------------------------------------------------------------------------- /google/themes/DialerTheme/java/com/android/incallui/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DialerTheme/java/com/android/incallui/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/DocumentsUITheme/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DocumentsUITheme/Android.mk -------------------------------------------------------------------------------- /google/themes/DocumentsUITheme/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DocumentsUITheme/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/DocumentsUITheme/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DocumentsUITheme/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/DocumentsUITheme/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DocumentsUITheme/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/DocumentsUITheme/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/DocumentsUITheme/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/GboardOmniTheme/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/GboardOmniTheme/Android.mk -------------------------------------------------------------------------------- /google/themes/GboardOmniTheme/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/GboardOmniTheme/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/GboardOmniTheme/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/GboardOmniTheme/res/values-v21/colors.xml -------------------------------------------------------------------------------- /google/themes/GboardOmniTheme/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/GboardOmniTheme/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/GboardOmniTheme/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/GboardOmniTheme/res/values/strings.xml -------------------------------------------------------------------------------- /google/themes/MessagesTheme/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/MessagesTheme/Android.mk -------------------------------------------------------------------------------- /google/themes/MessagesTheme/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/MessagesTheme/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/MessagesTheme/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/MessagesTheme/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/MessagesTheme/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/MessagesTheme/res/values/styles.xml -------------------------------------------------------------------------------- /google/themes/MusicFXTheme/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/MusicFXTheme/Android.mk -------------------------------------------------------------------------------- /google/themes/MusicFXTheme/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/MusicFXTheme/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/MusicFXTheme/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/MusicFXTheme/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/NotificationsDark/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsDark/Android.mk -------------------------------------------------------------------------------- /google/themes/NotificationsDark/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsDark/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/NotificationsDark/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsDark/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/NotificationsDark/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsDark/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/NotificationsLight/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsLight/Android.mk -------------------------------------------------------------------------------- /google/themes/NotificationsLight/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsLight/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/NotificationsLight/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsLight/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/NotificationsLight/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsLight/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/NotificationsPrimary/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsPrimary/Android.mk -------------------------------------------------------------------------------- /google/themes/NotificationsPrimary/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsPrimary/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/NotificationsPrimary/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/NotificationsPrimary/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PhonographTheme/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PhonographTheme/Android.mk -------------------------------------------------------------------------------- /google/themes/PhonographTheme/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PhonographTheme/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PhonographTheme/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PhonographTheme/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PhonographTheme/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PhonographTheme/res/values/styles.xml -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/Android.mk -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/res/values/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/res/values/settings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/res/values/strings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/res/values/styles.xml -------------------------------------------------------------------------------- /google/themes/PrimaryAlmostBlack/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryAlmostBlack/res/values/themes.xml -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/Android.mk -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/res/values/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/res/values/settings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/res/values/strings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/res/values/styles.xml -------------------------------------------------------------------------------- /google/themes/PrimaryBlack/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryBlack/res/values/themes.xml -------------------------------------------------------------------------------- /google/themes/PrimaryColdWhite/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryColdWhite/Android.mk -------------------------------------------------------------------------------- /google/themes/PrimaryColdWhite/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryColdWhite/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PrimaryColdWhite/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryColdWhite/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/PrimaryColdWhite/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryColdWhite/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/PrimaryColdWhite/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryColdWhite/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PrimaryColdWhite/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryColdWhite/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/PrimaryColdWhite/res/values/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryColdWhite/res/values/settings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryColdWhite/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryColdWhite/res/values/themes.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/Android.mk -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/res/drawable/list_divider_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/res/drawable/list_divider_material.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/res/values/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/res/values/settings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/res/values/strings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/res/values/styles.xml -------------------------------------------------------------------------------- /google/themes/PrimaryDarkBlue/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryDarkBlue/res/values/themes.xml -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/Android.mk -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/res/values/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/res/values/settings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/res/values/strings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/res/values/styles.xml -------------------------------------------------------------------------------- /google/themes/PrimaryOmni/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryOmni/res/values/themes.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/Android.mk -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/res/drawable/list_divider_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/res/drawable/list_divider_material.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/res/values/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/res/values/settings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/res/values/strings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/res/values/styles.xml -------------------------------------------------------------------------------- /google/themes/PrimaryTealMeal/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryTealMeal/res/values/themes.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/Android.mk -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/res/drawable/list_divider_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/res/drawable/list_divider_material.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/res/values/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/res/values/settings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/res/values/strings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/res/values/styles.xml -------------------------------------------------------------------------------- /google/themes/PrimaryViolator/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryViolator/res/values/themes.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWarmWhite/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWarmWhite/Android.mk -------------------------------------------------------------------------------- /google/themes/PrimaryWarmWhite/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWarmWhite/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWarmWhite/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWarmWhite/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWarmWhite/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWarmWhite/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWarmWhite/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWarmWhite/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWarmWhite/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWarmWhite/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWarmWhite/res/values/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWarmWhite/res/values/settings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWarmWhite/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWarmWhite/res/values/themes.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWhite/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWhite/Android.mk -------------------------------------------------------------------------------- /google/themes/PrimaryWhite/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWhite/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWhite/res/color/ripple_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWhite/res/color/ripple_material_light.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWhite/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWhite/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWhite/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWhite/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWhite/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWhite/res/values/config.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWhite/res/values/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWhite/res/values/settings.xml -------------------------------------------------------------------------------- /google/themes/PrimaryWhite/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/PrimaryWhite/res/values/themes.xml -------------------------------------------------------------------------------- /google/themes/TelecommTheme/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/TelecommTheme/Android.mk -------------------------------------------------------------------------------- /google/themes/TelecommTheme/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/TelecommTheme/AndroidManifest.xml -------------------------------------------------------------------------------- /google/themes/TelecommTheme/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/TelecommTheme/res/values/colors.xml -------------------------------------------------------------------------------- /google/themes/TelecommTheme/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/google/themes/TelecommTheme/res/values/styles.xml -------------------------------------------------------------------------------- /overlay/CarrierConfig/packages/apps/CarrierConfig/res/xml/vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/CarrierConfig/packages/apps/CarrierConfig/res/xml/vendor.xml -------------------------------------------------------------------------------- /overlay/MicrogOmniLibOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/MicrogOmniLibOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/MicrogOmniLibOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/MicrogOmniLibOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/MicrogOmniLibOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/MicrogOmniLibOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/MicrogUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/MicrogUIOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/MicrogUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/MicrogUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/MicrogUIOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/MicrogUIOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc204-mnc04/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc204-mnc04/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc208-mnc10/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc208-mnc10/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc214-mnc01/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc214-mnc01/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc234-mnc15/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc234-mnc15/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc262-mnc01/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc262-mnc01/strings.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc262-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc262-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc262-mnc04/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc262-mnc04/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc262-mnc07/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc262-mnc07/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc262-mnc08/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc262-mnc08/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc262-mnc09/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc262-mnc09/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc268-mnc01/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc268-mnc01/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc302-mnc220/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc302-mnc220/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc302-mnc370/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc302-mnc370/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc302-mnc610/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc302-mnc610/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc302-mnc720/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc302-mnc720/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc004/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc004/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc070/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc070/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc090/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc090/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc120/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc120/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc150/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc150/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc170/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc170/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc260/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc260/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc380/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc380/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc410/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc410/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc560/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc560/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc310-mnc680/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc310-mnc680/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc180/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc180/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc220/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc220/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc221/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc221/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc222/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc222/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc223/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc223/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc224/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc224/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc225/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc225/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc226/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc226/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc227/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc227/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc228/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc228/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc229/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc229/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc480/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc480/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc490/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc490/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc580/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc580/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc581/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc581/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc582/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc582/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc583/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc583/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc584/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc584/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc585/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc585/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc586/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc586/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc587/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc587/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc588/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc588/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc589/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc589/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc311-mnc870/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc311-mnc870/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc312-mnc530/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc312-mnc530/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc316-mnc010/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc316-mnc010/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc330-mnc110/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc330-mnc110/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc334-mnc020/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc334-mnc020/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc334-mnc050/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc334-mnc050/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc334-mnc090/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc334-mnc090/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc334-mnc30/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc334-mnc30/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc370-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc370-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc404-mnc01/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc404-mnc01/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc840/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc840/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc854/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc854/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc855/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc855/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc856/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc856/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc857/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc857/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc858/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc858/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc859/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc859/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc860/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc860/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc861/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc861/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc862/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc862/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc863/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc863/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc864/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc864/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc865/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc865/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc866/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc866/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc867/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc867/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc868/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc868/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc869/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc869/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc870/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc870/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc871/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc871/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc872/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc872/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc873/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc873/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc405-mnc874/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc405-mnc874/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc460-mnc03/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc460-mnc03/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc460-mnc11/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc460-mnc11/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc505-mnc01/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc505-mnc01/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc505-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc505-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc505-mnc03/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc505-mnc03/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc505-mnc07/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc505-mnc07/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc505-mnc11/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc505-mnc11/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc505-mnc71/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc505-mnc71/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc505-mnc72/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc505-mnc72/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc505-mnc90/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc505-mnc90/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc706-mnc01/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc706-mnc01/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc712-mnc03/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc712-mnc03/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc714-mnc03/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc714-mnc03/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc716-mnc06/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc716-mnc06/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc716-mnc10/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc716-mnc10/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc716-mnc17/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc716-mnc17/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc722-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc722-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc722-mnc07/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc722-mnc07/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc722-mnc310/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc722-mnc310/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc722-mnc34/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc722-mnc34/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc722-mnc340/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc722-mnc340/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc722-mnc341/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc722-mnc341/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc722-mnc36/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc722-mnc36/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc03/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc03/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc04/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc04/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc05/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc05/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc06/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc06/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc10/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc10/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc11/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc11/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc16/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc16/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc23/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc23/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc24/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc24/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc31/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc31/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc724-mnc39/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc724-mnc39/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc730-mnc01/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc730-mnc01/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc730-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc730-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc730-mnc09/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc730-mnc09/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc730-mnc10/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc730-mnc10/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc732-mnc101/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc732-mnc101/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc732-mnc103/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc732-mnc103/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc732-mnc111/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc732-mnc111/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc732-mnc12/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc732-mnc12/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc732-mnc123/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc732-mnc123/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc732-mnc130/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc732-mnc130/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc734-mnc04/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc734-mnc04/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc740-mnc01/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc740-mnc01/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc744-mnc02/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc744-mnc02/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values-mcc748-mnc10/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values-mcc748-mnc10/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/values/dimen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/values/dimen.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/core/res/res/xml/config_webview_packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/core/res/res/xml/config_webview_packages.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/packages/SystemUI/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/SystemUI/res/values/config_qti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/packages/SystemUI/res/values/config_qti.xml -------------------------------------------------------------------------------- /overlay/common/frameworks/base/packages/SystemUI/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/frameworks/base/packages/SystemUI/res/values/integers.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/CellBroadcastReceiver/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/apps/CellBroadcastReceiver/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/Settings/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/apps/Settings/res/values/dimens.xml -------------------------------------------------------------------------------- /overlay/common/packages/apps/SimpleDeviceConfig/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/apps/SimpleDeviceConfig/res/values/config.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/BuiltInPrintService/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/BuiltInPrintService/res/values/colors.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-af/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-am/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-am/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ar/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-az-rAZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-az-rAZ/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-bg/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ca/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-cs/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-da/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-de/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-el/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-en-rAU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-en-rAU/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-en-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-en-rCA/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-en-rXC/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-en-rXC/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-es/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-et-rEE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-et-rEE/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-eu-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-eu-rES/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-fa/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-fi/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-fr-rCA/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-fr/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-hi/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-hr/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-hu/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-hy-rAM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-hy-rAM/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-in/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-is-rIS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-is-rIS/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-it/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-iw/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ja/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ka-rGE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ka-rGE/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-km-rKH/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-km-rKH/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-kn-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-kn-rIN/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ko/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-lo-rLA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-lo-rLA/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-lt/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-lv/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ml-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ml-rIN/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-mn-rMN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-mn-rMN/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-mr-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-mr-rIN/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ms-rMY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ms-rMY/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-nb/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ne-rNP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ne-rNP/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-nl/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-pl/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-pt/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ro/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ru/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-si-rLK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-si-rLK/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-sk/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-sl/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-sr/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-sv/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-sw/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ta-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ta-rIN/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-te-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-te-rIN/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-th/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-tl/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-tr/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-uk/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-ur-rPK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-ur-rPK/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-vi/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values-zu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values-zu/strings.xml -------------------------------------------------------------------------------- /overlay/common/packages/services/Telephony/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/overlay/common/packages/services/Telephony/res/values/strings.xml -------------------------------------------------------------------------------- /prebuilt/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/Android.mk -------------------------------------------------------------------------------- /prebuilt/app/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/app/Android.mk -------------------------------------------------------------------------------- /prebuilt/app/Fun/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/app/Fun/Android.mk -------------------------------------------------------------------------------- /prebuilt/app/Fun/EggGame.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/app/Fun/EggGame.apk -------------------------------------------------------------------------------- /prebuilt/app/OmniStore/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/app/OmniStore/Android.mk -------------------------------------------------------------------------------- /prebuilt/app/OmniStore/OmniStoreInstaller.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/app/OmniStore/OmniStoreInstaller.apk -------------------------------------------------------------------------------- /prebuilt/bootanimation/bootanimation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/bootanimation/bootanimation.zip -------------------------------------------------------------------------------- /prebuilt/bootanimation/res/1080p.zip: -------------------------------------------------------------------------------- 1 | 1080x608.zip -------------------------------------------------------------------------------- /prebuilt/bootanimation/res/1080x608.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/bootanimation/res/1080x608.zip -------------------------------------------------------------------------------- /prebuilt/bootanimation/res/1440p.zip: -------------------------------------------------------------------------------- 1 | 1440x814.zip -------------------------------------------------------------------------------- /prebuilt/bootanimation/res/1440x814.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/bootanimation/res/1440x814.zip -------------------------------------------------------------------------------- /prebuilt/bootanimation/res/360p.zip: -------------------------------------------------------------------------------- 1 | 360x240.zip -------------------------------------------------------------------------------- /prebuilt/bootanimation/res/360x240.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/bootanimation/res/360x240.zip -------------------------------------------------------------------------------- /prebuilt/bootanimation/res/720p.zip: -------------------------------------------------------------------------------- 1 | 720x407.zip -------------------------------------------------------------------------------- /prebuilt/bootanimation/res/720x407.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/bootanimation/res/720x407.zip -------------------------------------------------------------------------------- /prebuilt/bootanimation/res/generate-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/bootanimation/res/generate-packages.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/50-hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/common/bin/50-hosts.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/common/bin/backuptool.functions -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/common/bin/backuptool.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool_ab.functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/common/bin/backuptool_ab.functions -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool_ab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/common/bin/backuptool_ab.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/backuptool_postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/common/bin/backuptool_postinstall.sh -------------------------------------------------------------------------------- /prebuilt/common/bin/clean_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/common/bin/clean_cache.sh -------------------------------------------------------------------------------- /prebuilt/etc/apns-conf-cdma.xml: -------------------------------------------------------------------------------- 1 | apns-conf.xml -------------------------------------------------------------------------------- /prebuilt/etc/apns-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/etc/apns-conf.xml -------------------------------------------------------------------------------- /prebuilt/etc/fonts_customization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/etc/fonts_customization.xml -------------------------------------------------------------------------------- /prebuilt/etc/init.local.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/etc/init.local.rc -------------------------------------------------------------------------------- /prebuilt/etc/mkshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/etc/mkshrc -------------------------------------------------------------------------------- /prebuilt/etc/permissions/org.lineageos.health.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/etc/permissions/org.lineageos.health.xml -------------------------------------------------------------------------------- /prebuilt/etc/permissions/privapp-permissions-omni-ext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/etc/permissions/privapp-permissions-omni-ext.xml -------------------------------------------------------------------------------- /prebuilt/etc/permissions/privapp-permissions-omni.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/etc/permissions/privapp-permissions-omni.xml -------------------------------------------------------------------------------- /prebuilt/etc/sysconfig/backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/etc/sysconfig/backup.xml -------------------------------------------------------------------------------- /prebuilt/etc/sysconfig/omniota.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/etc/sysconfig/omniota.xml -------------------------------------------------------------------------------- /prebuilt/fonts/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/Android.bp -------------------------------------------------------------------------------- /prebuilt/fonts/GoogleSansClock-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/GoogleSansClock-Regular.ttf -------------------------------------------------------------------------------- /prebuilt/fonts/Muli-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/Muli-Bold.ttf -------------------------------------------------------------------------------- /prebuilt/fonts/Muli-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/Muli-BoldItalic.ttf -------------------------------------------------------------------------------- /prebuilt/fonts/Muli-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/Muli-Italic.ttf -------------------------------------------------------------------------------- /prebuilt/fonts/Muli-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/Muli-Medium.ttf -------------------------------------------------------------------------------- /prebuilt/fonts/Muli-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/Muli-MediumItalic.ttf -------------------------------------------------------------------------------- /prebuilt/fonts/Muli-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/Muli-Regular.ttf -------------------------------------------------------------------------------- /prebuilt/fonts/Muli-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/Muli-SemiBold.ttf -------------------------------------------------------------------------------- /prebuilt/fonts/Muli-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/Muli-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /prebuilt/fonts/fonts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/fonts/fonts.mk -------------------------------------------------------------------------------- /prebuilt/lib/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/lib/Android.bp -------------------------------------------------------------------------------- /prebuilt/lib/libGoogleFeed.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/lib/libGoogleFeed.jar -------------------------------------------------------------------------------- /prebuilt/postinst/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/postinst/Android.bp -------------------------------------------------------------------------------- /prebuilt/postinst/omnipreopt_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/postinst/omnipreopt_script.sh -------------------------------------------------------------------------------- /prebuilt/sounds/VideoRecord_48k.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/VideoRecord_48k.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/VideoStop_48k.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/VideoStop_48k.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/camera_click_48k.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/camera_click_48k.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_alarm1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_alarm1.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_alarm2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_alarm2.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_charge_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_charge_start.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_lock_phone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_lock_phone.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_lowbattery1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_lowbattery1.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_notification1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_notification1.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_ringtone1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_ringtone1.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_ringtone2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_ringtone2.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_ringtone3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_ringtone3.ogg -------------------------------------------------------------------------------- /prebuilt/sounds/omni_unlock_phone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/sounds/omni_unlock_phone.ogg -------------------------------------------------------------------------------- /prebuilt/wallpapers/create_thumbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/wallpapers/create_thumbs.sh -------------------------------------------------------------------------------- /prebuilt/wallpapers/json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/wallpapers/json.php -------------------------------------------------------------------------------- /prebuilt/wallpapers/json_wallpapers_xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/wallpapers/json_wallpapers_xml.php -------------------------------------------------------------------------------- /prebuilt/wallpapers/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/wallpapers/upload.sh -------------------------------------------------------------------------------- /prebuilt/wallpapers/wallpapers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/prebuilt/wallpapers/wallpapers.xml -------------------------------------------------------------------------------- /release/aconfig/bp1a/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/release/aconfig/bp1a/Android.bp -------------------------------------------------------------------------------- /release/aconfig/bp1a/com.android.launcher3/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/release/aconfig/bp1a/com.android.launcher3/Android.bp -------------------------------------------------------------------------------- /release/aconfig/bp1a/com.android.settings.flags/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/release/aconfig/bp1a/com.android.settings.flags/Android.bp -------------------------------------------------------------------------------- /release/aconfig/bp1a/com.android.systemui/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/release/aconfig/bp1a/com.android.systemui/Android.bp -------------------------------------------------------------------------------- /release/aconfig/bp1a/com.android.systemui/systemui_flags.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/release/aconfig/bp1a/com.android.systemui/systemui_flags.textproto -------------------------------------------------------------------------------- /release/build_config/DEFAULT=proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release/build_config/bp1a.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/release/build_config/bp1a.textproto -------------------------------------------------------------------------------- /release/release_config_map.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release/release_config_map.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/release/release_config_map.textproto -------------------------------------------------------------------------------- /release/release_configs/bp1a.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/release/release_configs/bp1a.textproto -------------------------------------------------------------------------------- /sepolicy/libperfmgr/sepolicy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/libperfmgr/sepolicy.mk -------------------------------------------------------------------------------- /sepolicy/libperfmgr/vendor/hal_power_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/libperfmgr/vendor/hal_power_default.te -------------------------------------------------------------------------------- /sepolicy/libperfmgr/vendor/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/libperfmgr/vendor/property.te -------------------------------------------------------------------------------- /sepolicy/libperfmgr/vendor/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/libperfmgr/vendor/property_contexts -------------------------------------------------------------------------------- /sepolicy/libperfmgr/vendor/vendor_init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/libperfmgr/vendor/vendor_init.te -------------------------------------------------------------------------------- /sepolicy/private/backuptool.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/backuptool.te -------------------------------------------------------------------------------- /sepolicy/private/dex2oat.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/dex2oat.te -------------------------------------------------------------------------------- /sepolicy/private/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/file.te -------------------------------------------------------------------------------- /sepolicy/private/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/file_contexts -------------------------------------------------------------------------------- /sepolicy/private/hal_bootctl.te: -------------------------------------------------------------------------------- 1 | allow hal_bootctl self:capability sys_admin; 2 | 3 | -------------------------------------------------------------------------------- /sepolicy/private/hal_health.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/hal_health.te -------------------------------------------------------------------------------- /sepolicy/private/init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/init.te -------------------------------------------------------------------------------- /sepolicy/private/mkfs.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/mkfs.te -------------------------------------------------------------------------------- /sepolicy/private/otapreopt_chroot.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/otapreopt_chroot.te -------------------------------------------------------------------------------- /sepolicy/private/platform_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/platform_app.te -------------------------------------------------------------------------------- /sepolicy/private/priv_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/priv_app.te -------------------------------------------------------------------------------- /sepolicy/private/property.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/property.te -------------------------------------------------------------------------------- /sepolicy/private/property_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/property_contexts -------------------------------------------------------------------------------- /sepolicy/private/recovery.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/recovery.te -------------------------------------------------------------------------------- /sepolicy/private/rootfs.te: -------------------------------------------------------------------------------- 1 | allow rootfs labeledfs:filesystem associate; 2 | 3 | -------------------------------------------------------------------------------- /sepolicy/private/sdcardfs.te: -------------------------------------------------------------------------------- 1 | allow sdcardfs labeledfs:filesystem associate; 2 | 3 | -------------------------------------------------------------------------------- /sepolicy/private/service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/service.te -------------------------------------------------------------------------------- /sepolicy/private/service_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/service_contexts -------------------------------------------------------------------------------- /sepolicy/private/shell.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/shell.te -------------------------------------------------------------------------------- /sepolicy/private/system_app.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/system_app.te -------------------------------------------------------------------------------- /sepolicy/private/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/system_server.te -------------------------------------------------------------------------------- /sepolicy/private/update_engine.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/update_engine.te -------------------------------------------------------------------------------- /sepolicy/private/vold.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/private/vold.te -------------------------------------------------------------------------------- /sepolicy/public/attributes: -------------------------------------------------------------------------------- 1 | # HALs 2 | hal_attribute_omni(lineage_health) 3 | -------------------------------------------------------------------------------- /sepolicy/public/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/public/file.te -------------------------------------------------------------------------------- /sepolicy/public/fsck_untrusted.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/public/fsck_untrusted.te -------------------------------------------------------------------------------- /sepolicy/public/te_macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/public/te_macros -------------------------------------------------------------------------------- /sepolicy/qcom/vendor/file.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/qcom/vendor/file.te -------------------------------------------------------------------------------- /sepolicy/qcom/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/qcom/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/qcom/vendor/genfs_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/qcom/vendor/genfs_contexts -------------------------------------------------------------------------------- /sepolicy/qcom/vendor/hal_lineage_health_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/qcom/vendor/hal_lineage_health_default.te -------------------------------------------------------------------------------- /sepolicy/qcom/vendor/hal_power_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/qcom/vendor/hal_power_default.te -------------------------------------------------------------------------------- /sepolicy/sepolicy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/sepolicy.mk -------------------------------------------------------------------------------- /sepolicy/vendor/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/vendor/file_contexts -------------------------------------------------------------------------------- /sepolicy/vendor/hal_lineage_health.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/vendor/hal_lineage_health.te -------------------------------------------------------------------------------- /sepolicy/vendor/hal_lineage_health_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/vendor/hal_lineage_health_default.te -------------------------------------------------------------------------------- /sepolicy/vendor/service.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/vendor/service.te -------------------------------------------------------------------------------- /sepolicy/vendor/service_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/sepolicy/vendor/service_contexts -------------------------------------------------------------------------------- /themes/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/Android.mk -------------------------------------------------------------------------------- /themes/PreferenceTheme/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/Android.bp -------------------------------------------------------------------------------- /themes/PreferenceTheme/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/README -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/color-v31/omni_settings_switch_thumb_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/color-v31/omni_settings_switch_thumb_color.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/color-v31/omni_settings_switch_track_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/color-v31/omni_settings_switch_track_color.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/color-v34/omni_settings_switch_thumb_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/color-v34/omni_settings_switch_thumb_color.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/drawable-v31/omni_settings_switch_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/drawable-v31/omni_settings_switch_thumb.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/drawable-v31/omni_settings_switch_track.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/drawable-v31/omni_settings_switch_track.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/drawable-v34/omni_settings_switch_track.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/drawable-v34/omni_settings_switch_track.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/values-night-v31/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/values-night-v31/colors.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/values-night-v34/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/values-night-v34/colors.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/values-v31/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/values-v31/colors.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/values-v31/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/values-v31/config.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/values-v31/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/values-v31/dimens.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/values-v31/styles_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/values-v31/styles_preference.xml -------------------------------------------------------------------------------- /themes/PreferenceTheme/res/values-v34/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/PreferenceTheme/res/values-v34/colors.xml -------------------------------------------------------------------------------- /themes/README.md: -------------------------------------------------------------------------------- 1 | Android Q overlays and theme 2 | -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorOmniOverlay/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorOmniOverlay/Android.mk -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorOmniOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorOmniOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorOmniOverlay/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorOmniOverlay/res/values/colors.xml -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorOmniOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorOmniOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorOrangeOverlay/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorOrangeOverlay/Android.mk -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorOrangeOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorOrangeOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorOrangeOverlay/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorOrangeOverlay/res/values/colors.xml -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorOrangeOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorOrangeOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorPurpleOverlay/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorPurpleOverlay/Android.mk -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorPurpleOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorPurpleOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorPurpleOverlay/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorPurpleOverlay/res/values/colors.xml -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorPurpleOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorPurpleOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /themes/overlays/AccentColor/AccentColorSluttyPinkOverlay/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/AccentColor/AccentColorSluttyPinkOverlay/Android.mk -------------------------------------------------------------------------------- /themes/overlays/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/Android.mk -------------------------------------------------------------------------------- /themes/overlays/Fonts/FontLatoSourceOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/Fonts/FontLatoSourceOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/Fonts/FontLatoSourceOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/Fonts/FontLatoSourceOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/Fonts/FontLatoSourceOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/Fonts/FontLatoSourceOverlay/res/values/config.xml -------------------------------------------------------------------------------- /themes/overlays/Fonts/FontLatoSourceOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/Fonts/FontLatoSourceOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /themes/overlays/Fonts/FontMuliSourceOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/Fonts/FontMuliSourceOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/Fonts/FontMuliSourceOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/Fonts/FontMuliSourceOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/Fonts/FontMuliSourceOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/Fonts/FontMuliSourceOverlay/res/values/config.xml -------------------------------------------------------------------------------- /themes/overlays/Fonts/FontMuliSourceOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/Fonts/FontMuliSourceOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackCircularAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackCircularAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackCircularLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackCircularLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackCircularSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackCircularSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackCircularSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackCircularSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackFilledAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackFilledAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackFilledAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackFilledAndroidOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackFilledLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackFilledLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackFilledLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackFilledLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackFilledSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackFilledSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackFilledSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackFilledSettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackFilledSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackFilledSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackKaiAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackKaiAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackKaiAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackKaiAndroidOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackKaiLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackKaiLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackKaiLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackKaiLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackKaiSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackKaiSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackKaiSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackKaiSettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackKaiSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackKaiSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackKaiSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackKaiSystemUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackRoundedAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackRoundedAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackRoundedLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackRoundedLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackRoundedSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackRoundedSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackRoundedSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackRoundedSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackSamAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackSamAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackSamAndroidOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackSamAndroidOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackSamLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackSamLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackSamLauncherOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackSamLauncherOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackSamSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackSamSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackSamSettingsOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackSamSettingsOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackSamSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackSamSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackSamSystemUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackSamSystemUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackVictorAndroidOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackVictorAndroidOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackVictorLauncherOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackVictorLauncherOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackVictorSettingsOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackVictorSettingsOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsPack/IconPackVictorSystemUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsPack/IconPackVictorSystemUIOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeCircleOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeCircleOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeCircleOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeCircleOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeCircleOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeCircleOverlay/res/values/config.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeCircleOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeCircleOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapePebbleOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapePebbleOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapePebbleOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapePebbleOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapePebbleOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapePebbleOverlay/res/values/config.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapePebbleOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapePebbleOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeRoundedRectOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeRoundedRectOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeSquareOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeSquareOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeSquareOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeSquareOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeSquareOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeSquareOverlay/res/values/config.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeSquareOverlay/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeSquareOverlay/res/values/strings.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeSquircleOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeSquircleOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeSquircleOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeSquircleOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeTeardropOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeTeardropOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/IconsShape/IconShapeTeardropOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/IconsShape/IconShapeTeardropOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/NotificationUIOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/NotificationUIOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/NotificationUIOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/NotificationUIOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlays/PrimaryColor/PrimaryColorDarkBlueOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/PrimaryColor/PrimaryColorDarkBlueOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlays/PrimaryColor/PrimaryColorDarkGrayOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlays/PrimaryColor/PrimaryColorDarkGrayOverlay/Android.bp -------------------------------------------------------------------------------- /themes/overlaystub/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/Android.mk -------------------------------------------------------------------------------- /themes/overlaystub/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/AndroidManifest.xml -------------------------------------------------------------------------------- /themes/overlaystub/res/drawable/nature_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/drawable/nature_header.jpg -------------------------------------------------------------------------------- /themes/overlaystub/res/drawable/nature_wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/drawable/nature_wallpaper.jpg -------------------------------------------------------------------------------- /themes/overlaystub/res/drawable/omni_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/drawable/omni_header.jpg -------------------------------------------------------------------------------- /themes/overlaystub/res/drawable/omni_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/drawable/omni_wallpaper.png -------------------------------------------------------------------------------- /themes/overlaystub/res/drawable/red_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/drawable/red_header.jpg -------------------------------------------------------------------------------- /themes/overlaystub/res/drawable/red_wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/drawable/red_wallpaper.jpg -------------------------------------------------------------------------------- /themes/overlaystub/res/drawable/space_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/drawable/space_header.jpg -------------------------------------------------------------------------------- /themes/overlaystub/res/drawable/space_wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/drawable/space_wallpaper.jpg -------------------------------------------------------------------------------- /themes/overlaystub/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/values/arrays.xml -------------------------------------------------------------------------------- /themes/overlaystub/res/values/drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/values/drawable.xml -------------------------------------------------------------------------------- /themes/overlaystub/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/themes/overlaystub/res/values/strings.xml -------------------------------------------------------------------------------- /tools/clean_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/tools/clean_headers.sh -------------------------------------------------------------------------------- /utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/Android.mk -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/README.md -------------------------------------------------------------------------------- /utils/aosp-forked-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/aosp-forked-list -------------------------------------------------------------------------------- /utils/aosp-merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/aosp-merge.sh -------------------------------------------------------------------------------- /utils/aosp-push-merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/aosp-push-merge.sh -------------------------------------------------------------------------------- /utils/caf-merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/caf-merge.sh -------------------------------------------------------------------------------- /utils/caf-push-merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/caf-push-merge.sh -------------------------------------------------------------------------------- /utils/caf-repos-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/caf-repos-list -------------------------------------------------------------------------------- /utils/fork_aosp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/fork_aosp.sh -------------------------------------------------------------------------------- /utils/fork_github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/fork_github.sh -------------------------------------------------------------------------------- /utils/kernel-upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/kernel-upstream.sh -------------------------------------------------------------------------------- /utils/omni_emulator/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/Android.mk -------------------------------------------------------------------------------- /utils/omni_emulator/BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/BoardConfig.mk -------------------------------------------------------------------------------- /utils/omni_emulator/BoardConfigEmuCommon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/BoardConfigEmuCommon.mk -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/Android.mk -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/AndroidManifest.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable/ic_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable/ic_camera.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable/ic_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable/ic_disabled.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable/ic_flashlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable/ic_flashlight.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable/ic_music_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable/ic_music_next.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable/ic_music_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable/ic_music_play.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/drawable/ic_music_prev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/drawable/ic_music_prev.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/layout/applist_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/layout/applist_preference.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/layout/applist_preference_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/layout/applist_preference_icon.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/values/arrays.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/values/config.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/values/strings.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/res/xml/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/res/xml/main.xml -------------------------------------------------------------------------------- /utils/omni_emulator/GoldfishParts/src/org/omnirom/device/KeyHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/GoldfishParts/src/org/omnirom/device/KeyHandler.java -------------------------------------------------------------------------------- /utils/omni_emulator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/README -------------------------------------------------------------------------------- /utils/omni_emulator/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/common.mk -------------------------------------------------------------------------------- /utils/omni_emulator/create_emulator_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/create_emulator_image.sh -------------------------------------------------------------------------------- /utils/omni_emulator/fstab.ranchu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/fstab.ranchu -------------------------------------------------------------------------------- /utils/omni_emulator/fstab.ranchu.initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/fstab.ranchu.initrd -------------------------------------------------------------------------------- /utils/omni_emulator/omni_emulator.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/omni_emulator.mk -------------------------------------------------------------------------------- /utils/omni_emulator/overlay/packages/apps/Settings/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/overlay/packages/apps/Settings/res/values/config.xml -------------------------------------------------------------------------------- /utils/omni_emulator/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/packages.mk -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_2_xl/hardware.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_2_xl/hardware.ini -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_2_xl/land_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_2_xl/land_back.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_2_xl/land_fore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_2_xl/land_fore.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_2_xl/land_shadow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_2_xl/land_shadow.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_2_xl/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_2_xl/layout -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_2_xl/port_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_2_xl/port_back.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_2_xl/port_fore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_2_xl/port_fore.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_2_xl/port_shadow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_2_xl/port_shadow.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_3a/hardware.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_3a/hardware.ini -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_3a/land_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_3a/land_back.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_3a/land_fore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_3a/land_fore.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_3a/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_3a/layout -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_3a/port_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_3a/port_back.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_3a/port_fore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_3a/port_fore.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_3a/rounded_corners.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_3a/rounded_corners.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_xl/hardware.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_xl/hardware.ini -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_xl/land_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_xl/land_back.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_xl/land_fore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_xl/land_fore.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_xl/land_shadow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_xl/land_shadow.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_xl/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_xl/layout -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_xl/port_back.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_xl/port_back.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_xl/port_fore.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_xl/port_fore.webp -------------------------------------------------------------------------------- /utils/omni_emulator/skins/pixel_xl/port_shadow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/skins/pixel_xl/port_shadow.webp -------------------------------------------------------------------------------- /utils/omni_emulator/start_emulator_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/omni_emulator/start_emulator_image.sh -------------------------------------------------------------------------------- /utils/omni_emulator/system.prop: -------------------------------------------------------------------------------- 1 | # we are not caf 2 | sys.vendor.qti.servicetracker.disable=true 3 | -------------------------------------------------------------------------------- /utils/pixel-forked-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/pixel-forked-list -------------------------------------------------------------------------------- /utils/pixel-merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/pixel-merge.sh -------------------------------------------------------------------------------- /utils/pixel-push-merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnirom/android_vendor_omni/HEAD/utils/pixel-push-merge.sh --------------------------------------------------------------------------------