├── .gitignore
├── LICENSE
├── audio
├── alarms
│ ├── A_real_hoot.ogg
│ ├── Bright_morning.ogg
│ ├── Cuckoo_clock.ogg
│ ├── Early_twilight.ogg
│ ├── Fresh_start.ogg
│ ├── Full_of_wonder.ogg
│ ├── Gentle_breeze.ogg
│ ├── Icicles.ogg
│ ├── Jump_start.ogg
│ ├── Loose_change.ogg
│ ├── Rolling_fog.ogg
│ ├── Spokes.ogg
│ └── Sunshower.ogg
├── notifications
│ ├── Beginning.ogg
│ ├── Coconuts.ogg
│ ├── Duet.ogg
│ ├── End_note.ogg
│ ├── Eureka.ogg
│ ├── Gentle_gong.ogg
│ ├── Mallet.ogg
│ ├── Orders_up.ogg
│ ├── Ping.ogg
│ ├── Pipes.ogg
│ ├── Popcorn.ogg
│ ├── Shopkeeper.ogg
│ ├── Sticks_and_stones.ogg
│ ├── Tuneup.ogg
│ ├── Tweeter.ogg
│ └── Twinkle.ogg
├── ringtones
│ ├── Copycat.ogg
│ ├── Crackle.ogg
│ ├── Flutterby.ogg
│ ├── Hotline.ogg
│ ├── Leaps_and_bounds.ogg
│ ├── Lollipop.ogg
│ ├── Lost_and_found.ogg
│ ├── Mash_up.ogg
│ ├── Monkey_around.ogg
│ ├── Schools_out.ogg
│ ├── The_big_adventure.ogg
│ ├── Your_new_adventure.ogg
│ └── Zen_too.ogg
└── ui
│ ├── AttentionalHaptics.ogg
│ ├── ChargingStarted.ogg
│ ├── Dock.ogg
│ ├── Effect_Tick.ogg
│ ├── InCallNotification.ogg
│ ├── KeypressDelete.ogg
│ ├── KeypressInvalid.ogg
│ ├── KeypressReturn.ogg
│ ├── KeypressSpacebar.ogg
│ ├── KeypressStandard.ogg
│ ├── Lock.ogg
│ ├── LowBattery.ogg
│ ├── NFCFailure.ogg
│ ├── NFCInitiated.ogg
│ ├── NFCSuccess.ogg
│ ├── NFCTransferComplete.ogg
│ ├── NFCTransferInitiated.ogg
│ ├── Trusted.ogg
│ ├── Undock.ogg
│ ├── Unlock.ogg
│ ├── VideoRecord.ogg
│ ├── VideoStop.ogg
│ ├── WirelessChargingStarted.ogg
│ ├── audio_end.ogg
│ ├── audio_initiate.ogg
│ ├── camera_click.ogg
│ ├── camera_focus.ogg
│ ├── reverse_charging_end.ogg
│ └── reverse_charging_start.ogg
├── bash_completion
├── git.bash
└── repo.bash
├── bootanimation
├── bootanimation.mk
├── bootanimation_1080.zip
├── bootanimation_1440.zip
└── bootanimation_720.zip
├── build
├── core
│ ├── colors.mk
│ ├── config.mk
│ ├── definitions.mk
│ ├── main.mk
│ ├── main_version.mk
│ ├── pathmap.mk
│ ├── pixys_version.mk
│ ├── qcom_target.mk
│ └── utils.mk
├── envsetup.sh
├── soong
│ ├── Android.bp
│ └── generator
│ │ ├── generator.go
│ │ └── variables.go
├── target
│ └── product
│ │ ├── AndroidProducts.mk
│ │ ├── lineage_sdk_phone_x86.mk
│ │ ├── lineage_sdk_phone_x86_64.mk
│ │ ├── pixys_arm64.mk
│ │ ├── pixys_arm64_ab.mk
│ │ ├── product_launched_with_j.mk
│ │ ├── product_launched_with_j_mr1.mk
│ │ ├── product_launched_with_j_mr2.mk
│ │ ├── security
│ │ └── pixys.x509.pem
│ │ └── source.properties
├── tasks
│ ├── bacon.mk
│ ├── dt_image.mk
│ ├── kernel.mk
│ ├── pixysrelease.mk
│ └── updatepackage.mk
└── tools
│ ├── getb64key.py
│ ├── merge_dtbs.py
│ ├── repopick.py
│ └── roomservice.py
├── charger
├── Android.mk
├── images
│ └── charger
│ │ ├── battery_fail.png
│ │ ├── battery_scale.png
│ │ └── main_font.png
└── values
│ └── charger
│ └── animation.txt
├── config
├── BoardConfigKernel.mk
├── BoardConfigPixys.mk
├── BoardConfigReservedSize.mk
├── BoardConfigSoong.mk
├── art.mk
├── common.mk
├── common_full.mk
├── common_full_phone.mk
├── common_mobile.mk
├── data_only.mk
├── device_framework_matrix.xml
├── fonts.mk
├── permissions
│ ├── android.software.nfc.beam.xml
│ ├── backup.xml
│ ├── org.lineageos.health.xml
│ ├── pixys-power-whitelist.xml
│ ├── privapp-permissions-lineagehw.xml
│ ├── privapp-permissions-pixys-product.xml
│ ├── privapp-permissions-pixys-system.xml
│ └── vendor.lineage.biometrics.fingerprint.inscreen.xml
├── pixys_audio.mk
├── pixys_packages.mk
├── rro_overlays.mk
└── telephony.mk
├── fonts
├── Android.mk
├── FontGInterOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ └── values
│ │ ├── config.xml
│ │ └── strings.xml
├── FontGoogleSansOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ └── values
│ │ ├── config.xml
│ │ └── strings.xml
├── FontHarmonySansOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ └── values
│ │ ├── config.xml
│ │ └── strings.xml
├── FontLinotteSourceOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ └── values
│ │ ├── config.xml
│ │ └── strings.xml
├── FontManropeOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ └── values
│ │ ├── config.xml
│ │ └── strings.xml
├── FontOnePlusSansOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ └── values
│ │ ├── config.xml
│ │ └── strings.xml
├── FontOneplusSlateSourceOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ └── values
│ │ ├── config.xml
│ │ └── strings.xml
├── GInter
│ ├── Android.bp
│ ├── GInterVF-Italic.ttf
│ ├── GInterVF-Roman.ttf
│ └── product.specific
├── HarmonyOS-Sans
│ ├── Android.bp
│ ├── HarmonyOS-Sans-Black.ttf
│ ├── HarmonyOS-Sans-BlackItalic.ttf
│ ├── HarmonyOS-Sans-Bold.ttf
│ ├── HarmonyOS-Sans-BoldItalic.ttf
│ ├── HarmonyOS-Sans-Italic.ttf
│ ├── HarmonyOS-Sans-Light.ttf
│ ├── HarmonyOS-Sans-LightItalic.ttf
│ ├── HarmonyOS-Sans-Medium.ttf
│ ├── HarmonyOS-Sans-MediumItalic.ttf
│ ├── HarmonyOS-Sans-Regular.ttf
│ ├── HarmonyOS-Sans-Thin.ttf
│ ├── HarmonyOS-Sans-ThinItalic.ttf
│ ├── NOTICE
│ └── product.specific
├── fonts_customization.xml
└── prebuilt
│ ├── GoogleSans-Italic.ttf
│ ├── GoogleSans-Regular.ttf
│ ├── GoogleSansClock-Regular.ttf
│ ├── GoogleSansFlex-Regular.ttf
│ ├── Linotte.ttf
│ ├── Manrope-VF.ttf
│ ├── OnePlusSans-Black.ttf
│ ├── OnePlusSans-BlackItalic.ttf
│ ├── OnePlusSans-Bold.ttf
│ ├── OnePlusSans-BoldItalic.ttf
│ ├── OnePlusSans-Italic.ttf
│ ├── OnePlusSans-Light.ttf
│ ├── OnePlusSans-LightItalic.ttf
│ ├── OnePlusSans-Medium.ttf
│ ├── OnePlusSans-MediumItalic.ttf
│ ├── OnePlusSans-Regular.ttf
│ ├── OnePlusSans-Thin.ttf
│ ├── OnePlusSans-ThinItalic.ttf
│ ├── SlateFromOP-Light.ttf
│ └── SlateFromOP-Regular.ttf
├── overlay
├── common
│ ├── frameworks
│ │ └── base
│ │ │ ├── core
│ │ │ └── res
│ │ │ │ └── res
│ │ │ │ ├── color
│ │ │ │ └── config_progress_background_tint.xml
│ │ │ │ ├── drawable-nodpi
│ │ │ │ └── default_wallpaper.png
│ │ │ │ ├── values-mcc460
│ │ │ │ └── config.xml
│ │ │ │ ├── values-sw600dp
│ │ │ │ └── config.xml
│ │ │ │ └── values
│ │ │ │ ├── colors_device_defaults.xml
│ │ │ │ └── config.xml
│ │ │ └── packages
│ │ │ └── SystemUI
│ │ │ ├── res-keyguard
│ │ │ └── font
│ │ │ │ ├── clock.xml
│ │ │ │ └── google_sans_clock.ttf
│ │ │ └── res
│ │ │ ├── values-night
│ │ │ └── colors.xml
│ │ │ └── values
│ │ │ ├── colors.xml
│ │ │ ├── config.xml
│ │ │ ├── dimens.xml
│ │ │ └── flags.xml
│ ├── packages
│ │ ├── apps
│ │ │ ├── FMRadio
│ │ │ │ └── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ └── drawable-xxxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ └── Settings
│ │ │ │ └── res
│ │ │ │ └── values
│ │ │ │ ├── config.xml
│ │ │ │ └── dimens.xml
│ │ └── modules
│ │ │ └── NetworkStack
│ │ │ └── res
│ │ │ └── values
│ │ │ └── config.xml
│ └── vendor
│ │ └── qcom
│ │ └── opensource
│ │ └── fm-commonsys
│ │ └── fmapp2
│ │ └── res
│ │ ├── drawable-hdpi
│ │ └── ic_launcher_fmradio.png
│ │ ├── drawable-ldpi
│ │ └── ic_launcher_fmradio.png
│ │ ├── drawable-mdpi
│ │ └── ic_launcher_fmradio.png
│ │ ├── drawable-xhdpi
│ │ └── ic_launcher_fmradio.png
│ │ ├── drawable-xxhdpi
│ │ └── ic_launcher_fmradio.png
│ │ ├── drawable-xxxhdpi
│ │ └── ic_launcher_fmradio.png
│ │ └── drawable
│ │ └── ic_launcher_fmradio.png
└── frameworks
│ └── libs
│ └── systemui
│ └── iconloaderlib
│ └── res
│ └── values
│ └── config.xml
├── prebuilt
└── common
│ ├── Android.mk
│ ├── bin
│ ├── 50-lineage.sh
│ ├── backuptool.functions
│ ├── backuptool.sh
│ ├── backuptool_ab.functions
│ ├── backuptool_ab.sh
│ └── backuptool_postinstall.sh
│ └── etc
│ ├── adblock
│ ├── Android.bp
│ ├── fetch_lists.sh
│ ├── hosts
│ ├── hosts.adblock.in
│ └── init.adblock.rc
│ ├── apns-conf.xml
│ ├── init
│ ├── pixys-ssh.rc
│ ├── pixys-system.rc
│ └── pixys-updates.rc
│ ├── sensitive_pn.xml
│ └── sysconfig
│ └── quick_tap.xml
├── release
├── aconfig
│ └── ap2a
│ │ ├── Android.bp
│ │ └── com.android.systemui.flags
│ │ ├── Android.bp
│ │ ├── haptic_brightness_slider_flag_values.textproto
│ │ ├── haptic_volume_slider_flag_values.textproto
│ │ ├── new_volume_panel_flag_values.textproto
│ │ └── notification_throttle_hun_flag_values.textproto
├── build_config
│ └── ap2a.scl
└── release_config_map.mk
├── rro_overlays
├── CustomPixelLauncherOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ ├── drawable
│ │ ├── res_0x7f020356_themed_icon_glasswire__0.xml
│ │ ├── res_0x7f020358_themed_icon_moon_reader__0.xml
│ │ ├── res_0x7f020359_themed_icon_moon_reader_pro__0.xml
│ │ ├── res_0x7f020362_themed_icon_adobe_express__0.xml
│ │ ├── res_0x7f020363_themed_icon_bilibili_comics__0.xml
│ │ ├── res_0x7f020364_themed_icon_bilibili_comics__1.xml
│ │ ├── res_0x7f020365_themed_icon_bilibili_comics__2.xml
│ │ ├── res_0x7f020366_themed_icon_lime__0.xml
│ │ ├── res_0x7f020367_themed_icon_lime__1.xml
│ │ ├── res_0x7f020368_themed_icon_lime__2.xml
│ │ ├── res_0x7f020369_themed_icon_lime__3.xml
│ │ ├── res_0x7f02036a_themed_icon_lime__4.xml
│ │ ├── res_0x7f02036b_themed_icon_lime__5.xml
│ │ ├── res_0x7f02036c_themed_icon_lime__6.xml
│ │ ├── res_0x7f02036d_themed_icon_lime__7.xml
│ │ ├── res_0x7f02036e_themed_icon_webnovel__0.xml
│ │ ├── res_0x7f02036f_themed_icon_webnovel__1.xml
│ │ ├── res_0x7f02037a_themed_icon_fabulous__0.xml
│ │ ├── res_0x7f02037b_themed_icon_fabulous__1.xml
│ │ ├── res_0x7f02037c_themed_icon_fabulous__2.xml
│ │ ├── res_0x7f02037d_themed_icon_frolomuse__0.xml
│ │ ├── res_0x7f02037e_themed_icon_habitnow__0.xml
│ │ ├── res_0x7f02037f_themed_icon_here_wego_beta__0.xml
│ │ ├── res_0x7f020380_themed_icon_here_wego_beta__1.xml
│ │ ├── res_0x7f020381_themed_icon_mojo__0.xml
│ │ ├── res_0x7f020382_themed_icon_mojo__1.xml
│ │ ├── res_0x7f020383_themed_icon_mojo__2.xml
│ │ ├── res_0x7f020384_themed_icon_mojo__3.xml
│ │ ├── res_0x7f020385_themed_icon_photoroom__0.xml
│ │ ├── res_0x7f020386_themed_icon_photoroom__1.xml
│ │ ├── res_0x7f0203a0_themed_icon_infinity_loop__0.xml
│ │ ├── res_0x7f0203c3_themed_icon_infinity_loop__1.xml
│ │ ├── res_0x7f0203c4_themed_icon_infinity_loop__2.xml
│ │ ├── res_0x7f0203fb_themed_icon_acode__0.xml
│ │ ├── res_0x7f0203fc_themed_icon_acode__1.xml
│ │ ├── res_0x7f0203fd_themed_icon_alarmio__0.xml
│ │ ├── res_0x7f0203fe_themed_icon_alarmio__1.xml
│ │ ├── res_0x7f0203ff_themed_icon_alarmio__2.xml
│ │ ├── res_0x7f020400_themed_icon_cifra_club_academy__0.xml
│ │ ├── res_0x7f020401_themed_icon_cifra_club_metronome__0.xml
│ │ ├── res_0x7f020402_themed_icon_cifra_club_tuner__0.xml
│ │ ├── res_0x7f020403_themed_icon_franco_agenda__0.xml
│ │ ├── res_0x7f020404_themed_icon_franco_agenda__1.xml
│ │ ├── res_0x7f020405_themed_icon_powerdirector__0.xml
│ │ ├── res_0x7f020406_themed_icon_powerdirector__1.xml
│ │ ├── res_0x7f020407_themed_icon_powerdirector__2.xml
│ │ ├── res_0x7f020408_themed_icon_powerdirector__3.xml
│ │ ├── res_0x7f020409_themed_icon_powerdirector__4.xml
│ │ ├── res_0x7f02043d_themed_icon_animeindo__0.xml
│ │ ├── res_0x7f02043e_themed_icon_animeindo__1.xml
│ │ ├── res_0x7f02043f_themed_icon_animeindo__2.xml
│ │ ├── res_0x7f02046c_themed_icon_nicegram__0.xml
│ │ ├── res_0x7f02046d_themed_icon_nicegram__1.xml
│ │ ├── res_0x7f02046e_themed_icon_sesame_search__0.xml
│ │ ├── res_0x7f02046f_themed_icon_weather_radar__0.xml
│ │ ├── res_0x7f020470_themed_icon_weather_radar_pro__0.xml
│ │ ├── res_0x7f020471_themed_icon_weather_radar_pro__1.xml
│ │ ├── res_0x7f020485_themed_icon_appmgr_pro_3__0.xml
│ │ ├── res_0x7f020486_themed_icon_appmgr_pro_3__1.xml
│ │ ├── res_0x7f020487_themed_icon_appmgr_pro_3__2.xml
│ │ ├── res_0x7f020488_themed_icon_appsfree__0.xml
│ │ ├── res_0x7f020489_themed_icon_appsfree__1.xml
│ │ ├── res_0x7f02048a_themed_icon_aqua_mail__0.xml
│ │ ├── res_0x7f02048b_themed_icon_aspect_pro__0.xml
│ │ ├── res_0x7f02048c_themed_icon_aspect_pro__1.xml
│ │ ├── themd_icon_aha.xml
│ │ ├── themed_icon_0h_h1.xml
│ │ ├── themed_icon_0h_n0.xml
│ │ ├── themed_icon_1111dns.xml
│ │ ├── themed_icon_1gallery.xml
│ │ ├── themed_icon_1password.xml
│ │ ├── themed_icon_2048.xml
│ │ ├── themed_icon_250_solitaire_collection.xml
│ │ ├── themed_icon_2fas_auth.xml
│ │ ├── themed_icon_365_scores.xml
│ │ ├── themed_icon_3c_aio.xml
│ │ ├── themed_icon_3dmark.xml
│ │ ├── themed_icon_8ball_pool.xml
│ │ ├── themed_icon_99.png
│ │ ├── themed_icon_9gag.xml
│ │ ├── themed_icon_VN.png
│ │ ├── themed_icon_a_gallery.xml
│ │ ├── themed_icon_a_la_mano.xml
│ │ ├── themed_icon_aarogya_setu.xml
│ │ ├── themed_icon_aba_english.xml
│ │ ├── themed_icon_abstracto.xml
│ │ ├── themed_icon_abstruct.xml
│ │ ├── themed_icon_accubattery.xml
│ │ ├── themed_icon_accuweather.xml
│ │ ├── themed_icon_acko_insurance.xml
│ │ ├── themed_icon_acode.xml
│ │ ├── themed_icon_activity_launcher.xml
│ │ ├── themed_icon_actuflow.xml
│ │ ├── themed_icon_adaway.xml
│ │ ├── themed_icon_adblock_browser.xml
│ │ ├── themed_icon_addtext.xml
│ │ ├── themed_icon_adguard.xml
│ │ ├── themed_icon_adguardvpn.xml
│ │ ├── themed_icon_adidas.xml
│ │ ├── themed_icon_adidas_running.xml
│ │ ├── themed_icon_adm.xml
│ │ ├── themed_icon_admin.xml
│ │ ├── themed_icon_adobe_account_access.xml
│ │ ├── themed_icon_adobe_acrobat.xml
│ │ ├── themed_icon_adobe_analytics.xml
│ │ ├── themed_icon_adobe_capture.xml
│ │ ├── themed_icon_adobe_connect.xml
│ │ ├── themed_icon_adobe_creative_cloud.xml
│ │ ├── themed_icon_adobe_express.xml
│ │ ├── themed_icon_adobe_lightroom.png
│ │ ├── themed_icon_adobe_scan.xml
│ │ ├── themed_icon_adobe_sign.xml
│ │ ├── themed_icon_adobe_xd.xml
│ │ ├── themed_icon_aegis.xml
│ │ ├── themed_icon_aethersx2.xml
│ │ ├── themed_icon_afwall.xml
│ │ ├── themed_icon_agc.xml
│ │ ├── themed_icon_aha.xml
│ │ ├── themed_icon_aida.png
│ │ ├── themed_icon_aida64.xml
│ │ ├── themed_icon_aimp.xml
│ │ ├── themed_icon_airasia.xml
│ │ ├── themed_icon_airfrozen_disabler.xml
│ │ ├── themed_icon_airtel.png
│ │ ├── themed_icon_airtel_xstream.xml
│ │ ├── themed_icon_al_quran_bangla.xml
│ │ ├── themed_icon_al_quran_indonesia.xml
│ │ ├── themed_icon_alarmio.xml
│ │ ├── themed_icon_alarmy.xml
│ │ ├── themed_icon_alfredcamera.xml
│ │ ├── themed_icon_alibaba.xml
│ │ ├── themed_icon_aliexpress.xml
│ │ ├── themed_icon_aliexpress_new.xml
│ │ ├── themed_icon_alight_motion.xml
│ │ ├── themed_icon_alipay.xml
│ │ ├── themed_icon_aliucord_installer.xml
│ │ ├── themed_icon_alive_app.xml
│ │ ├── themed_icon_alkitab.xml
│ │ ├── themed_icon_alpha_backup_pro.png
│ │ ├── themed_icon_alphabackup.xml
│ │ ├── themed_icon_alza.xml
│ │ ├── themed_icon_amazon_alexa.xml
│ │ ├── themed_icon_amazon_kindle.xml
│ │ ├── themed_icon_amazon_music.xml
│ │ ├── themed_icon_amazon_photos.xml
│ │ ├── themed_icon_amazon_seller.xml
│ │ ├── themed_icon_amazon_shopping.xml
│ │ ├── themed_icon_amongus.xml
│ │ ├── themed_icon_ampere.xml
│ │ ├── themed_icon_ana_vodafone.xml
│ │ ├── themed_icon_andotp.xml
│ │ ├── themed_icon_android.xml
│ │ ├── themed_icon_android_auto.xml
│ │ ├── themed_icon_android_find_my_device.xml
│ │ ├── themed_icon_android_ids.xml
│ │ ├── themed_icon_androidbetafeedback.xml
│ │ ├── themed_icon_anghami.xml
│ │ ├── themed_icon_angry_birds_2.xml
│ │ ├── themed_icon_anilabx.xml
│ │ ├── themed_icon_anilib.xml
│ │ ├── themed_icon_animeindo.xml
│ │ ├── themed_icon_anixart.xml
│ │ ├── themed_icon_aniyomi.xml
│ │ ├── themed_icon_ankidroid.xml
│ │ ├── themed_icon_anm_online.xml
│ │ ├── themed_icon_anonytun.xml
│ │ ├── themed_icon_another_notes.xml
│ │ ├── themed_icon_anotherwidget.xml
│ │ ├── themed_icon_antennapod.xml
│ │ ├── themed_icon_antutu.xml
│ │ ├── themed_icon_anxcam_s.xml
│ │ ├── themed_icon_any.xml
│ │ ├── themed_icon_anyboost.xml
│ │ ├── themed_icon_anythingtopip.xml
│ │ ├── themed_icon_anytype.xml
│ │ ├── themed_icon_aosp_clock.xml
│ │ ├── themed_icon_aov.xml
│ │ ├── themed_icon_apex_legends.xml
│ │ ├── themed_icon_apk_editor_master.xml
│ │ ├── themed_icon_apk_editor_plus.png
│ │ ├── themed_icon_apkmirror.xml
│ │ ├── themed_icon_apktoolm.xml
│ │ ├── themed_icon_apnacomplex.xml
│ │ ├── themed_icon_apni_kaksha.xml
│ │ ├── themed_icon_app_list_detector.xml
│ │ ├── themed_icon_app_manager.xml
│ │ ├── themed_icon_app_ops.xml
│ │ ├── themed_icon_appbar.xml
│ │ ├── themed_icon_appcloner.xml
│ │ ├── themed_icon_apple_music.xml
│ │ ├── themed_icon_appmgr_pro_3.xml
│ │ ├── themed_icon_appsfree.xml
│ │ ├── themed_icon_aqua_mail.xml
│ │ ├── themed_icon_araz_supermarket.xml
│ │ ├── themed_icon_arena_of_valor.png
│ │ ├── themed_icon_art_station.xml
│ │ ├── themed_icon_aruba.xml
│ │ ├── themed_icon_askfm.xml
│ │ ├── themed_icon_aspect_pro.xml
│ │ ├── themed_icon_asphalt_9.xml
│ │ ├── themed_icon_asus_gallery.xml
│ │ ├── themed_icon_atb360.xml
│ │ ├── themed_icon_athan.xml
│ │ ├── themed_icon_attapoll.xml
│ │ ├── themed_icon_audiomack.xml
│ │ ├── themed_icon_aurora_droid.xml
│ │ ├── themed_icon_aurora_store.xml
│ │ ├── themed_icon_authenticator.xml
│ │ ├── themed_icon_authenticator_pro.xml
│ │ ├── themed_icon_authy.xml
│ │ ├── themed_icon_autodoc.xml
│ │ ├── themed_icon_autohz.xml
│ │ ├── themed_icon_automatag.png
│ │ ├── themed_icon_autotagger.xml
│ │ ├── themed_icon_auxio.xml
│ │ ├── themed_icon_aviata.xml
│ │ ├── themed_icon_avito.xml
│ │ ├── themed_icon_axisnet.xml
│ │ ├── themed_icon_azcecll.xml
│ │ ├── themed_icon_azerisiq.xml
│ │ ├── themed_icon_azerisiq_1.xml
│ │ ├── themed_icon_azerisiq_2.xml
│ │ ├── themed_icon_azerisiq_3.xml
│ │ ├── themed_icon_azerisiq_4.xml
│ │ ├── themed_icon_azerisiq_5.xml
│ │ ├── themed_icon_azerisiq_6.xml
│ │ ├── themed_icon_azerisiq_7.xml
│ │ ├── themed_icon_azerisiq_8.xml
│ │ ├── themed_icon_backdrops.xml
│ │ ├── themed_icon_background_eraser.png
│ │ ├── themed_icon_baikoh.xml
│ │ ├── themed_icon_balance.xml
│ │ ├── themed_icon_bam.xml
│ │ ├── themed_icon_bandlab.xml
│ │ ├── themed_icon_battery_guru.xml
│ │ ├── themed_icon_battle_prime.xml
│ │ ├── themed_icon_beats.png
│ │ ├── themed_icon_beeline.xml
│ │ ├── themed_icon_behance.xml
│ │ ├── themed_icon_belarus_bank.xml
│ │ ├── themed_icon_betamaniac.xml
│ │ ├── themed_icon_better_internet_tiles.xml
│ │ ├── themed_icon_betterbatterystats.png
│ │ ├── themed_icon_betterme.xml
│ │ ├── themed_icon_betternet.xml
│ │ ├── themed_icon_bgram.xml
│ │ ├── themed_icon_bhim.xml
│ │ ├── themed_icon_bilibili_comics.xml
│ │ ├── themed_icon_bima_plus.xml
│ │ ├── themed_icon_binance.xml
│ │ ├── themed_icon_bing.xml
│ │ ├── themed_icon_bir.xml
│ │ ├── themed_icon_bird.xml
│ │ ├── themed_icon_bitmoji.xml
│ │ ├── themed_icon_bitwarden.xml
│ │ ├── themed_icon_bkash.xml
│ │ ├── themed_icon_blackboard.xml
│ │ ├── themed_icon_blackhole.xml
│ │ ├── themed_icon_blinkit.xml
│ │ ├── themed_icon_bms.xml
│ │ ├── themed_icon_bolt.xml
│ │ ├── themed_icon_booking.xml
│ │ ├── themed_icon_boom.xml
│ │ ├── themed_icon_boost.xml
│ │ ├── themed_icon_bradesco.xml
│ │ ├── themed_icon_brainly.xml
│ │ ├── themed_icon_brave.xml
│ │ ├── themed_icon_brawl_stars.xml
│ │ ├── themed_icon_brawlhalla.xml
│ │ ├── themed_icon_brawlstars.png
│ │ ├── themed_icon_brimo.xml
│ │ ├── themed_icon_bromite.xml
│ │ ├── themed_icon_browser.xml
│ │ ├── themed_icon_bsi_mobile.xml
│ │ ├── themed_icon_bstasion.png
│ │ ├── themed_icon_btmouse.xml
│ │ ├── themed_icon_bubbleunp.xml
│ │ ├── themed_icon_bully.xml
│ │ ├── themed_icon_bundled_notes.xml
│ │ ├── themed_icon_busuu.png
│ │ ├── themed_icon_button_mapper.xml
│ │ ├── themed_icon_by_u.xml
│ │ ├── themed_icon_c6_bank.xml
│ │ ├── themed_icon_caixa.xml
│ │ ├── themed_icon_calces.png
│ │ ├── themed_icon_calculator.xml
│ │ ├── themed_icon_calculator_plus_plus.xml
│ │ ├── themed_icon_calendar_1.xml
│ │ ├── themed_icon_calendar_10.xml
│ │ ├── themed_icon_calendar_11.xml
│ │ ├── themed_icon_calendar_12.xml
│ │ ├── themed_icon_calendar_13.xml
│ │ ├── themed_icon_calendar_14.xml
│ │ ├── themed_icon_calendar_15.xml
│ │ ├── themed_icon_calendar_16.xml
│ │ ├── themed_icon_calendar_17.xml
│ │ ├── themed_icon_calendar_18.xml
│ │ ├── themed_icon_calendar_19.xml
│ │ ├── themed_icon_calendar_2.xml
│ │ ├── themed_icon_calendar_20.xml
│ │ ├── themed_icon_calendar_21.xml
│ │ ├── themed_icon_calendar_22.xml
│ │ ├── themed_icon_calendar_23.xml
│ │ ├── themed_icon_calendar_24.xml
│ │ ├── themed_icon_calendar_25.xml
│ │ ├── themed_icon_calendar_26.xml
│ │ ├── themed_icon_calendar_27.xml
│ │ ├── themed_icon_calendar_28.xml
│ │ ├── themed_icon_calendar_29.xml
│ │ ├── themed_icon_calendar_3.xml
│ │ ├── themed_icon_calendar_30.xml
│ │ ├── themed_icon_calendar_31.xml
│ │ ├── themed_icon_calendar_4.xml
│ │ ├── themed_icon_calendar_5.xml
│ │ ├── themed_icon_calendar_6.xml
│ │ ├── themed_icon_calendar_7.xml
│ │ ├── themed_icon_calendar_8.xml
│ │ ├── themed_icon_calendar_9.xml
│ │ ├── themed_icon_call_recorder.png
│ │ ├── themed_icon_calm.xml
│ │ ├── themed_icon_camera.xml
│ │ ├── themed_icon_camera_go.xml
│ │ ├── themed_icon_camscanner.xml
│ │ ├── themed_icon_canvas.xml
│ │ ├── themed_icon_capcut.xml
│ │ ├── themed_icon_cardapio_futebol.png
│ │ ├── themed_icon_cartogram.xml
│ │ ├── themed_icon_cat_and_soup.xml
│ │ ├── themed_icon_catogram.xml
│ │ ├── themed_icon_cats.xml
│ │ ├── themed_icon_cdek.xml
│ │ ├── themed_icon_chaldea_gamespace.xml
│ │ ├── themed_icon_charge_control_root.xml
│ │ ├── themed_icon_chat.xml
│ │ ├── themed_icon_cheapflights.xml
│ │ ├── themed_icon_checkfirm.xml
│ │ ├── themed_icon_chess.xml
│ │ ├── themed_icon_chess_aifactory.xml
│ │ ├── themed_icon_chrome.xml
│ │ ├── themed_icon_chrome_beta.xml
│ │ ├── themed_icon_chrome_beta_s.xml
│ │ ├── themed_icon_chrome_canary.xml
│ │ ├── themed_icon_chrome_canary_s.xml
│ │ ├── themed_icon_chrome_dev.xml
│ │ ├── themed_icon_chrome_dev_s.xml
│ │ ├── themed_icon_chrome_s.xml
│ │ ├── themed_icon_chromebeta.xml
│ │ ├── themed_icon_chromium.xml
│ │ ├── themed_icon_cifra_club_academy.xml
│ │ ├── themed_icon_cifra_club_metronome.xml
│ │ ├── themed_icon_cifra_club_tuner.xml
│ │ ├── themed_icon_citymapper.xml
│ │ ├── themed_icon_clash.xml
│ │ ├── themed_icon_clash_mini.xml
│ │ ├── themed_icon_clash_of_clans.xml
│ │ ├── themed_icon_clash_of_clans_s.xml
│ │ ├── themed_icon_clash_quest.xml
│ │ ├── themed_icon_clash_royale.xml
│ │ ├── themed_icon_classicpowermenu.xml
│ │ ├── themed_icon_classroom.xml
│ │ ├── themed_icon_clima.xml
│ │ ├── themed_icon_clock.xml
│ │ ├── themed_icon_cloudstream.xml
│ │ ├── themed_icon_coc_coc.png
│ │ ├── themed_icon_cod.xml
│ │ ├── themed_icon_coinsph.xml
│ │ ├── themed_icon_coinvero.xml
│ │ ├── themed_icon_colorwaver.xml
│ │ ├── themed_icon_companion.xml
│ │ ├── themed_icon_compass.xml
│ │ ├── themed_icon_contacts.xml
│ │ ├── themed_icon_covid_certificate.xml
│ │ ├── themed_icon_cpu_throttle.xml
│ │ ├── themed_icon_cpu_z.png
│ │ ├── themed_icon_cred.xml
│ │ ├── themed_icon_cricbuzz.xml
│ │ ├── themed_icon_crunchyroll.xml
│ │ ├── themed_icon_crypto.xml
│ │ ├── themed_icon_cvv.xml
│ │ ├── themed_icon_cx_file_manager.xml
│ │ ├── themed_icon_cyberghost.xml
│ │ ├── themed_icon_cytus2.xml
│ │ ├── themed_icon_dailyhunt.xml
│ │ ├── themed_icon_dana.xml
│ │ ├── themed_icon_daraz.xml
│ │ ├── themed_icon_darq.xml
│ │ ├── themed_icon_dashlane.xml
│ │ ├── themed_icon_databackup.xml
│ │ ├── themed_icon_deadcells.xml
│ │ ├── themed_icon_decathlon.xml
│ │ ├── themed_icon_deck_shop.xml
│ │ ├── themed_icon_deezer.xml
│ │ ├── themed_icon_delivery_club.xml
│ │ ├── themed_icon_deutschebahn.xml
│ │ ├── themed_icon_devcheck.xml
│ │ ├── themed_icon_deviantart.xml
│ │ ├── themed_icon_device_info.png
│ │ ├── themed_icon_deviceinfo.xml
│ │ ├── themed_icon_diablo_immortal.xml
│ │ ├── themed_icon_diabloinmortal.xml
│ │ ├── themed_icon_dialer.xml
│ │ ├── themed_icon_didup_famiglia.xml
│ │ ├── themed_icon_digital_wellbeing.xml
│ │ ├── themed_icon_diia.xml
│ │ ├── themed_icon_discord.xml
│ │ ├── themed_icon_discord_themer.xml
│ │ ├── themed_icon_disney_plus.xml
│ │ ├── themed_icon_divisionresurgence.xml
│ │ ├── themed_icon_dmrc.xml
│ │ ├── themed_icon_docs_editors.xml
│ │ ├── themed_icon_documents.xml
│ │ ├── themed_icon_dodo_pizza.xml
│ │ ├── themed_icon_dolby.png
│ │ ├── themed_icon_dolby_on.xml
│ │ ├── themed_icon_dolbyatmos.xml
│ │ ├── themed_icon_dolphin_emulator.png
│ │ ├── themed_icon_doodle.xml
│ │ ├── themed_icon_doppelreim.xml
│ │ ├── themed_icon_dota_underlords.xml
│ │ ├── themed_icon_drive.xml
│ │ ├── themed_icon_drivedroid.xml
│ │ ├── themed_icon_droidcam.xml
│ │ ├── themed_icon_droidify.xml
│ │ ├── themed_icon_drom.xml
│ │ ├── themed_icon_dublgis.xml
│ │ ├── themed_icon_duckduckgo.xml
│ │ ├── themed_icon_dunzo.xml
│ │ ├── themed_icon_duo.xml
│ │ ├── themed_icon_duolingo.xml
│ │ ├── themed_icon_duomobile.xml
│ │ ├── themed_icon_dvget.xml
│ │ ├── themed_icon_ear1.xml
│ │ ├── themed_icon_earth.xml
│ │ ├── themed_icon_ebay.xml
│ │ ├── themed_icon_ebay_kleinanzeigen.xml
│ │ ├── themed_icon_ebaykleinanzeigen.xml
│ │ ├── themed_icon_efootball_pes.xml
│ │ ├── themed_icon_egov.xml
│ │ ├── themed_icon_ekatalog.xml
│ │ ├── themed_icon_electron.xml
│ │ ├── themed_icon_element.xml
│ │ ├── themed_icon_emanat.xml
│ │ ├── themed_icon_energy_infinity.xml
│ │ ├── themed_icon_english_score.xml
│ │ ├── themed_icon_enki.xml
│ │ ├── themed_icon_eon.png
│ │ ├── themed_icon_epicgames.xml
│ │ ├── themed_icon_epik.xml
│ │ ├── themed_icon_es_explorer.xml
│ │ ├── themed_icon_espn.xml
│ │ ├── themed_icon_etabib.xml
│ │ ├── themed_icon_eventbrite.xml
│ │ ├── themed_icon_evernote.xml
│ │ ├── themed_icon_evoxpapers.xml
│ │ ├── themed_icon_express_vpn.xml
│ │ ├── themed_icon_exteragram.xml
│ │ ├── themed_icon_exterax.xml
│ │ ├── themed_icon_fabulous.xml
│ │ ├── themed_icon_facebook.xml
│ │ ├── themed_icon_facebook_lcr.xml
│ │ ├── themed_icon_facebook_lite.xml
│ │ ├── themed_icon_facebook_s.xml
│ │ ├── themed_icon_fairemail.xml
│ │ ├── themed_icon_fallout_shelter.xml
│ │ ├── themed_icon_family_link.xml
│ │ ├── themed_icon_family_link_ct.xml
│ │ ├── themed_icon_fasthub.xml
│ │ ├── themed_icon_fasting.xml
│ │ ├── themed_icon_fdroid.xml
│ │ ├── themed_icon_fennec.xml
│ │ ├── themed_icon_ff7fs.xml
│ │ ├── themed_icon_fgames_radar.xml
│ │ ├── themed_icon_fifa_mobile.xml
│ │ ├── themed_icon_file_manager.xml
│ │ ├── themed_icon_files.xml
│ │ ├── themed_icon_filmic_pro.xml
│ │ ├── themed_icon_financial_times.xml
│ │ ├── themed_icon_find_my_device.xml
│ │ ├── themed_icon_find_my_device_s.xml
│ │ ├── themed_icon_firebase_app_distribution.xml
│ │ ├── themed_icon_firefox.xml
│ │ ├── themed_icon_firefox_beta.xml
│ │ ├── themed_icon_fitbit.xml
│ │ ├── themed_icon_fiverr.xml
│ │ ├── themed_icon_fk.png
│ │ ├── themed_icon_flamingo.xml
│ │ ├── themed_icon_flashscore.xml
│ │ ├── themed_icon_flipkart.xml
│ │ ├── themed_icon_flipkz.xml
│ │ ├── themed_icon_flm.xml
│ │ ├── themed_icon_flud.xml
│ │ ├── themed_icon_fm_radio.xml
│ │ ├── themed_icon_fng.xml
│ │ ├── themed_icon_focus_go.xml
│ │ ├── themed_icon_focus_todo.xml
│ │ ├── themed_icon_fontviewer.xml
│ │ ├── themed_icon_food_panda.png
│ │ ├── themed_icon_foodpanda.xml
│ │ ├── themed_icon_forpda.xml
│ │ ├── themed_icon_forte_bank.xml
│ │ ├── themed_icon_fortnite.xml
│ │ ├── themed_icon_fotor.xml
│ │ ├── themed_icon_four_pda.xml
│ │ ├── themed_icon_fox_mmm.xml
│ │ ├── themed_icon_franco_agenda.xml
│ │ ├── themed_icon_franco_servicely.xml
│ │ ├── themed_icon_francokernelmanager.xml
│ │ ├── themed_icon_freefire.xml
│ │ ├── themed_icon_freefire2.png
│ │ ├── themed_icon_freefire_max.xml
│ │ ├── themed_icon_freelancer_upwork.xml
│ │ ├── themed_icon_freezer.xml
│ │ ├── themed_icon_frolomuse.xml
│ │ ├── themed_icon_ftx.xml
│ │ ├── themed_icon_fuelio.xml
│ │ ├── themed_icon_fusewalls.xml
│ │ ├── themed_icon_fx.xml
│ │ ├── themed_icon_fx_file_explorer.xml
│ │ ├── themed_icon_fx_file_explorer_s.xml
│ │ ├── themed_icon_g_translate.xml
│ │ ├── themed_icon_gaana.xml
│ │ ├── themed_icon_gallery.xml
│ │ ├── themed_icon_gallery_go.xml
│ │ ├── themed_icon_gapo.xml
│ │ ├── themed_icon_garanti.xml
│ │ ├── themed_icon_garena_aov.xml
│ │ ├── themed_icon_gboard.xml
│ │ ├── themed_icon_gcash.xml
│ │ ├── themed_icon_genius.xml
│ │ ├── themed_icon_genshin_impact.xml
│ │ ├── themed_icon_geometric_weather.xml
│ │ ├── themed_icon_geometry_dash.xml
│ │ ├── themed_icon_geometry_dash_lite.xml
│ │ ├── themed_icon_geometry_dash_meltdown.xml
│ │ ├── themed_icon_geometry_dash_subzero.xml
│ │ ├── themed_icon_geometry_dash_world.xml
│ │ ├── themed_icon_getcontact.xml
│ │ ├── themed_icon_getir.xml
│ │ ├── themed_icon_gett.xml
│ │ ├── themed_icon_gfit_health.xml
│ │ ├── themed_icon_gfx.xml
│ │ ├── themed_icon_gi_builder.png
│ │ ├── themed_icon_giga_life.xml
│ │ ├── themed_icon_github.xml
│ │ ├── themed_icon_glassdoor.xml
│ │ ├── themed_icon_glasswire.xml
│ │ ├── themed_icon_globeone.xml
│ │ ├── themed_icon_glovo.xml
│ │ ├── themed_icon_gltools.xml
│ │ ├── themed_icon_gmail.xml
│ │ ├── themed_icon_gojek.xml
│ │ ├── themed_icon_google.xml
│ │ ├── themed_icon_google_assistant.xml
│ │ ├── themed_icon_google_classroom.xml
│ │ ├── themed_icon_google_fi.xml
│ │ ├── themed_icon_google_one.xml
│ │ ├── themed_icon_google_opinion.xml
│ │ ├── themed_icon_google_rewards.png
│ │ ├── themed_icon_google_tv.xml
│ │ ├── themed_icon_gopro_quik.xml
│ │ ├── themed_icon_gosuslugi.xml
│ │ ├── themed_icon_gpay.xml
│ │ ├── themed_icon_grab.png
│ │ ├── themed_icon_graph_messenger.png
│ │ ├── themed_icon_graphene_cam.xml
│ │ ├── themed_icon_greenify.xml
│ │ ├── themed_icon_grimvalor.png
│ │ ├── themed_icon_grindr.xml
│ │ ├── themed_icon_groww.xml
│ │ ├── themed_icon_gta_iii.xml
│ │ ├── themed_icon_gta_lcs.xml
│ │ ├── themed_icon_gta_sanandreas.xml
│ │ ├── themed_icon_gta_vc.xml
│ │ ├── themed_icon_gtc.xml
│ │ ├── themed_icon_guardian.xml
│ │ ├── themed_icon_guitar_tuna.xml
│ │ ├── themed_icon_gumslinger.xml
│ │ ├── themed_icon_habitnow.xml
│ │ ├── themed_icon_halkbank.xml
│ │ ├── themed_icon_halyk.xml
│ │ ├── themed_icon_hangouts.xml
│ │ ├── themed_icon_happn.xml
│ │ ├── themed_icon_hbo_max.xml
│ │ ├── themed_icon_hcr.xml
│ │ ├── themed_icon_hdfc_bank.xml
│ │ ├── themed_icon_hearo.xml
│ │ ├── themed_icon_hearthstone.xml
│ │ ├── themed_icon_here_wego.xml
│ │ ├── themed_icon_here_wego_beta.xml
│ │ ├── themed_icon_hesab_az.xml
│ │ ├── themed_icon_hh.xml
│ │ ├── themed_icon_ho.xml
│ │ ├── themed_icon_home.xml
│ │ ├── themed_icon_homecredit.xml
│ │ ├── themed_icon_honista.png
│ │ ├── themed_icon_honkai_impact_3.xml
│ │ ├── themed_icon_hotels_com.xml
│ │ ├── themed_icon_hotstar.xml
│ │ ├── themed_icon_hoyolab.xml
│ │ ├── themed_icon_ibis_paint.xml
│ │ ├── themed_icon_icaller.xml
│ │ ├── themed_icon_iceraven.xml
│ │ ├── themed_icon_iflix.png
│ │ ├── themed_icon_ifood.xml
│ │ ├── themed_icon_iherb.xml
│ │ ├── themed_icon_ime.xml
│ │ ├── themed_icon_immuni.png
│ │ ├── themed_icon_indriver.xml
│ │ ├── themed_icon_infinite_painter.xml
│ │ ├── themed_icon_infinity.xml
│ │ ├── themed_icon_infinity_loop.xml
│ │ ├── themed_icon_inoreader.xml
│ │ ├── themed_icon_inshot.xml
│ │ ├── themed_icon_instagram.xml
│ │ ├── themed_icon_instapaper.xml
│ │ ├── themed_icon_inter.xml
│ │ ├── themed_icon_intersvyaz.xml
│ │ ├── themed_icon_iqiyi.png
│ │ ├── themed_icon_ivi.xml
│ │ ├── themed_icon_ivy_wallet.xml
│ │ ├── themed_icon_j2meloader.xml
│ │ ├── themed_icon_jiomart.xml
│ │ ├── themed_icon_jiosaavn.xml
│ │ ├── themed_icon_juice_ssh.png
│ │ ├── themed_icon_juicessh.xml
│ │ ├── themed_icon_jusan.xml
│ │ ├── themed_icon_k9_mail.xml
│ │ ├── themed_icon_kahoot.xml
│ │ ├── themed_icon_kakaotalk.xml
│ │ ├── themed_icon_kapk.xml
│ │ ├── themed_icon_karwei.xml
│ │ ├── themed_icon_kaspi_kz.xml
│ │ ├── themed_icon_kate_mobile.png
│ │ ├── themed_icon_kayak.xml
│ │ ├── themed_icon_kde_connect.xml
│ │ ├── themed_icon_keep.xml
│ │ ├── themed_icon_keiromaker.xml
│ │ ├── themed_icon_kernelmanager.png
│ │ ├── themed_icon_khan_academy.xml
│ │ ├── themed_icon_kinemaster.xml
│ │ ├── themed_icon_kino_hd.xml
│ │ ├── themed_icon_kinopoisk.xml
│ │ ├── themed_icon_kiwi_browser.xml
│ │ ├── themed_icon_klck.xml
│ │ ├── themed_icon_klwp.xml
│ │ ├── themed_icon_knigi.xml
│ │ ├── themed_icon_kodi.xml
│ │ ├── themed_icon_koler.xml
│ │ ├── themed_icon_kolesa.xml
│ │ ├── themed_icon_komoot.xml
│ │ ├── themed_icon_kotak_bank.xml
│ │ ├── themed_icon_krisha.xml
│ │ ├── themed_icon_kucoin.xml
│ │ ├── themed_icon_kuro_reader.xml
│ │ ├── themed_icon_kuro_reader_pro.xml
│ │ ├── themed_icon_kwai.xml
│ │ ├── themed_icon_kwgt.xml
│ │ ├── themed_icon_kwork.xml
│ │ ├── themed_icon_labirint.png
│ │ ├── themed_icon_lalafo.xml
│ │ ├── themed_icon_lamoda.xml
│ │ ├── themed_icon_lastfm.xml
│ │ ├── themed_icon_lastpass.xml
│ │ ├── themed_icon_lawnchair.xml
│ │ ├── themed_icon_lawnicons_teamfiles.xml
│ │ ├── themed_icon_lawnicons_teamfiles_s.xml
│ │ ├── themed_icon_lazada.xml
│ │ ├── themed_icon_legends_of_runeterra.xml
│ │ ├── themed_icon_lens.xml
│ │ ├── themed_icon_leo.xml
│ │ ├── themed_icon_leo_bank.xml
│ │ ├── themed_icon_lewdfi.xml
│ │ ├── themed_icon_libchecker.xml
│ │ ├── themed_icon_lichess.xml
│ │ ├── themed_icon_lidlplus.xml
│ │ ├── themed_icon_life360.xml
│ │ ├── themed_icon_life_is_strange.xml
│ │ ├── themed_icon_lightleap.xml
│ │ ├── themed_icon_lightroom.xml
│ │ ├── themed_icon_lime.xml
│ │ ├── themed_icon_line.xml
│ │ ├── themed_icon_linkdevice.xml
│ │ ├── themed_icon_linkedin.xml
│ │ ├── themed_icon_linkedin_learning.xml
│ │ ├── themed_icon_lithium.xml
│ │ ├── themed_icon_litres_audio.xml
│ │ ├── themed_icon_livin_by_mandiri.xml
│ │ ├── themed_icon_lm_deluxe.xml
│ │ ├── themed_icon_lockscreen_widgets.xml
│ │ ├── themed_icon_logcatextreme.xml
│ │ ├── themed_icon_lsposed.xml
│ │ ├── themed_icon_luckypatcher.xml
│ │ ├── themed_icon_lyb_kernel_manager.xml
│ │ ├── themed_icon_ma7fazty.xml
│ │ ├── themed_icon_macrodroid.xml
│ │ ├── themed_icon_magisk.xml
│ │ ├── themed_icon_magroove.xml
│ │ ├── themed_icon_mail_ru.xml
│ │ ├── themed_icon_mail_ru_cloud.xml
│ │ ├── themed_icon_mal.xml
│ │ ├── themed_icon_maps.xml
│ │ ├── themed_icon_marindeck.xml
│ │ ├── themed_icon_mars.xml
│ │ ├── themed_icon_matlog.xml
│ │ ├── themed_icon_maxim.xml
│ │ ├── themed_icon_maxmpz_eq.xml
│ │ ├── themed_icon_mbank.xml
│ │ ├── themed_icon_mc_four.xml
│ │ ├── themed_icon_mcdonalds.xml
│ │ ├── themed_icon_mdgram.xml
│ │ ├── themed_icon_mdgramyou.xml
│ │ ├── themed_icon_media_station_x.xml
│ │ ├── themed_icon_mediaflix_plus.png
│ │ ├── themed_icon_medium.xml
│ │ ├── themed_icon_meesho.xml
│ │ ├── themed_icon_meet.xml
│ │ ├── themed_icon_mega.xml
│ │ ├── themed_icon_megafon.xml
│ │ ├── themed_icon_meitu.xml
│ │ ├── themed_icon_meo_remote.png
│ │ ├── themed_icon_mercado_libre.xml
│ │ ├── themed_icon_merge_war.xml
│ │ ├── themed_icon_messages.xml
│ │ ├── themed_icon_messenger.xml
│ │ ├── themed_icon_metamask.xml
│ │ ├── themed_icon_mibudsm8.xml
│ │ ├── themed_icon_microsoft_authenticator.xml
│ │ ├── themed_icon_microsoft_azure.xml
│ │ ├── themed_icon_microsoft_edge.xml
│ │ ├── themed_icon_microsoft_excel.xml
│ │ ├── themed_icon_microsoft_launcher.xml
│ │ ├── themed_icon_microsoft_lens.xml
│ │ ├── themed_icon_microsoft_math.xml
│ │ ├── themed_icon_microsoft_office.xml
│ │ ├── themed_icon_microsoft_onedrive.xml
│ │ ├── themed_icon_microsoft_onenote.xml
│ │ ├── themed_icon_microsoft_outlook.xml
│ │ ├── themed_icon_microsoft_planner.xml
│ │ ├── themed_icon_microsoft_powerpoint.xml
│ │ ├── themed_icon_microsoft_teams.xml
│ │ ├── themed_icon_microsoft_todo.xml
│ │ ├── themed_icon_microsoft_word.xml
│ │ ├── themed_icon_mifit.xml
│ │ ├── themed_icon_mijn_hr.xml
│ │ ├── themed_icon_million_az.xml
│ │ ├── themed_icon_minecraft.xml
│ │ ├── themed_icon_minesweeper.xml
│ │ ├── themed_icon_mini_metro.xml
│ │ ├── themed_icon_mirpay.xml
│ │ ├── themed_icon_miui_player.png
│ │ ├── themed_icon_mixplorer.xml
│ │ ├── themed_icon_mobile_legends.xml
│ │ ├── themed_icon_modo.xml
│ │ ├── themed_icon_moey.xml
│ │ ├── themed_icon_mojo.xml
│ │ ├── themed_icon_monect.xml
│ │ ├── themed_icon_money_lover.xml
│ │ ├── themed_icon_money_manager.xml
│ │ ├── themed_icon_moon_reader.xml
│ │ ├── themed_icon_moon_reader_pro.xml
│ │ ├── themed_icon_moto.png
│ │ ├── themed_icon_moto_camera.png
│ │ ├── themed_icon_mtmanager.xml
│ │ ├── themed_icon_mts.xml
│ │ ├── themed_icon_musicolet.xml
│ │ ├── themed_icon_musicspeedchanger.xml
│ │ ├── themed_icon_must.xml
│ │ ├── themed_icon_mx_player.xml
│ │ ├── themed_icon_my_jio.png
│ │ ├── themed_icon_my_lifecell.xml
│ │ ├── themed_icon_my_orange_egypt.xml
│ │ ├── themed_icon_my_vodafone.png
│ │ ├── themed_icon_myairtel.xml
│ │ ├── themed_icon_mybook.xml
│ │ ├── themed_icon_myfitnesspal.xml
│ │ ├── themed_icon_mygov_az.xml
│ │ ├── themed_icon_mygp.xml
│ │ ├── themed_icon_myjio.xml
│ │ ├── themed_icon_myntra.xml
│ │ ├── themed_icon_mypg.xml
│ │ ├── themed_icon_nagad.xml
│ │ ├── themed_icon_naptime.xml
│ │ ├── themed_icon_naver_dict.xml
│ │ ├── themed_icon_naver_map.xml
│ │ ├── themed_icon_nekkoto.png
│ │ ├── themed_icon_nekogram.xml
│ │ ├── themed_icon_nest.xml
│ │ ├── themed_icon_netease.xml
│ │ ├── themed_icon_netflix.xml
│ │ ├── themed_icon_newpipe.xml
│ │ ├── themed_icon_news.xml
│ │ ├── themed_icon_next.xml
│ │ ├── themed_icon_nfg.xml
│ │ ├── themed_icon_nfsinjector.xml
│ │ ├── themed_icon_nfsmw.xml
│ │ ├── themed_icon_nicegram.xml
│ │ ├── themed_icon_nimo_tv.png
│ │ ├── themed_icon_node_video.xml
│ │ ├── themed_icon_noisefit.xml
│ │ ├── themed_icon_nordvpn.xml
│ │ ├── themed_icon_notebloc.png
│ │ ├── themed_icon_notebook.xml
│ │ ├── themed_icon_noteit.xml
│ │ ├── themed_icon_nothing_camera.xml
│ │ ├── themed_icon_nothing_soundrecorder.xml
│ │ ├── themed_icon_notify_for_miband.xml
│ │ ├── themed_icon_notion.xml
│ │ ├── themed_icon_nova.xml
│ │ ├── themed_icon_novobanco.xml
│ │ ├── themed_icon_nubank.xml
│ │ ├── themed_icon_nyt_chinese.xml
│ │ ├── themed_icon_nyt_news.xml
│ │ ├── themed_icon_nyx.xml
│ │ ├── themed_icon_obsidian.xml
│ │ ├── themed_icon_office.png
│ │ ├── themed_icon_offline_podcast_app.xml
│ │ ├── themed_icon_ofox.xml
│ │ ├── themed_icon_oisafe.xml
│ │ ├── themed_icon_okko.xml
│ │ ├── themed_icon_ola_electric.xml
│ │ ├── themed_icon_olx.xml
│ │ ├── themed_icon_one_dm_plus.xml
│ │ ├── themed_icon_one_tap_cleaner.png
│ │ ├── themed_icon_onedrive.png
│ │ ├── themed_icon_onefootball.xml
│ │ ├── themed_icon_oneplus_calculator.xml
│ │ ├── themed_icon_oneplus_camera.xml
│ │ ├── themed_icon_oneplus_gallery.xml
│ │ ├── themed_icon_open_link_with.xml
│ │ ├── themed_icon_open_vpn.png
│ │ ├── themed_icon_opera.xml
│ │ ├── themed_icon_opera_beta.xml
│ │ ├── themed_icon_opera_gx.xml
│ │ ├── themed_icon_opera_mini.xml
│ │ ├── themed_icon_opera_mini_beta.xml
│ │ ├── themed_icon_osmand.xml
│ │ ├── themed_icon_osmand_plus.xml
│ │ ├── themed_icon_oto_music.xml
│ │ ├── themed_icon_otraku.xml
│ │ ├── themed_icon_overdrop.xml
│ │ ├── themed_icon_ovo.xml
│ │ ├── themed_icon_owlgram.xml
│ │ ├── themed_icon_oxp_gaming_vpn.xml
│ │ ├── themed_icon_ozon.xml
│ │ ├── themed_icon_package_names.xml
│ │ ├── themed_icon_palette.xml
│ │ ├── themed_icon_pandavpn.xml
│ │ ├── themed_icon_panels_sidebar.xml
│ │ ├── themed_icon_parrot_recorder.xml
│ │ ├── themed_icon_patreon.xml
│ │ ├── themed_icon_paypal.xml
│ │ ├── themed_icon_paypal_business.xml
│ │ ├── themed_icon_paytm.xml
│ │ ├── themed_icon_pdf_viewer.xml
│ │ ├── themed_icon_pedulilindungi.xml
│ │ ├── themed_icon_pharmeasy.xml
│ │ ├── themed_icon_phonepe.xml
│ │ ├── themed_icon_phonograph.png
│ │ ├── themed_icon_photo_editor.png
│ │ ├── themed_icon_photomath.xml
│ │ ├── themed_icon_photon_camera.xml
│ │ ├── themed_icon_photoroom.xml
│ │ ├── themed_icon_photos.xml
│ │ ├── themed_icon_phub.xml
│ │ ├── themed_icon_physicswallah.xml
│ │ ├── themed_icon_picpay.xml
│ │ ├── themed_icon_picsart.xml
│ │ ├── themed_icon_picto.xml
│ │ ├── themed_icon_pikabu.xml
│ │ ├── themed_icon_pillars.xml
│ │ ├── themed_icon_pinetwork.xml
│ │ ├── themed_icon_pingodoce.xml
│ │ ├── themed_icon_pinnit.xml
│ │ ├── themed_icon_pinterest.xml
│ │ ├── themed_icon_pixel_gun_3d.xml
│ │ ├── themed_icon_pixel_mods.xml
│ │ ├── themed_icon_pixelbuds.xml
│ │ ├── themed_icon_pixellab.png
│ │ ├── themed_icon_pixeltips.xml
│ │ ├── themed_icon_pixiv.xml
│ │ ├── themed_icon_pl_mods.xml
│ │ ├── themed_icon_plantnet.xml
│ │ ├── themed_icon_plato.xml
│ │ ├── themed_icon_play_books.xml
│ │ ├── themed_icon_play_games.xml
│ │ ├── themed_icon_play_services.xml
│ │ ├── themed_icon_play_store.xml
│ │ ├── themed_icon_plex.xml
│ │ ├── themed_icon_pluma.xml
│ │ ├── themed_icon_plus_messenger.xml
│ │ ├── themed_icon_pocket_casts.xml
│ │ ├── themed_icon_podcasts.xml
│ │ ├── themed_icon_pokemon_go.xml
│ │ ├── themed_icon_pokemon_unite.xml
│ │ ├── themed_icon_pokerstars.xml
│ │ ├── themed_icon_pomodo.xml
│ │ ├── themed_icon_post_dhl.xml
│ │ ├── themed_icon_poweramp.xml
│ │ ├── themed_icon_powerdirector.xml
│ │ ├── themed_icon_powertube.xml
│ │ ├── themed_icon_prequel.png
│ │ ├── themed_icon_prime_video.xml
│ │ ├── themed_icon_progressbar95.xml
│ │ ├── themed_icon_project_themer.xml
│ │ ├── themed_icon_proton_vpn.xml
│ │ ├── themed_icon_protonmail.xml
│ │ ├── themed_icon_protonmail_1.xml
│ │ ├── themed_icon_protonmail_2.xml
│ │ ├── themed_icon_ps.xml
│ │ ├── themed_icon_ps_camera.xml
│ │ ├── themed_icon_ps_cc.png
│ │ ├── themed_icon_ps_express.xml
│ │ ├── themed_icon_psn.png
│ │ ├── themed_icon_pubg.png
│ │ ├── themed_icon_pulsar_plus.png
│ │ ├── themed_icon_pulse_music.xml
│ │ ├── themed_icon_puma.xml
│ │ ├── themed_icon_puretuber.png
│ │ ├── themed_icon_pushbullet.xml
│ │ ├── themed_icon_qiwi.xml
│ │ ├── themed_icon_qksms.xml
│ │ ├── themed_icon_qr_scan.xml
│ │ ├── themed_icon_quick_edit.xml
│ │ ├── themed_icon_quickpic.xml
│ │ ├── themed_icon_quickstep.xml
│ │ ├── themed_icon_quizlet.xml
│ │ ├── themed_icon_quora.xml
│ │ ├── themed_icon_rabobank.xml
│ │ ├── themed_icon_radio_fm.xml
│ │ ├── themed_icon_rahat_market.xml
│ │ ├── themed_icon_rar.xml
│ │ ├── themed_icon_rave.xml
│ │ ├── themed_icon_rboard.xml
│ │ ├── themed_icon_rboard_manager.png
│ │ ├── themed_icon_read_chan.xml
│ │ ├── themed_icon_readera.xml
│ │ ├── themed_icon_readwise.xml
│ │ ├── themed_icon_realme_link.xml
│ │ ├── themed_icon_recorder.xml
│ │ ├── themed_icon_recorder_s.xml
│ │ ├── themed_icon_reddit.xml
│ │ ├── themed_icon_redlime.xml
│ │ ├── themed_icon_redtulum.xml
│ │ ├── themed_icon_reev_pro.xml
│ │ ├── themed_icon_relay.xml
│ │ ├── themed_icon_remote.xml
│ │ ├── themed_icon_remotedesktop.xml
│ │ ├── themed_icon_repainter.xml
│ │ ├── themed_icon_resplash.xml
│ │ ├── themed_icon_resso.xml
│ │ ├── themed_icon_retro_music.xml
│ │ ├── themed_icon_retroarch.xml
│ │ ├── themed_icon_revolut.xml
│ │ ├── themed_icon_rl_sideswipe.xml
│ │ ├── themed_icon_roblox.xml
│ │ ├── themed_icon_rocket.xml
│ │ ├── themed_icon_root_browser.xml
│ │ ├── themed_icon_root_explorer.png
│ │ ├── themed_icon_rootactivitylauncher.xml
│ │ ├── themed_icon_rootexplorer.xml
│ │ ├── themed_icon_rootuninstaller.xml
│ │ ├── themed_icon_ru_post.xml
│ │ ├── themed_icon_russia_vpn.xml
│ │ ├── themed_icon_ryanair.xml
│ │ ├── themed_icon_safety.xml
│ │ ├── themed_icon_sai.png
│ │ ├── themed_icon_saikou.xml
│ │ ├── themed_icon_salat.xml
│ │ ├── themed_icon_samsung_browser.xml
│ │ ├── themed_icon_samsung_browser_beta.xml
│ │ ├── themed_icon_samsung_internet.png
│ │ ├── themed_icon_samsung_music.xml
│ │ ├── themed_icon_samulas.xml
│ │ ├── themed_icon_santander.xml
│ │ ├── themed_icon_santander_way.xml
│ │ ├── themed_icon_savefrom_helper.xml
│ │ ├── themed_icon_sberbank.xml
│ │ ├── themed_icon_sberbank_online.png
│ │ ├── themed_icon_sc_india.xml
│ │ ├── themed_icon_school_planner.xml
│ │ ├── themed_icon_scientific_calculator.xml
│ │ ├── themed_icon_screen_rec.png
│ │ ├── themed_icon_screeno.xml
│ │ ├── themed_icon_sd_maid.png
│ │ ├── themed_icon_sdmaid.xml
│ │ ├── themed_icon_sdmaidpro.xml
│ │ ├── themed_icon_seasonhit.png
│ │ ├── themed_icon_sesame_search.xml
│ │ ├── themed_icon_settings.xml
│ │ ├── themed_icon_shadow_fight_2.xml
│ │ ├── themed_icon_shadowsocks.xml
│ │ ├── themed_icon_shareit.xml
│ │ ├── themed_icon_sharik.png
│ │ ├── themed_icon_shazam.xml
│ │ ├── themed_icon_sheets.xml
│ │ ├── themed_icon_shelly.xml
│ │ ├── themed_icon_shiori.png
│ │ ├── themed_icon_shopee.xml
│ │ ├── themed_icon_shopeepay.png
│ │ ├── themed_icon_shopsy.xml
│ │ ├── themed_icon_shopsy_in.xml
│ │ ├── themed_icon_shortcutmaker.xml
│ │ ├── themed_icon_signal.xml
│ │ ├── themed_icon_simple_calendar.xml
│ │ ├── themed_icon_simple_gallery_pro.xml
│ │ ├── themed_icon_simplenote.xml
│ │ ├── themed_icon_simplereboot.xml
│ │ ├── themed_icon_simply_bank.xml
│ │ ├── themed_icon_simtoolkit.xml
│ │ ├── themed_icon_sked.xml
│ │ ├── themed_icon_skillshare.xml
│ │ ├── themed_icon_skit_premium___apps_manager.xml
│ │ ├── themed_icon_skred.xml
│ │ ├── themed_icon_sky_cotl.xml
│ │ ├── themed_icon_skype.xml
│ │ ├── themed_icon_skyscanner.xml
│ │ ├── themed_icon_slack.xml
│ │ ├── themed_icon_sleep_as_android.xml
│ │ ├── themed_icon_slides.xml
│ │ ├── themed_icon_smart_audiobook_player.xml
│ │ ├── themed_icon_smartbank.xml
│ │ ├── themed_icon_smarthz.xml
│ │ ├── themed_icon_smartpackkernelmanager.xml
│ │ ├── themed_icon_smarty.xml
│ │ ├── themed_icon_sms_organizer.xml
│ │ ├── themed_icon_smudgess.xml
│ │ ├── themed_icon_snapchat.xml
│ │ ├── themed_icon_snapdrop.xml
│ │ ├── themed_icon_snapmod.xml
│ │ ├── themed_icon_snapp.xml
│ │ ├── themed_icon_snapseed.xml
│ │ ├── themed_icon_snapshat.png
│ │ ├── themed_icon_snaptube.xml
│ │ ├── themed_icon_sockshttp.png
│ │ ├── themed_icon_sofa_score.xml
│ │ ├── themed_icon_solid_explorer.xml
│ │ ├── themed_icon_solid_soundamplifier.xml
│ │ ├── themed_icon_sony_headphonesconnect.xml
│ │ ├── themed_icon_sony_music.xml
│ │ ├── themed_icon_soul_knight.xml
│ │ ├── themed_icon_sound_cloud.png
│ │ ├── themed_icon_soundcloud.xml
│ │ ├── themed_icon_sova_v_re.xml
│ │ ├── themed_icon_spark.png
│ │ ├── themed_icon_spark_email.xml
│ │ ├── themed_icon_speedtest.xml
│ │ ├── themed_icon_spike.xml
│ │ ├── themed_icon_splitapk.xml
│ │ ├── themed_icon_spotiflyer.xml
│ │ ├── themed_icon_spotify.xml
│ │ ├── themed_icon_star_plus.xml
│ │ ├── themed_icon_starwalk.xml
│ │ ├── themed_icon_starwarsheroes.xml
│ │ ├── themed_icon_state_of_survival.xml
│ │ ├── themed_icon_steam.xml
│ │ ├── themed_icon_steam_chat.xml
│ │ ├── themed_icon_steam_link.xml
│ │ ├── themed_icon_stellio.xml
│ │ ├── themed_icon_stepik.xml
│ │ ├── themed_icon_stickerly.xml
│ │ ├── themed_icon_stickers2whatsapp.xml
│ │ ├── themed_icon_storageisolation.xml
│ │ ├── themed_icon_storewards.xml
│ │ ├── themed_icon_strava.xml
│ │ ├── themed_icon_street_fighter_iv_ce.xml
│ │ ├── themed_icon_streets_of_rage_4.xml
│ │ ├── themed_icon_stuff_widget.xml
│ │ ├── themed_icon_styx_browser.xml
│ │ ├── themed_icon_substratum.xml
│ │ ├── themed_icon_substratum_lite.png
│ │ ├── themed_icon_subway_surfers.xml
│ │ ├── themed_icon_super_retro_mega_wars.xml
│ │ ├── themed_icon_surfshark.xml
│ │ ├── themed_icon_swapper.xml
│ │ ├── themed_icon_sweech.xml
│ │ ├── themed_icon_swift_backup.xml
│ │ ├── themed_icon_swiftkey.xml
│ │ ├── themed_icon_swiggy.xml
│ │ ├── themed_icon_sync.xml
│ │ ├── themed_icon_syncthing.xml
│ │ ├── themed_icon_systemui.xml
│ │ ├── themed_icon_sysuitunernoads.xml
│ │ ├── themed_icon_tachij2k.xml
│ │ ├── themed_icon_tachiyomi.xml
│ │ ├── themed_icon_tachiyomij2k.png
│ │ ├── themed_icon_tandem.xml
│ │ ├── themed_icon_taobao.xml
│ │ ├── themed_icon_tap_az.xml
│ │ ├── themed_icon_tapatalk_pro.xml
│ │ ├── themed_icon_tasker.xml
│ │ ├── themed_icon_tasks.xml
│ │ ├── themed_icon_tasty.xml
│ │ ├── themed_icon_tata_1mg.xml
│ │ ├── themed_icon_taxsee_driver.png
│ │ ├── themed_icon_teampixel.xml
│ │ ├── themed_icon_teams.png
│ │ ├── themed_icon_ted.xml
│ │ ├── themed_icon_tele2.xml
│ │ ├── themed_icon_telegram.xml
│ │ ├── themed_icon_telegram_x.xml
│ │ ├── themed_icon_telegraph.xml
│ │ ├── themed_icon_telegraph_x_pro.png
│ │ ├── themed_icon_telegraphx.xml
│ │ ├── themed_icon_telegraphx_pro.xml
│ │ ├── themed_icon_telekom.xml
│ │ ├── themed_icon_termius.xml
│ │ ├── themed_icon_termux.xml
│ │ ├── themed_icon_tether.xml
│ │ ├── themed_icon_tft___teamfight_tactics.xml
│ │ ├── themed_icon_tg_monet.xml
│ │ ├── themed_icon_the_guardian_editions.xml
│ │ ├── themed_icon_theathletic.xml
│ │ ├── themed_icon_thenks.xml
│ │ ├── themed_icon_thesouledstore.xml
│ │ ├── themed_icon_thumper.xml
│ │ ├── themed_icon_ticktick.xml
│ │ ├── themed_icon_tidal.xml
│ │ ├── themed_icon_tigo.xml
│ │ ├── themed_icon_tiktok.xml
│ │ ├── themed_icon_tiktok_lite.png
│ │ ├── themed_icon_tinder.xml
│ │ ├── themed_icon_tinkoff.xml
│ │ ├── themed_icon_tinkoff_accounting.xml
│ │ ├── themed_icon_tinkoff_investing.xml
│ │ ├── themed_icon_titaniumbackup.png
│ │ ├── themed_icon_tmg.xml
│ │ ├── themed_icon_todus.xml
│ │ ├── themed_icon_toolbox.xml
│ │ ├── themed_icon_topface.xml
│ │ ├── themed_icon_tor_browser.xml
│ │ ├── themed_icon_total_commander.xml
│ │ ├── themed_icon_toweroffantasy.xml
│ │ ├── themed_icon_track24.xml
│ │ ├── themed_icon_trebleinfo.xml
│ │ ├── themed_icon_trendyol.xml
│ │ ├── themed_icon_truecaller.xml
│ │ ├── themed_icon_trust_wallet.xml
│ │ ├── themed_icon_tt.xml
│ │ ├── themed_icon_tubi.xml
│ │ ├── themed_icon_tumblr.xml
│ │ ├── themed_icon_turbo_az.xml
│ │ ├── themed_icon_turbotel.png
│ │ ├── themed_icon_turbotel_pro.xml
│ │ ├── themed_icon_turkcell.xml
│ │ ├── themed_icon_turnip.xml
│ │ ├── themed_icon_tv_time.xml
│ │ ├── themed_icon_tw.xml
│ │ ├── themed_icon_twewy.xml
│ │ ├── themed_icon_twidere_x.xml
│ │ ├── themed_icon_twitch.xml
│ │ ├── themed_icon_twitter.xml
│ │ ├── themed_icon_two_dots.xml
│ │ ├── themed_icon_uala.xml
│ │ ├── themed_icon_ubank.xml
│ │ ├── themed_icon_uber.xml
│ │ ├── themed_icon_uber_fleet.xml
│ │ ├── themed_icon_uber_freight.xml
│ │ ├── themed_icon_uber_manager.xml
│ │ ├── themed_icon_uber_motorista.xml
│ │ ├── themed_icon_uber_orders.xml
│ │ ├── themed_icon_ubereats.xml
│ │ ├── themed_icon_ucbrowser.xml
│ │ ├── themed_icon_udemy.xml
│ │ ├── themed_icon_uibench.xml
│ │ ├── themed_icon_uit_dhcntt.png
│ │ ├── themed_icon_ultimate_facts.xml
│ │ ├── themed_icon_umico.xml
│ │ ├── themed_icon_unbabel.xml
│ │ ├── themed_icon_ungoogled_chromium.xml
│ │ ├── themed_icon_unsplash.xml
│ │ ├── themed_icon_utopiawalls.xml
│ │ ├── themed_icon_utorrent.xml
│ │ ├── themed_icon_vanced_manager.xml
│ │ ├── themed_icon_vanced_music.xml
│ │ ├── themed_icon_vanced_youtube.xml
│ │ ├── themed_icon_vectorassetcreator.xml
│ │ ├── themed_icon_venmo.xml
│ │ ├── themed_icon_vi_recharge.xml
│ │ ├── themed_icon_vi_red.xml
│ │ ├── themed_icon_vi_yellow.xml
│ │ ├── themed_icon_via.png
│ │ ├── themed_icon_via_browser.xml
│ │ ├── themed_icon_viaverde.xml
│ │ ├── themed_icon_viber.xml
│ │ ├── themed_icon_video_converter_compressor.xml
│ │ ├── themed_icon_video_player.xml
│ │ ├── themed_icon_viettelpay.png
│ │ ├── themed_icon_viewranger.xml
│ │ ├── themed_icon_viper_four_android_fx.xml
│ │ ├── themed_icon_vivacut.xml
│ │ ├── themed_icon_vivaldi.xml
│ │ ├── themed_icon_vivo_easy.xml
│ │ ├── themed_icon_vk.xml
│ │ ├── themed_icon_vk_calls.xml
│ │ ├── themed_icon_vk_direct.xml
│ │ ├── themed_icon_vk_mail.xml
│ │ ├── themed_icon_vk_messenger.xml
│ │ ├── themed_icon_vk_mp3_mod.png
│ │ ├── themed_icon_vk_x.png
│ │ ├── themed_icon_vkontakte.xml
│ │ ├── themed_icon_vkx.xml
│ │ ├── themed_icon_vlc.xml
│ │ ├── themed_icon_vodafone.xml
│ │ ├── themed_icon_voice.xml
│ │ ├── themed_icon_volumestyles.xml
│ │ ├── themed_icon_vpn_govpn.xml
│ │ ├── themed_icon_vsco.xml
│ │ ├── themed_icon_vtb_online.xml
│ │ ├── themed_icon_vtosters.xml
│ │ ├── themed_icon_wa_tweaker.xml
│ │ ├── themed_icon_wall_x.xml
│ │ ├── themed_icon_wallcanic_walls.xml
│ │ ├── themed_icon_wallcanic_walls_1.xml
│ │ ├── themed_icon_wallcraft.png
│ │ ├── themed_icon_walldrobe.png
│ │ ├── themed_icon_wallet.xml
│ │ ├── themed_icon_wallet_bet.xml
│ │ ├── themed_icon_wallfever.xml
│ │ ├── themed_icon_walli4k.xml
│ │ ├── themed_icon_wallique.xml
│ │ ├── themed_icon_wallp.png
│ │ ├── themed_icon_wallpaper_engine.xml
│ │ ├── themed_icon_warp.png
│ │ ├── themed_icon_washington_post.xml
│ │ ├── themed_icon_wastickers.xml
│ │ ├── themed_icon_wattpad.xml
│ │ ├── themed_icon_wavelet.xml
│ │ ├── themed_icon_waze.xml
│ │ ├── themed_icon_wear_os.xml
│ │ ├── themed_icon_weather.xml
│ │ ├── themed_icon_weather_radar.xml
│ │ ├── themed_icon_weather_radar_pro.xml
│ │ ├── themed_icon_web_video_cast___browser_to_tv.xml
│ │ ├── themed_icon_webdemail.xml
│ │ ├── themed_icon_webmoney.xml
│ │ ├── themed_icon_webnovel.xml
│ │ ├── themed_icon_webtoon.xml
│ │ ├── themed_icon_wechat.xml
│ │ ├── themed_icon_weheartit.xml
│ │ ├── themed_icon_whatsapp.xml
│ │ ├── themed_icon_whatsapp_busines.png
│ │ ├── themed_icon_whatsapp_business.xml
│ │ ├── themed_icon_widepapers.xml
│ │ ├── themed_icon_wienmobil.xml
│ │ ├── themed_icon_wikipedia.png
│ │ ├── themed_icon_wild_rift.xml
│ │ ├── themed_icon_wildberries.xml
│ │ ├── themed_icon_windscribe.xml
│ │ ├── themed_icon_wireguard.xml
│ │ ├── themed_icon_wish.xml
│ │ ├── themed_icon_wizz_air.xml
│ │ ├── themed_icon_wolt.xml
│ │ ├── themed_icon_womic.xml
│ │ ├── themed_icon_words_of_wonders.xml
│ │ ├── themed_icon_wordscapes.xml
│ │ ├── themed_icon_wordweb.xml
│ │ ├── themed_icon_wps_office.xml
│ │ ├── themed_icon_xbox.xml
│ │ ├── themed_icon_xboxgamepass.xml
│ │ ├── themed_icon_xda.xml
│ │ ├── themed_icon_xenowerk.xml
│ │ ├── themed_icon_xiaomi_wear.png
│ │ ├── themed_icon_ximiui.xml
│ │ ├── themed_icon_xmanager.xml
│ │ ├── themed_icon_xodo_docs.png
│ │ ├── themed_icon_xplayer.xml
│ │ ├── themed_icon_xplore_file_manager.xml
│ │ ├── themed_icon_xprivacylua.xml
│ │ ├── themed_icon_xprivacylua_pro.xml
│ │ ├── themed_icon_yahoomail.xml
│ │ ├── themed_icon_yandex.png
│ │ ├── themed_icon_yandex_disk.xml
│ │ ├── themed_icon_yandex_eda.xml
│ │ ├── themed_icon_yandex_go.xml
│ │ ├── themed_icon_yandex_mail.xml
│ │ ├── themed_icon_yandex_maps.xml
│ │ ├── themed_icon_yandex_market.xml
│ │ ├── themed_icon_yandex_metro.xml
│ │ ├── themed_icon_yandex_music.xml
│ │ ├── themed_icon_yandex_translate.xml
│ │ ├── themed_icon_yandex_weather.png
│ │ ├── themed_icon_yango.xml
│ │ ├── themed_icon_yasnac.xml
│ │ ├── themed_icon_yeelight.xml
│ │ ├── themed_icon_yelo_bank.xml
│ │ ├── themed_icon_yelp.xml
│ │ ├── themed_icon_yemeksepeti.xml
│ │ ├── themed_icon_ykb.xml
│ │ ├── themed_icon_ymusic.xml
│ │ ├── themed_icon_yoo_money.xml
│ │ ├── themed_icon_yota.xml
│ │ ├── themed_icon_youcut.xml
│ │ ├── themed_icon_youtube.xml
│ │ ├── themed_icon_youtube_creator_studio.png
│ │ ├── themed_icon_youtube_music.xml
│ │ ├── themed_icon_youtube_tv.xml
│ │ ├── themed_icon_yummly.xml
│ │ ├── themed_icon_yuola.xml
│ │ ├── themed_icon_zalo.xml
│ │ ├── themed_icon_zalo_pay.png
│ │ ├── themed_icon_zara.xml
│ │ ├── themed_icon_zarchiver.xml
│ │ ├── themed_icon_zedge.xml
│ │ ├── themed_icon_zenly.png
│ │ ├── themed_icon_zepp.xml
│ │ ├── themed_icon_zepp_life.xml
│ │ ├── themed_icon_zomato.xml
│ │ ├── themed_icon_zona.png
│ │ ├── themed_icon_zoom.xml
│ │ └── themed_icons_tt.xml
│ │ ├── values
│ │ ├── arrays.xml
│ │ └── dimens.xml
│ │ └── xml
│ │ └── grayscale_icon_map.xml
├── DarkBgOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ ├── color
│ │ └── surface_header_dark_sysui.xml
│ │ └── values
│ │ └── colors_device_defaults.xml
├── ImmersiveNavigationOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ └── values
│ │ ├── config.xml
│ │ ├── dimens.xml
│ │ └── strings.xml
├── NetworkStackOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ │ └── values
│ │ └── config.xml
└── NowPlayingOverlay
│ ├── Android.bp
│ ├── AndroidManifest.xml
│ └── res
│ └── values
│ └── config.xml
├── tools
├── clean_headers.sh
├── custom_apns.py
└── generate_json_build_info.sh
├── vars
└── aosp_target_release
└── vendorsetup.sh
/.gitignore:
--------------------------------------------------------------------------------
1 | proprietary/*
2 | prebuilt/archive
3 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright 2011-15 The CyanogenMod Project
2 | 2017 The LineageOS Project
3 |
4 | Licensed under the Apache License, Version 2.0 (the "License");
5 | you may not use this file except in compliance with the License.
6 | You may obtain a copy of the License at
7 |
8 | http://www.apache.org/licenses/LICENSE-2.0
9 |
10 | Unless required by applicable law or agreed to in writing, software
11 | distributed under the License is distributed on an "AS IS" BASIS,
12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | See the License for the specific language governing permissions and
14 | limitations under the License.
15 |
--------------------------------------------------------------------------------
/audio/alarms/A_real_hoot.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/A_real_hoot.ogg
--------------------------------------------------------------------------------
/audio/alarms/Bright_morning.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Bright_morning.ogg
--------------------------------------------------------------------------------
/audio/alarms/Cuckoo_clock.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Cuckoo_clock.ogg
--------------------------------------------------------------------------------
/audio/alarms/Early_twilight.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Early_twilight.ogg
--------------------------------------------------------------------------------
/audio/alarms/Fresh_start.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Fresh_start.ogg
--------------------------------------------------------------------------------
/audio/alarms/Full_of_wonder.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Full_of_wonder.ogg
--------------------------------------------------------------------------------
/audio/alarms/Gentle_breeze.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Gentle_breeze.ogg
--------------------------------------------------------------------------------
/audio/alarms/Icicles.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Icicles.ogg
--------------------------------------------------------------------------------
/audio/alarms/Jump_start.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Jump_start.ogg
--------------------------------------------------------------------------------
/audio/alarms/Loose_change.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Loose_change.ogg
--------------------------------------------------------------------------------
/audio/alarms/Rolling_fog.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Rolling_fog.ogg
--------------------------------------------------------------------------------
/audio/alarms/Spokes.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Spokes.ogg
--------------------------------------------------------------------------------
/audio/alarms/Sunshower.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/alarms/Sunshower.ogg
--------------------------------------------------------------------------------
/audio/notifications/Beginning.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Beginning.ogg
--------------------------------------------------------------------------------
/audio/notifications/Coconuts.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Coconuts.ogg
--------------------------------------------------------------------------------
/audio/notifications/Duet.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Duet.ogg
--------------------------------------------------------------------------------
/audio/notifications/End_note.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/End_note.ogg
--------------------------------------------------------------------------------
/audio/notifications/Eureka.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Eureka.ogg
--------------------------------------------------------------------------------
/audio/notifications/Gentle_gong.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Gentle_gong.ogg
--------------------------------------------------------------------------------
/audio/notifications/Mallet.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Mallet.ogg
--------------------------------------------------------------------------------
/audio/notifications/Orders_up.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Orders_up.ogg
--------------------------------------------------------------------------------
/audio/notifications/Ping.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Ping.ogg
--------------------------------------------------------------------------------
/audio/notifications/Pipes.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Pipes.ogg
--------------------------------------------------------------------------------
/audio/notifications/Popcorn.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Popcorn.ogg
--------------------------------------------------------------------------------
/audio/notifications/Shopkeeper.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Shopkeeper.ogg
--------------------------------------------------------------------------------
/audio/notifications/Sticks_and_stones.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Sticks_and_stones.ogg
--------------------------------------------------------------------------------
/audio/notifications/Tuneup.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Tuneup.ogg
--------------------------------------------------------------------------------
/audio/notifications/Tweeter.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Tweeter.ogg
--------------------------------------------------------------------------------
/audio/notifications/Twinkle.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/notifications/Twinkle.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Copycat.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Copycat.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Crackle.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Crackle.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Flutterby.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Flutterby.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Hotline.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Hotline.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Leaps_and_bounds.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Leaps_and_bounds.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Lollipop.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Lollipop.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Lost_and_found.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Lost_and_found.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Mash_up.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Mash_up.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Monkey_around.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Monkey_around.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Schools_out.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Schools_out.ogg
--------------------------------------------------------------------------------
/audio/ringtones/The_big_adventure.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/The_big_adventure.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Your_new_adventure.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Your_new_adventure.ogg
--------------------------------------------------------------------------------
/audio/ringtones/Zen_too.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ringtones/Zen_too.ogg
--------------------------------------------------------------------------------
/audio/ui/AttentionalHaptics.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/AttentionalHaptics.ogg
--------------------------------------------------------------------------------
/audio/ui/ChargingStarted.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/ChargingStarted.ogg
--------------------------------------------------------------------------------
/audio/ui/Dock.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/Dock.ogg
--------------------------------------------------------------------------------
/audio/ui/Effect_Tick.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/Effect_Tick.ogg
--------------------------------------------------------------------------------
/audio/ui/InCallNotification.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/InCallNotification.ogg
--------------------------------------------------------------------------------
/audio/ui/KeypressDelete.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/KeypressDelete.ogg
--------------------------------------------------------------------------------
/audio/ui/KeypressInvalid.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/KeypressInvalid.ogg
--------------------------------------------------------------------------------
/audio/ui/KeypressReturn.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/KeypressReturn.ogg
--------------------------------------------------------------------------------
/audio/ui/KeypressSpacebar.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/KeypressSpacebar.ogg
--------------------------------------------------------------------------------
/audio/ui/KeypressStandard.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/KeypressStandard.ogg
--------------------------------------------------------------------------------
/audio/ui/Lock.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/Lock.ogg
--------------------------------------------------------------------------------
/audio/ui/LowBattery.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/LowBattery.ogg
--------------------------------------------------------------------------------
/audio/ui/NFCFailure.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/NFCFailure.ogg
--------------------------------------------------------------------------------
/audio/ui/NFCInitiated.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/NFCInitiated.ogg
--------------------------------------------------------------------------------
/audio/ui/NFCSuccess.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/NFCSuccess.ogg
--------------------------------------------------------------------------------
/audio/ui/NFCTransferComplete.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/NFCTransferComplete.ogg
--------------------------------------------------------------------------------
/audio/ui/NFCTransferInitiated.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/NFCTransferInitiated.ogg
--------------------------------------------------------------------------------
/audio/ui/Trusted.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/Trusted.ogg
--------------------------------------------------------------------------------
/audio/ui/Undock.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/Undock.ogg
--------------------------------------------------------------------------------
/audio/ui/Unlock.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/Unlock.ogg
--------------------------------------------------------------------------------
/audio/ui/VideoRecord.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/VideoRecord.ogg
--------------------------------------------------------------------------------
/audio/ui/VideoStop.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/VideoStop.ogg
--------------------------------------------------------------------------------
/audio/ui/WirelessChargingStarted.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/WirelessChargingStarted.ogg
--------------------------------------------------------------------------------
/audio/ui/audio_end.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/audio_end.ogg
--------------------------------------------------------------------------------
/audio/ui/audio_initiate.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/audio_initiate.ogg
--------------------------------------------------------------------------------
/audio/ui/camera_click.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/camera_click.ogg
--------------------------------------------------------------------------------
/audio/ui/camera_focus.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/camera_focus.ogg
--------------------------------------------------------------------------------
/audio/ui/reverse_charging_end.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/reverse_charging_end.ogg
--------------------------------------------------------------------------------
/audio/ui/reverse_charging_start.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/audio/ui/reverse_charging_start.ogg
--------------------------------------------------------------------------------
/bootanimation/bootanimation_1080.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/bootanimation/bootanimation_1080.zip
--------------------------------------------------------------------------------
/bootanimation/bootanimation_1440.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/bootanimation/bootanimation_1440.zip
--------------------------------------------------------------------------------
/bootanimation/bootanimation_720.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/bootanimation/bootanimation_720.zip
--------------------------------------------------------------------------------
/build/core/definitions.mk:
--------------------------------------------------------------------------------
1 | #
2 | # Pixys-specific macros
3 | #
4 | define uniq
5 | $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
6 | endef
7 |
8 | # Include board/platform macros
9 | include vendor/pixys/build/core/utils.mk
10 |
--------------------------------------------------------------------------------
/build/core/main.mk:
--------------------------------------------------------------------------------
1 | # Include PixysOS versions
2 | include $(TOPDIR)vendor/pixys/build/core/main_version.mk
3 |
--------------------------------------------------------------------------------
/build/core/main_version.mk:
--------------------------------------------------------------------------------
1 | # Build fingerprint
2 | ifeq ($(BUILD_FINGERPRINT),)
3 | BUILD_NUMBER_CUSTOM := $(shell date -u +%H%M)
4 | CUSTOM_DEVICE ?= $(TARGET_DEVICE)
5 | BUILD_SIGNATURE_KEYS := release-keys
6 | CUSTOM_BUILD_VARIANT ?= $(TARGET_BUILD_VARIANT)
7 | BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(CUSTOM_DEVICE)/$(CUSTOM_DEVICE):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER_CUSTOM):$(CUSTOM_BUILD_VARIANT)/$(BUILD_SIGNATURE_KEYS)
8 |
9 | endif
10 | ADDITIONAL_SYSTEM_PROPERTIES += \
11 | ro.build.fingerprint=$(BUILD_FINGERPRINT)
12 |
--------------------------------------------------------------------------------
/build/core/pathmap.mk:
--------------------------------------------------------------------------------
1 | # Enter project path into pathmap
2 | #
3 | # $(1): name
4 | # $(2): path
5 | #
6 | define project-set-path
7 | $(eval pathmap_PROJ += $(1):$(2))
8 | endef
9 |
10 | # Returns the path to the requested module's include directory,
11 | # relative to the root of the source tree.
12 | #
13 | # $(1): a list of modules (or other named entities) to find the projects for
14 | define project-path-for
15 | $(foreach n,$(1),$(patsubst $(n):%,%,$(filter $(n):%,$(pathmap_PROJ))))
16 | endef
17 |
--------------------------------------------------------------------------------
/build/soong/generator/variables.go:
--------------------------------------------------------------------------------
1 | package generator
2 |
3 | import (
4 | "fmt"
5 |
6 | "android/soong/android"
7 | )
8 |
9 | func pixysExpandVariables(ctx android.ModuleContext, in string) string {
10 | pixysVars := ctx.Config().VendorConfig("pixysVarsPlugin")
11 |
12 | out, err := android.Expand(in, func(name string) (string, error) {
13 | if pixysVars.IsSet(name) {
14 | return pixysVars.String(name), nil
15 | }
16 | // This variable is not for us, restore what the original
17 | // variable string will have looked like for an Expand
18 | // that comes later.
19 | return fmt.Sprintf("$(%s)", name), nil
20 | })
21 |
22 | if err != nil {
23 | ctx.PropertyErrorf("%s: %s", in, err.Error())
24 | return ""
25 | }
26 |
27 | return out
28 | }
29 |
--------------------------------------------------------------------------------
/build/target/product/product_launched_with_j.mk:
--------------------------------------------------------------------------------
1 | #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
2 | PRODUCT_SHIPPING_API_LEVEL := 16
3 |
--------------------------------------------------------------------------------
/build/target/product/product_launched_with_j_mr1.mk:
--------------------------------------------------------------------------------
1 | #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
2 | PRODUCT_SHIPPING_API_LEVEL := 17
3 |
--------------------------------------------------------------------------------
/build/target/product/product_launched_with_j_mr2.mk:
--------------------------------------------------------------------------------
1 | #PRODUCT_SHIPPING_API_LEVEL indicates the first api level, device has been commercially launched on.
2 | PRODUCT_SHIPPING_API_LEVEL := 18
3 |
--------------------------------------------------------------------------------
/build/target/product/source.properties:
--------------------------------------------------------------------------------
1 | Pkg.Desc=ProjectPixys System Image API ${PLATFORM_VERSION} ${TARGET_CPU_ABI}
2 | Pkg.Revision=1
3 | AndroidVersion.ApiLevel=${PLATFORM_SDK_VERSION}
4 | SystemImage.Abi=${TARGET_CPU_ABI}
5 | SystemImage.TagId=pixys
6 | SystemImage.TagDisplay=ProjectPixys
7 |
8 |
--------------------------------------------------------------------------------
/build/tools/getb64key.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 |
3 | from __future__ import print_function
4 |
5 | import base64
6 | import sys
7 |
8 | pkFile = open(sys.argv[1], 'rb').readlines()
9 | base64Key = ""
10 | inCert = False
11 | for line in pkFile:
12 | if line.startswith(b"-"):
13 | inCert = not inCert
14 | continue
15 |
16 | base64Key += line.strip()
17 |
18 | print(base64.b16encode(base64.b64decode(base64Key)).lower())
19 |
--------------------------------------------------------------------------------
/charger/images/charger/battery_fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/charger/images/charger/battery_fail.png
--------------------------------------------------------------------------------
/charger/images/charger/battery_scale.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/charger/images/charger/battery_scale.png
--------------------------------------------------------------------------------
/charger/images/charger/main_font.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/charger/images/charger/main_font.png
--------------------------------------------------------------------------------
/config/BoardConfigPixys.mk:
--------------------------------------------------------------------------------
1 | include vendor/pixys/config/BoardConfigKernel.mk
2 |
3 | ifeq ($(BOARD_USES_QCOM_HARDWARE),true)
4 | include hardware/qcom-caf/common/BoardConfigQcom.mk
5 | endif
6 |
7 | include vendor/pixys/config/BoardConfigSoong.mk
8 |
9 | # Namespace for fwk-detect
10 | TARGET_FWK_DETECT_PATH ?= hardware/qcom-caf/common
11 | PRODUCT_SOONG_NAMESPACES += \
12 | $(TARGET_FWK_DETECT_PATH)/fwk-detect
13 |
--------------------------------------------------------------------------------
/config/BoardConfigReservedSize.mk:
--------------------------------------------------------------------------------
1 | # SPDX-FileCopyrightText: 2023 The LineageOS Project
2 | # SPDX-License-Identifier: Apache-2.0
3 |
4 | ifeq ($(PRODUCT_VIRTUAL_AB_OTA),true)
5 | BOARD_PRODUCTIMAGE_MINIMAL_PARTITION_RESERVED_SIZE ?= true
6 | endif
7 |
8 | BOARD_PRODUCTIMAGE_EXTFS_INODE_COUNT ?= -1
9 | ifeq ($(BOARD_PRODUCTIMAGE_MINIMAL_PARTITION_RESERVED_SIZE),true)
10 | BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE ?= 1188036608
11 | else
12 | BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE ?= 1957691392
13 | endif
14 | BOARD_SYSTEMIMAGE_EXTFS_INODE_COUNT ?= -1
15 | BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE ?= 94371840
16 | BOARD_SYSTEM_EXTIMAGE_EXTFS_INODE_COUNT ?= -1
17 | BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE ?= 94371840
18 |
--------------------------------------------------------------------------------
/config/common_full.mk:
--------------------------------------------------------------------------------
1 | # Inherit common Lineage stuff
2 | $(call inherit-product, vendor/pixys/config/common_mobile.mk)
3 |
4 | PRODUCT_SIZE := full
5 |
6 | # Recorder
7 | PRODUCT_PACKAGES += \
8 | Recorder
9 |
--------------------------------------------------------------------------------
/config/common_full_phone.mk:
--------------------------------------------------------------------------------
1 | # Inherit full common Lineage stuff
2 | $(call inherit-product, vendor/pixys/config/common_full.mk)
3 |
4 | # Required packages
5 | PRODUCT_PACKAGES += \
6 | LatinIME
7 |
8 | # Include Lineage LatinIME dictionaries
9 | PRODUCT_PACKAGE_OVERLAYS += vendor/pixys/overlay/dictionaries
10 |
11 | $(call inherit-product, vendor/pixys/config/telephony.mk)
12 |
--------------------------------------------------------------------------------
/config/data_only.mk:
--------------------------------------------------------------------------------
1 | # World APN list
2 | PRODUCT_PACKAGES += \
3 | apns-conf.xml
4 |
5 | # Telephony packages
6 | PRODUCT_PACKAGES += \
7 | Stk
8 |
--------------------------------------------------------------------------------
/config/permissions/privapp-permissions-lineagehw.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/config/rro_overlays.mk:
--------------------------------------------------------------------------------
1 | # RRO Overlays
2 | PRODUCT_PACKAGES += \
3 | CustomPixelLauncherOverlay \
4 | NetworkStackOverlay \
5 | ImmersiveNavigationOverlay \
6 | DarkBgOverlay
7 |
--------------------------------------------------------------------------------
/config/telephony.mk:
--------------------------------------------------------------------------------
1 | # Sensitive Phone Numbers list
2 | PRODUCT_COPY_FILES += \
3 | vendor/pixys/prebuilt/common/etc/sensitive_pn.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/sensitive_pn.xml
4 |
5 | # World APN list
6 | PRODUCT_PACKAGES += \
7 | apns-conf.xml
8 |
9 | # Telephony packages
10 | PRODUCT_PACKAGES += \
11 | messaging \
12 | Stk
13 |
14 | # Tethering - allow without requiring a provisioning app
15 | # (for devices that check this)
16 | PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
17 | net.tethering.noprovisioning=true
18 |
--------------------------------------------------------------------------------
/fonts/Android.mk:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright (C) 2018-2019 The Pixel3ROM Project
3 | # Copyright (C) 2021 Raphielscape LLC.
4 | #
5 | # Licensed under the Apache License, Version 2.0 (the "License");
6 | # you may not use this file except in compliance with the License.
7 | # You may obtain a copy of the License at
8 | #
9 | # http://www.apache.org/licenses/LICENSE-2.0
10 | #
11 | # Unless required by applicable law or agreed to in writing, software
12 | # distributed under the License is distributed on an "AS IS" BASIS,
13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | # See the License for the specific language governing permissions and
15 | # limitations under the License.
16 | #
17 |
18 | LOCAL_PATH := $(call my-dir)
19 |
--------------------------------------------------------------------------------
/fonts/GInter/GInterVF-Italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/GInter/GInterVF-Italic.ttf
--------------------------------------------------------------------------------
/fonts/GInter/GInterVF-Roman.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/GInter/GInterVF-Roman.ttf
--------------------------------------------------------------------------------
/fonts/GInter/product.specific:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/GInter/product.specific
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Black.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Black.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-BlackItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-BlackItalic.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Bold.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-BoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-BoldItalic.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Italic.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Light.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-LightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-LightItalic.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Medium.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-MediumItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-MediumItalic.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Regular.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-Thin.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/HarmonyOS-Sans-ThinItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/HarmonyOS-Sans-ThinItalic.ttf
--------------------------------------------------------------------------------
/fonts/HarmonyOS-Sans/product.specific:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/HarmonyOS-Sans/product.specific
--------------------------------------------------------------------------------
/fonts/prebuilt/GoogleSans-Italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/GoogleSans-Italic.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/GoogleSans-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/GoogleSans-Regular.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/GoogleSansClock-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/GoogleSansClock-Regular.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/GoogleSansFlex-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/GoogleSansFlex-Regular.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/Linotte.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/Linotte.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/Manrope-VF.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/Manrope-VF.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-Black.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-Black.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-BlackItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-BlackItalic.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-Bold.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-BoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-BoldItalic.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-Italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-Italic.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-Light.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-LightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-LightItalic.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-Medium.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-MediumItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-MediumItalic.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-Regular.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-Thin.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/OnePlusSans-ThinItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/OnePlusSans-ThinItalic.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/SlateFromOP-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/SlateFromOP-Light.ttf
--------------------------------------------------------------------------------
/fonts/prebuilt/SlateFromOP-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/fonts/prebuilt/SlateFromOP-Regular.ttf
--------------------------------------------------------------------------------
/overlay/common/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png
--------------------------------------------------------------------------------
/overlay/common/frameworks/base/packages/SystemUI/res-keyguard/font/google_sans_clock.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/frameworks/base/packages/SystemUI/res-keyguard/font/google_sans_clock.ttf
--------------------------------------------------------------------------------
/overlay/common/packages/apps/FMRadio/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/packages/apps/FMRadio/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/overlay/common/packages/apps/FMRadio/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/packages/apps/FMRadio/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/overlay/common/packages/apps/FMRadio/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/packages/apps/FMRadio/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/overlay/common/packages/apps/FMRadio/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/packages/apps/FMRadio/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/overlay/common/packages/apps/FMRadio/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/packages/apps/FMRadio/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/overlay/common/packages/apps/FMRadio/res/drawable-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/packages/apps/FMRadio/res/drawable-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/overlay/common/packages/modules/NetworkStack/res/values/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | true
5 |
6 |
--------------------------------------------------------------------------------
/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-hdpi/ic_launcher_fmradio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-hdpi/ic_launcher_fmradio.png
--------------------------------------------------------------------------------
/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-ldpi/ic_launcher_fmradio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-ldpi/ic_launcher_fmradio.png
--------------------------------------------------------------------------------
/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-mdpi/ic_launcher_fmradio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-mdpi/ic_launcher_fmradio.png
--------------------------------------------------------------------------------
/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-xhdpi/ic_launcher_fmradio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-xhdpi/ic_launcher_fmradio.png
--------------------------------------------------------------------------------
/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-xxhdpi/ic_launcher_fmradio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-xxhdpi/ic_launcher_fmradio.png
--------------------------------------------------------------------------------
/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-xxxhdpi/ic_launcher_fmradio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable-xxxhdpi/ic_launcher_fmradio.png
--------------------------------------------------------------------------------
/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable/ic_launcher_fmradio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/overlay/common/vendor/qcom/opensource/fm-commonsys/fmapp2/res/drawable/ic_launcher_fmradio.png
--------------------------------------------------------------------------------
/prebuilt/common/bin/backuptool_postinstall.sh:
--------------------------------------------------------------------------------
1 | #!/system/bin/sh
2 | #
3 | # LineageOS A/B OTA Postinstall Script
4 | #
5 |
6 | /postinstall/system/bin/backuptool_ab.sh backup
7 | /postinstall/system/bin/backuptool_ab.sh restore
8 |
9 | sync
10 |
11 | exit 0
12 |
--------------------------------------------------------------------------------
/prebuilt/common/etc/adblock/hosts:
--------------------------------------------------------------------------------
1 | 127.0.0.1 localhost
2 | ::1 ip6-localhost
3 |
--------------------------------------------------------------------------------
/prebuilt/common/etc/adblock/init.adblock.rc:
--------------------------------------------------------------------------------
1 | on property:persist.sys.adblock_enabled=true
2 | setprop sys.adblock_status started
3 |
4 | on property:sys.adblock_status=started
5 | mount none /system_ext/etc/hosts.adblock /system/etc/hosts.real bind
6 |
7 | on property:sys.adblock_status=stopped
8 | umount /system/etc/hosts.real
9 |
--------------------------------------------------------------------------------
/prebuilt/common/etc/init/pixys-ssh.rc:
--------------------------------------------------------------------------------
1 | on post-fs-data
2 | mkdir /data/ssh 0750 root shell encryption=Require
3 | mkdir /data/ssh/empty 0600 root shell
4 |
--------------------------------------------------------------------------------
/prebuilt/common/etc/init/pixys-system.rc:
--------------------------------------------------------------------------------
1 | # LineageOS core functionality
2 | on init
3 | export TERMINFO /product/etc/terminfo
4 |
5 | # bugreport is triggered by holding down volume down, volume up and power
6 | service bugreport /system/bin/dumpstate -d -p -z
7 | oneshot
8 | disabled
9 | keycodes 114 115 116
10 |
--------------------------------------------------------------------------------
/prebuilt/common/etc/init/pixys-updates.rc:
--------------------------------------------------------------------------------
1 | on post-fs-data
2 | # Create an additional OTA package directory that unlike /data/ota_package
3 | # will not be touched by GmsCore.
4 | mkdir /data/pixysos_updates 0770 system cache encryption=Require
5 |
--------------------------------------------------------------------------------
/prebuilt/common/etc/sysconfig/quick_tap.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/release/aconfig/ap2a/com.android.systemui.flags/Android.bp:
--------------------------------------------------------------------------------
1 | aconfig_values {
2 | name: "aconfig-values-ap2a-com.android.systemui.flags-all",
3 | package: "com.android.systemui",
4 | srcs: [
5 | "*.textproto",
6 | ],
7 | }
8 |
--------------------------------------------------------------------------------
/release/aconfig/ap2a/com.android.systemui.flags/haptic_brightness_slider_flag_values.textproto:
--------------------------------------------------------------------------------
1 | flag_value {
2 | package: "com.android.systemui"
3 | name: "haptic_brightness_slider"
4 | state: ENABLED
5 | permission: READ_ONLY
6 | }
7 |
--------------------------------------------------------------------------------
/release/aconfig/ap2a/com.android.systemui.flags/haptic_volume_slider_flag_values.textproto:
--------------------------------------------------------------------------------
1 | flag_value {
2 | package: "com.android.systemui"
3 | name: "haptic_volume_slider"
4 | state: ENABLED
5 | permission: READ_ONLY
6 | }
7 |
--------------------------------------------------------------------------------
/release/aconfig/ap2a/com.android.systemui.flags/new_volume_panel_flag_values.textproto:
--------------------------------------------------------------------------------
1 | flag_value {
2 | package: "com.android.systemui"
3 | name: "new_volume_panel"
4 | state: ENABLED
5 | permission: READ_ONLY
6 | }
7 |
--------------------------------------------------------------------------------
/release/aconfig/ap2a/com.android.systemui.flags/notification_throttle_hun_flag_values.textproto:
--------------------------------------------------------------------------------
1 | flag_value {
2 | package: "com.android.systemui"
3 | name: "notification_throttle_hun"
4 | state: ENABLED
5 | permission: READ_ONLY
6 | }
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/Android.bp:
--------------------------------------------------------------------------------
1 | runtime_resource_overlay {
2 | name: "CustomPixelLauncherOverlay",
3 | theme: "CustomPixelLauncherOverlay",
4 | certificate: "platform",
5 | sdk_version: "current",
6 | product_specific: true
7 | }
8 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020356_themed_icon_glasswire__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020358_themed_icon_moon_reader__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020359_themed_icon_moon_reader_pro__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020362_themed_icon_adobe_express__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020363_themed_icon_bilibili_comics__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020364_themed_icon_bilibili_comics__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020365_themed_icon_bilibili_comics__2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020366_themed_icon_lime__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020367_themed_icon_lime__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020368_themed_icon_lime__2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020369_themed_icon_lime__3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02036a_themed_icon_lime__4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02036b_themed_icon_lime__5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02036c_themed_icon_lime__6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02036d_themed_icon_lime__7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02036e_themed_icon_webnovel__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02036f_themed_icon_webnovel__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02037a_themed_icon_fabulous__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02037b_themed_icon_fabulous__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02037c_themed_icon_fabulous__2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02037d_themed_icon_frolomuse__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02037e_themed_icon_habitnow__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02037f_themed_icon_here_wego_beta__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020380_themed_icon_here_wego_beta__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020381_themed_icon_mojo__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020382_themed_icon_mojo__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020383_themed_icon_mojo__2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020384_themed_icon_mojo__3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020385_themed_icon_photoroom__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020386_themed_icon_photoroom__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f0203a0_themed_icon_infinity_loop__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f0203c3_themed_icon_infinity_loop__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f0203c4_themed_icon_infinity_loop__2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f0203fb_themed_icon_acode__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f0203fc_themed_icon_acode__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f0203fd_themed_icon_alarmio__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f0203fe_themed_icon_alarmio__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f0203ff_themed_icon_alarmio__2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020400_themed_icon_cifra_club_academy__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020401_themed_icon_cifra_club_metronome__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020402_themed_icon_cifra_club_tuner__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020403_themed_icon_franco_agenda__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020404_themed_icon_franco_agenda__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020405_themed_icon_powerdirector__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020406_themed_icon_powerdirector__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020407_themed_icon_powerdirector__2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020408_themed_icon_powerdirector__3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020409_themed_icon_powerdirector__4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02043d_themed_icon_animeindo__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02043e_themed_icon_animeindo__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02043f_themed_icon_animeindo__2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02046c_themed_icon_nicegram__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02046d_themed_icon_nicegram__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02046e_themed_icon_sesame_search__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02046f_themed_icon_weather_radar__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020470_themed_icon_weather_radar_pro__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020471_themed_icon_weather_radar_pro__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020485_themed_icon_appmgr_pro_3__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020486_themed_icon_appmgr_pro_3__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020487_themed_icon_appmgr_pro_3__2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020488_themed_icon_appsfree__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f020489_themed_icon_appsfree__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02048a_themed_icon_aqua_mail__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02048b_themed_icon_aspect_pro__0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/res_0x7f02048c_themed_icon_aspect_pro__1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_99.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_99.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_VN.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_VN.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_abstruct.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_adguard.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_adobe_lightroom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_adobe_lightroom.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_aethersx2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_aida.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_aida.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_aimp.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_airtel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_airtel.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_airtel_xstream.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_alpha_backup_pro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_alpha_backup_pro.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_anytype.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_apex_legends.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_apk_editor_plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_apk_editor_plus.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_apkmirror.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_arena_of_valor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_arena_of_valor.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_asphalt_9.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_attapoll.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_automatag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_automatag.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_auxio.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_azerisiq_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_azerisiq_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_azerisiq_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_azerisiq_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_azerisiq_5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_azerisiq_6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_azerisiq_7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_azerisiq_8.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_background_eraser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_background_eraser.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_battle_prime.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_beats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_beats.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_better_internet_tiles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_betterbatterystats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_betterbatterystats.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_binance.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_brawlstars.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_brawlstars.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_bstasion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_bstasion.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_busuu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_busuu.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_calces.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_calces.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_calendar_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_calendar_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_call_recorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_call_recorder.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_cardapio_futebol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_cardapio_futebol.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_coc_coc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_coc_coc.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_cpu_z.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_cpu_z.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_darq.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_deviantart.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_device_info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_device_info.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_dolby.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_dolby.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_dolby_on.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_dolphin_emulator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_dolphin_emulator.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_eon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_eon.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_espn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_express_vpn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_exteragram.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_facebook.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_fairemail.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_files.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_fiverr.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_fk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_fk.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_fm_radio.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_food_panda.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_food_panda.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_fox_mmm.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_freefire2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_freefire2.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_gi_builder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_gi_builder.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_gmail.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_google.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_google_rewards.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_google_rewards.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_grab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_grab.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_graph_messenger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_graph_messenger.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_grimvalor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_grimvalor.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_hangouts.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_hearo.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_honista.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_honista.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_iflix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_iflix.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_immuni.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_immuni.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_instapaper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_iqiyi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_iqiyi.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_juice_ssh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_juice_ssh.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_jusan.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_kate_mobile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_kate_mobile.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_kayak.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_kernelmanager.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_kernelmanager.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_kwork.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_labirint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_labirint.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_mcdonalds.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_mediaflix_plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_mediaflix_plus.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_meet.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_mega.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_meo_remote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_meo_remote.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_microsoft_todo.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_minecraft.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_miui_player.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_miui_player.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_mixplorer.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_monect.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_moto.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_moto.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_moto_camera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_moto_camera.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_must.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_mx_player.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_my_jio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_my_jio.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_my_vodafone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_my_vodafone.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_nekkoto.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_nekkoto.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_nest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_netflix.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_newpipe.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_next.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_nimo_tv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_nimo_tv.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_node_video.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_notebloc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_notebloc.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_office.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_office.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_one_tap_cleaner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_one_tap_cleaner.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_onedrive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_onedrive.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_open_vpn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_open_vpn.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_osmand.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_ovo.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_patreon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_phonepe.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_phonograph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_phonograph.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_photo_editor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_photo_editor.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_picsart.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_pillars.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_pixellab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_pixellab.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_play_books.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_pocket_casts.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_poweramp.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_prequel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_prequel.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_proton_vpn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_protonmail_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_protonmail_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_ps_cc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_ps_cc.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_psn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_psn.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_pubg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_pubg.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_pulsar_plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_pulsar_plus.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_pulse_music.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_puretuber.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_puretuber.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_rboard_manager.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_rboard_manager.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_readwise.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_redtulum.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_retroarch.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_roblox.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_root_explorer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_root_explorer.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sai.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_samsung_internet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_samsung_internet.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sberbank_online.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sberbank_online.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_school_planner.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_screen_rec.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_screen_rec.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sd_maid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sd_maid.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_seasonhit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_seasonhit.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sesame_search.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sharik.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sharik.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_shiori.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_shiori.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_shopeepay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_shopeepay.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_shopsy_in.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_simple_gallery_pro.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_simplereboot.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_slides.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_snapmod.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_snapshat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_snapshat.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sockshttp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sockshttp.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sound_cloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sound_cloud.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_spark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_spark.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_spark_email.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_stickers2whatsapp.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_strava.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_substratum_lite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_substratum_lite.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_sweech.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tachiyomij2k.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tachiyomij2k.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tasker.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tasks.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_taxsee_driver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_taxsee_driver.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_teams.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_teams.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_telegraph_x_pro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_telegraph_x_pro.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_telegraphx.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_telegraphx_pro.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_termux.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_ticktick.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tidal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tiktok_lite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tiktok_lite.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tinder.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_titaniumbackup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_titaniumbackup.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tor_browser.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_trebleinfo.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_turbo_az.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_turbotel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_turbotel.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tv_time.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_tw.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_uit_dhcntt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_uit_dhcntt.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_venmo.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_via.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_via.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_viettelpay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_viettelpay.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_vk_mp3_mod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_vk_mp3_mod.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_vk_x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_vk_x.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_wallcanic_walls_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_wallcraft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_wallcraft.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_walldrobe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_walldrobe.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_wallp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_wallp.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_warp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_warp.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_wastickers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_weather.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_whatsapp_busines.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_whatsapp_busines.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_wikipedia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_wikipedia.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_xda.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_xiaomi_wear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_xiaomi_wear.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_xodo_docs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_xodo_docs.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_yahoomail.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_yandex.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_yandex.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_yandex_mail.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_yandex_metro.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_yandex_weather.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_yandex_weather.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_yasnac.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_yeelight.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_youtube_creator_studio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_youtube_creator_studio.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_youtube_tv.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_zalo_pay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_zalo_pay.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_zenly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_zenly.png
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_zepp.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_zepp_life.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_zona.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PixysOS/vendor_pixys/0d5c76f7b49f4098814a987188d92add903ab508/rro_overlays/CustomPixelLauncherOverlay/res/drawable/themed_icon_zona.png
--------------------------------------------------------------------------------
/rro_overlays/NetworkStackOverlay/Android.bp:
--------------------------------------------------------------------------------
1 | //
2 | // Copyright (C) 2022 The LineageOS Project
3 | // SPDX-License-Identifier: Apache-2.0
4 | //
5 |
6 | runtime_resource_overlay {
7 | name: "NetworkStackOverlay",
8 | product_specific: true,
9 | }
10 |
--------------------------------------------------------------------------------
/rro_overlays/NetworkStackOverlay/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
8 |
9 |
14 |
15 |
--------------------------------------------------------------------------------
/rro_overlays/NowPlayingOverlay/Android.bp:
--------------------------------------------------------------------------------
1 | runtime_resource_overlay {
2 | name: "NowPlayingOverlay",
3 | certificate: "platform",
4 | sdk_version: "current",
5 | product_specific: true
6 | }
--------------------------------------------------------------------------------
/rro_overlays/NowPlayingOverlay/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tools/clean_headers.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | set -eu
3 |
4 | export ANDROID_BUILD_TOP="$PWD"
5 |
6 | ./bionic/libc/kernel/tools/clean_header.py -u \
7 | "$1/usr/include/asm-generic/signal.h"
8 |
--------------------------------------------------------------------------------
/vars/aosp_target_release:
--------------------------------------------------------------------------------
1 | ap2a
2 |
--------------------------------------------------------------------------------
/vendorsetup.sh:
--------------------------------------------------------------------------------
1 | # Shebang is intentionally missing - do not run as a script
2 |
3 | # ABI compatibility checks fail for several reasons:
4 | # - The update to Clang 12 causes some changes, but no breakage has been
5 | # observed in practice.
6 | # - Switching to zlib-ng changes some internal structs, but not the public
7 | # API.
8 | #
9 | # We may fix these eventually by updating the ABI specifications, but it's
10 | # likely not worth the effort for us because of how many repos are affected.
11 | # We would need to fork a lot of extra repos (thus increasing maintenance
12 | # overhead) just to update the ABI specs.
13 | #
14 | # For now, just skip the ABI checks to fix build errors.
15 | export SKIP_ABI_CHECKS=true
16 |
--------------------------------------------------------------------------------