afb819d70c
Emulator (cuttlefish) is inherited and sets default sound properties, which conflict at build time with Lineage defaults, breaking `car_gsi` targets. Change-Id: I3fb099a77394f8eb4613445c2410d7f568b8a3f5
96 lines
2.4 KiB
Makefile
96 lines
2.4 KiB
Makefile
# Inherit common mobile Lineage stuff
|
|
$(call inherit-product, vendor/lineage/config/common.mk)
|
|
|
|
# Include AOSP audio files
|
|
include vendor/lineage/config/aosp_audio.mk
|
|
|
|
# Include Lineage audio files
|
|
include vendor/lineage/config/lineage_audio.mk
|
|
|
|
# Default notification/alarm sounds
|
|
PRODUCT_PRODUCT_PROPERTIES += \
|
|
ro.config.notification_sound=Argon.ogg \
|
|
ro.config.alarm_alert=Hassium.ogg
|
|
|
|
# Apps
|
|
PRODUCT_PACKAGES += \
|
|
Backgrounds
|
|
|
|
ifeq ($(PRODUCT_TYPE), go)
|
|
PRODUCT_PACKAGES += \
|
|
TrebuchetQuickStepGo
|
|
|
|
PRODUCT_DEXPREOPT_SPEED_APPS += \
|
|
TrebuchetQuickStepGo
|
|
else
|
|
PRODUCT_PACKAGES += \
|
|
TrebuchetQuickStep
|
|
|
|
PRODUCT_DEXPREOPT_SPEED_APPS += \
|
|
TrebuchetQuickStep
|
|
endif
|
|
|
|
PRODUCT_PACKAGES += \
|
|
TrebuchetOverlay
|
|
|
|
# Charger
|
|
PRODUCT_PACKAGES += \
|
|
charger_res_images
|
|
|
|
ifneq ($(WITH_LINEAGE_CHARGER),false)
|
|
PRODUCT_PACKAGES += \
|
|
lineage_charger_animation \
|
|
lineage_charger_animation_vendor
|
|
endif
|
|
|
|
# Customizations
|
|
PRODUCT_PACKAGES += \
|
|
IconPackCircularAndroidOverlay \
|
|
IconPackCircularLauncherOverlay \
|
|
IconPackCircularSettingsOverlay \
|
|
IconPackCircularSystemUIOverlay \
|
|
IconPackFilledAndroidOverlay \
|
|
IconPackFilledLauncherOverlay \
|
|
IconPackFilledSettingsOverlay \
|
|
IconPackFilledSystemUIOverlay \
|
|
IconPackKaiAndroidOverlay \
|
|
IconPackKaiLauncherOverlay \
|
|
IconPackKaiSettingsOverlay \
|
|
IconPackKaiSystemUIOverlay \
|
|
IconPackRoundedAndroidOverlay \
|
|
IconPackRoundedLauncherOverlay \
|
|
IconPackRoundedSettingsOverlay \
|
|
IconPackRoundedSystemUIOverlay \
|
|
IconPackSamAndroidOverlay \
|
|
IconPackSamLauncherOverlay \
|
|
IconPackSamSettingsOverlay \
|
|
IconPackSamSystemUIOverlay \
|
|
IconPackVictorAndroidOverlay \
|
|
IconPackVictorLauncherOverlay \
|
|
IconPackVictorSettingsOverlay \
|
|
IconPackVictorSystemUIOverlay \
|
|
IconShapePebbleOverlay \
|
|
IconShapeRoundedRectOverlay \
|
|
IconShapeSquareOverlay \
|
|
IconShapeSquircleOverlay \
|
|
IconShapeTaperedRectOverlay \
|
|
IconShapeTeardropOverlay \
|
|
IconShapeVesselOverlay \
|
|
LineageNavigationBarNoHint \
|
|
NavigationBarMode2ButtonOverlay
|
|
|
|
# Media
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
media.recorder.show_manufacturer_and_model=true
|
|
|
|
# SystemUI plugins
|
|
PRODUCT_PACKAGES += \
|
|
QuickAccessWallet
|
|
|
|
# Themes
|
|
PRODUCT_PACKAGES += \
|
|
LineageBlackTheme \
|
|
ThemePicker \
|
|
ThemesStub
|
|
|
|
PRODUCT_PACKAGE_OVERLAYS += vendor/lineage/overlay/mobile
|