Advertisement
metalx1000

Android Custom Boot Animation [ Nexus 5X ]

Oct 12th, 2019
835
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.63 KB | None | 0 0
  1. #Create a Custom Boot Animation for Android [Nexus 5X]
  2. #https://android.googlesource.com/platform/frameworks/base/+/master/cmds/bootanimation/FORMAT.md
  3. #https://forum.xda-developers.com/showthread.php?t=2360825
  4.  
  5. mkdir boot
  6. cd boot
  7. echo "700 250 15" > desc.txt
  8. echo "c 0 0 part0" >> desc.txt
  9.  
  10. mkdir part0
  11. #place images in part0 folder
  12. zip -0qry ../bootanimation.zip *
  13.  
  14. adb reboot bootloader
  15. fastboot boot twrp.img
  16. adb shell mount /dev/block/bootdevice/by-name/system /system
  17. #you might want to backup the bootanimation.zip that is on the phone
  18. adb push ../bootanimation.zip /system/media/
  19. adb shell umount /system
  20. adb reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement