I have successfully compiled the aosp code for android 11, I tried to change the bootAnimation, but still I am seeing the legacy android bootAnimation on emulator after successfull build. Below are the changes I have done:
Created boot.zip file with store method as per all standards followed.
Kept that boot.zip in /system/media/boot.zip and /device/generic/x86_64
Change aosp_x86_64.mk file with below code: (As I choosen aosp_x86_64 target in lunch)
#Boot Animation
PRODUCT_COPY_FILES +=
device/generic/x86_64/boot.zip:system/media/boot.zip
PRODUCT_ARTIFACT_PATH_REQUIREMENT_ALLOWED_LIST += \
system/media/boot.zip \
After these changes when emulator boots legacy android boot animation shown, with fluctuation of white screen after that instead of mine boot.zip contents.
Please suggest me any solution regarding the same, Thanks in advance.