Re: [android-porting] Disabling Android Boot Animation in Oreo and after.

2018-10-19 Thread Satish Patel
On Thu, Oct 18, 2018 at 9:36 PM parthibx24 wrote: > Did you just added the line "debug.sf.nobootanimation=1" in your device.mk > file? > *PRODUCT_PROPERTY_OVERRIDES* += \ debug.sf.nobootanimation=1 > > -- > -- > unsubscribe: android-porting+unsubscr...@googlegroups.com > website:

Re: [android-porting] Disabling Android Boot Animation in Oreo and after.

2018-10-18 Thread Satish Patel
Hi, Another way of achieving this is - Add below line to BoardConfig.mk TARGET_SYSTEM_PROP := $(LOCAL_PATH)/system.prop and add system.prop file to device// with debug.sf.nobootanimation=1 or if you would like to include inside device.mk then use PRODUCT_PROPERTY_OVERRIDES += \