I am building a version of Android Nougat from the AOSP source tree. I have a custom splash screen image which I am flashing with fastboot(code below) and I'd like to include it in the AOSP build if possible.
fastboot erase splash
fastboot flash splash ./splash.img
I created the splash image myself and I've flashed it with fastboot without issue however I want to include it in my AOSP build. I've done some searching and haven't been able to find any information on it, the closest I could find was information on changing the PPM image in the kernel(link below).
If it is necessary I may be able to make that work but if I could just use my existing splash.img file that would be ideal. Also if there is a way to include it in a OTA update but not in the build that will also work for my application.
Thanks,