a8945756d9
* Default for tablet is horizontal-1280x800 * Default for phone is vertical-480x800 * Override using TARGET_BOOTANIMATION_NAME in cm.mk (must come before inherit of CM base product. Change-Id: Ibd01236847b4f1de0cfd4246c8bd93b1f047005a
23 lines
599 B
Makefile
23 lines
599 B
Makefile
# Inherit common CM stuff
|
|
$(call inherit-product, vendor/cm/config/common.mk)
|
|
|
|
# Bring in all audio files
|
|
include frameworks/base/data/sounds/AllAudio.mk
|
|
|
|
# Include CM audio files
|
|
include vendor/cm/config/cm_audio.mk
|
|
|
|
# Default ringtone
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
ro.config.ringtone=CyanTone.ogg \
|
|
ro.config.notification_sound=CyanMessage.ogg \
|
|
ro.config.alarm_alert=CyanAlarm.ogg
|
|
|
|
PRODUCT_PACKAGES += \
|
|
Mms
|
|
|
|
ifeq ($(TARGET_BOOTANIMATION_NAME),)
|
|
PRODUCT_COPY_FILES += \
|
|
vendor/cm/prebuilt/common/bootanimation/vertical-480x800.zip:system/media/bootanimation.zip
|
|
endif
|