"Colors" Boot animation, simple and clean. - HTC EVO 3D

This is the first time I've "developed" anything (if you can call it that) so be easy on me
I made this simple boot animation, it's colorful, clutter free, and crisp.
Preview: The color flame wobbles around, the evo3d text flies in and the wobbling continues
Download: http://www.megaupload.com/?d=O55PBS9Y
Install: place zipped file in /system/customize/resource
You can use adb or root explorer to do this.

Followed the directions but I"m stuck on my old animation. Not sure what's wrong but I would really like to see this one running!

did you use root explorer or adb?

root explorer

Renamed to bootanimation.zip and dropped it in data/local. Works great!

^ works just fine too.
You can also copy over the original (system/customize/resource/Sprint_bootanimaion.zip) if you like.
Good job on the anim. I need to share mine...i made my first one Monday. Its a portion from the 1986 Transformer movie where megatron is being turned into galvatron. I'm a super nerd so may as well nerd up my phone. XD
Edit...not sure on permissoin modification when using it in data/local but you may have to set permissions to
Owner: R W
Group: R
Others: R
to have it work if you copy over the factory. I used the default animations permissions i listed above and never had probs. Didnt see a reason or need to try with unmodified permissions. Just a though =-)

mhmobile said:
Renamed to bootanimation.zip and dropped it in data/local. Works great!
Click to expand...
Click to collapse
Also, you had this work without modifying the default XML to look to that path? Just wanting to make sure i'm understanding because factory default xml explicitly points to the customize folder Sprint_bootanimation.zip.
Thanks!

nice boot animation!

if you're going through adb shell the permissions are 644
so chmod 644 nameoffile

Related

[Q] Boot animation without AT&T logo?

Does anyone have a working bootanimation.zip without the AT&T logo? I tried editing the original one but I ended up with a blank boot animation screen.
you should be able to search the forum for whatever boot animation you want. Granted they won't be the proper resolution if you pick one with black edges you will be fine. I was using one on a previous flash just fine.
I'll try to find the thread where I found mine
Edit: found it at this thread. http://forum.xda-developers.com/showthread.php?t=985251
sweet, so exisiting bootanimations work, I can use my old one again haha.
kmiller8 said:
you should be able to search the forum for whatever boot animation you want. Granted they won't be the proper resolution if you pick one with black edges you will be fine. I was using one on a previous flash just fine.
I'll try to find the thread where I found mine
Edit: found it at this thread. http://forum.xda-developers.com/showthread.php?t=985251
Click to expand...
Click to collapse
I tried those animations and they worked fine, but I still wish I could keep the original animation.
Boot Animations, while can be tricky and a headache, are customizable if you can adjust the image sizes, etc.
For example, the Motorola Atrix can use up to 540x960 for the resolution. You can also add custom sounds at load by saving an OGG audio file to /system/media (same location as the bootanimation.zip) and adding it accordingly to the desc.txt file. Below is an example.
Code:
540 960 1
p 1 10 part0
s autodestruct.ogg
p 0 0 part1
The first line is the resolution and the frames per second.
Code:
"540 960" Resolution "1" Frames Per Second (each individual image)
The second line defines a Part. For example, the first animation you want to play. So far for me, this is the animation AFTER the Dual Core logo that plays when I've made mine.
Code:
"p" Depicts this is a Part "1" Repeat this many times (0 is infinite) "10" is the delay in frames before the next Part "part0" is the directory within the zip to load this part from
So far easy right? The next line, is for the audio file. If the OGG has a loop point, the audio will loop until the Part is over that it plays within.
Code:
"s" Depicts a sound "autodestruct.ogg" The filename to load from /system/media
A few more examples of loading parts............
To load a Part that is a single image, that loops till boot is done, use this
Code:
p 0 0 "directory_name_here"
I'll try to post some example bootanimation.zip files with explanations if I get time. I've only made a couple so far for my company out of boredom.
kmiller8 said:
I was using one on a previous flash just fine.
Click to expand...
Click to collapse
So this doesn't break anything? Will I be able to update my phone when an update is out, without having to restore the original bootanimation.zip?
txtsd said:
So this doesn't break anything? Will I be able to update my phone when an update is out, without having to restore the original bootanimation.zip?
Click to expand...
Click to collapse
I recommend using your file explorer to rename the original bootanimation.zip on your phone to something like bootanimation_original.zip then put in your custom if you have any worries.
That way, if you go to update just rename custom to bootanimation_custom.zip and restore the original.
Personally, I do not know if the boot animation file will affect updates, but that is a failsafe for you just in case.
ownedbycurry said:
I tried those animations and they worked fine, but I still wish I could keep the original animation.
Click to expand...
Click to collapse
Ohh, so what you want is the default bootanimation without the ATT part!
I've personally never worked with bootanimations before, but using MrSER's guide above, i'll try to do that for you.
EDIT: yea... I only get the blackscreen too, really weird...
EDIT 2: figured it out. if you're using WinRAR, when you go to make a .zip, choose "store" instead of "normal" compression, and it should work just fine. I have attached the Default bootanimation.zip without the ATT part
kmiller8 said:
Ohh, so what you want is the default bootanimation without the ATT part!
I've personally never worked with bootanimations before, but using MrSER's guide above, i'll try to do that for you.
EDIT: yea... I only get the blackscreen too, really weird...
EDIT 2: figured it out. if you're using WinRAR, when you go to make a .zip, choose "store" instead of "normal" compression, and it should work just fine. I have attached the Default bootanimation.zip without the ATT part
Click to expand...
Click to collapse
Thank you so much!!
kmiller8 said:
EDIT 2: figured it out. if you're using WinRAR, when you go to make a .zip, choose "store" instead of "normal" compression, and it should work just fine. I have attached the Default bootanimation.zip without the ATT part
Click to expand...
Click to collapse
My bad mate, forgot to mention that. I make mine with Winzip 15 Pro and set it to No Compression (from my experience, no compression is a requirement).
I may end up doing a tutorial on all this on my blog. If I do, I'll post a copy here and link as well (I like screenshots on my blog, lol).
MrSER said:
My bad mate, forgot to mention that. I make mine with Winzip 15 Pro and set it to No Compression (from my experience, no compression is a requirement).
I may end up doing a tutorial on all this on my blog. If I do, I'll post a copy here and link as well (I like screenshots on my blog, lol).
Click to expand...
Click to collapse
Yea i ended up googling and it showed that if the .zip is compressed it will just show a blank screen.
Definitely do a tut, I really wanna start making some Atrix boot animations
kmiller8 said:
Ohh, so what you want is the default bootanimation without the ATT part!
I've personally never worked with bootanimations before, but using MrSER's guide above, i'll try to do that for you.
EDIT: yea... I only get the blackscreen too, really weird...
EDIT 2: figured it out. if you're using WinRAR, when you go to make a .zip, choose "store" instead of "normal" compression, and it should work just fine. I have attached the Default bootanimation.zip without the ATT part
Click to expand...
Click to collapse
thanks for the bootanimation.zip, i did chmod 644 it before cp to /system/media to match the perms on the original bootanimation.zip, but i did a reboot and it worked fine. it's nice not having the att logo during boot, and having att removed from the notification bar with the ginerblur mod too. feels good man!
What folder do you put the animation in?
PixoNova said:
What folder do you put the animation in?
Click to expand...
Click to collapse
In the system/media folder.
I know this is a really newb question but I am a newb when it comes to android... I've owned my Atrix for about a week. Anyway, how do I replace this file and where do I find it?
mpalatsi said:
I know this is a really newb question but I am a newb when it comes to android... I've owned my Atrix for about a week. Anyway, how do I replace this file and where do I find it?
Click to expand...
Click to collapse
Just find a boot animation that you like, download the zip file, rename it to bootanimation.zip and then go into your system/media folder and change the name of the current bootanimation to anything you want like bootanimationold.zip. Then put the new zip file in the system/media folder and there you go. You do not need to move the old boot animation file as long as you change the name.
of course, the method I'm describing is relevant if you have rooted your phone and you have something like Root Explorer, otherwise you will need to use adb, but still you need root.
live4nyy said:
Just find a boot animation that you like, download the zip file, rename it to bootanimation.zip and then go into your system/media folder and change the name of the current bootanimation to anything you want like bootanimationold.zip. Then put the new zip file in the system/media folder and there you go. You do not need to move the old boot animation file as long as you change the name.
of course, the method I'm describing is relevant if you have rooted your phone and you have something like Root Explorer, otherwise you will need to use adb, but still you need root.
Click to expand...
Click to collapse
Thank you, worked like a champ... Is there an explorer I can use on my PC while my phone is connected? I attempted to use droid explorer but I can't access any of the folders.
mpalatsi said:
Thank you, worked like a champ... Is there an explorer I can use on my PC while my phone is connected? I attempted to use droid explorer but I can't access any of the folders.
Click to expand...
Click to collapse
Sorry, wouldn't know about that, I always use Explorer or adb.
kmiller8 said:
Ohh, so what you want is the default bootanimation without the ATT part!
I've personally never worked with bootanimations before, but using MrSER's guide above, i'll try to do that for you.
EDIT: yea... I only get the blackscreen too, really weird...
EDIT 2: figured it out. if you're using WinRAR, when you go to make a .zip, choose "store" instead of "normal" compression, and it should work just fine. I have attached the Default bootanimation.zip without the ATT part
Click to expand...
Click to collapse
Thank you so much man I really wanted to remove this AT&T animation
im having a similiar problem on my rooted atrix. I tried to change my bootanim and just gives me a black screen, so i tried to change it back to the orignal and nothing. I checked if the zip was compressed and it isnt. i dont know what i did wrong, i didnt touch anything but the zip

8/10/11[Bootanimation] *Updated/Revised* VoltronForce: Black Lion Fly-In W/Sound

This is my second Bootanimation sorry if the Thread is a little disorganized lol ...*Root Explorer or another app like it is needed* <New-Bootanimation>http://www.4shared.com/file/nOXSoMWy/BlackLion-bootanimation.html
<Instructions for sound CM7 & AOSP Roms> How to add sound:
Originally Posted by hockeyfamily737
0. It's recommended to do a nandroid backup first!
1. Download the "bootsnd.sh" file and put it on the root of your sd card.
2. Download the "android_audio.mp3" file and using root explorer copy it to /system/media
3. Open Terminal Emulator and type the following commands using the stock keyboard. Press enter after each line:
su
cd /sdcard
sh bootsnd.sh
reboot
4. As the device boots up you will be greeted by the "Dolby THX" test sound heard before movies. You are now free to replace the android_audio.mp3 file in /system/media with any .mp3 file you like as long as you rename it to "android_audio.mp3"
5. DO NOT ATTEMPT TO OUTSMART THESE DIRECTIONS OR YOU WILL BE RESTORING YOUR NANDROID BACKUP!
<link for android_audio.mp3>http://www.megaupload.com/?d=AN7XNY03
<link for bootsnd.sh>http://www.4shared.com/file/4eJO34dd/bootsnd.html
<For Miui> Third Step Change android_audio.mp3 to bootaudio.mp3 <link for Voltron audio> http://www.4shared.com/audio/I3GgVylb/Voltron_Force_2011_Opening__Le.html [Always Rename BootAnimations to bootanimation.zip] [Sense based Roms all bootanimations go to system/customize/resource] All Thanks to despotovski01 for his excellent Bootanimation/Audio Tutorials ​
Miui> make sure you select Voltron bootanimation in Theme Manager or just delete all downloaded bootanimations and the Voltron one will be your Default.*For audio just change mp3 to bootaudio.mp3, set in system/media and change permissions to rw-r-r-
Another Reserve
For MIUI Roms just another method...
Animation:
Download the boot animation file and rename it bootanimation.zip and place it into the system/media folder. Go to theme manager and under the "boot animation" tab select "default." No need to change permissions.
Sound:
To hear the boot sound you have to convert the file to ogg format then place it into the system/media/audio/ringtones folder. Go to theme manager and choose the file under the "boot audio" tab. You can name it anything you want. No need to change permissions. Ogg converter here.
I went ahead and uploaded the ogg file here for you guys.
@vqt This method worked for me...can you post a tutorial for ogg format, plz and thankyou
cool animation. still a little choppy and the pic is a little distorted but good start so far. hope you can get it perfect
Thanks for the tutorial..yeah the slowness on boot bothers me but I've been reading up on thatand there's nothing I can do on my end its due to caching
kirkcody said:
Thanks for the tutorial..yeah the slowness on boot bothers me but I've been reading up on thatand there's nothing I can do on my end its due to caching
Click to expand...
Click to collapse
i don't know anything about making a boot animation but does it have to do with the frames/second. Usually i unzip a boot animation and look at the png's, it is like a flip cartoon book so i don't know if you need more frames in there to make it more smooth.
Yup its like a flipbook and the more frames taken the bigger the zip...I've been trying to solve this issue. I use powerarchiver to make the zips....but it really doesn't compress them much I think this animation alone was 235 still frames here's the tutorial I used incase anyone wants to learn http://forum.xda-developers.com/showthread.php?t=1096068
o yeah bro! pretty sweet
ftw.. (fyi official cool guy setup!)
ROM:: OFFICIAL MIUI.us 1.8.5
KERNEL:: 2.6.35.13 demonSPEED INSANITY v5
Thanks Man
Pulled download link revising and resizing sorry :d:d:d:d:d:d:d:d:d:d
what's the boot animation of? Screen shots? please and thank you.
this is nice good job!
@Ascarface23 Thanks man, working on a full Voltron forming boot now, but having trouble with sizing @abctilly it's the New Voltron Force Black lion running and then coming at the screen Im new to this man give me a little time to learn how to post an animated Gif and ill try to post one or make a video...I guess it is sorta silly of me to think someone would try this blindly(Thanks to all who have )

[Bootanimation] LSU Football

I have created a bootanimation of this video by LSU from the 1:01 minute mark until the 1:16 minute mark with a few changes made in there. It works as it should on the computer with this bootanimation previewer.
If anyone can try it out and let me know if it works for them that would be awesome. Or If anyone can take a look and tell me if I did something wrong that would be great too.
The file is roughly about 11MB
Thanks!
Also make sure you do nandroid just in case. Although if it doesn't work you just will see a blank screen when it boots up.
Installation should work as follows:
Root Explorer method:
1. Rename your boot animation to bootanimation
2. Put it on your SD card
3. Open Root Explorer and copy bootanimation.zip to /system/media. This will replace the existing boot animation
4. Reboot your phone
ADB method:
1. Make sure you have downloaded android sdk
2. Put android sdk in C:\
3. Set the directory of command prompt to C:\android-sdk-windows\platform-tools. Click here for a video tutorial.
4. Rename your boot animation to bootanimation and put it in C:\android-sdk-windows\platform-tools
5. Open cmd
6. Type in order:
-adb remount
-adb push bootanimation.zip /system/media/bootanimation.zip
-adb reboot
ok you had a few problems.
1) you had the desc files named Part 1 and it should be Part1(no space)=fixed
2)you needed to remove the boarder from the images=fixed
3)i resized the images and turned the last 3 in jpegs and in one copy turned all images 180 degrees(landscape) which in turn made the whole file smaller(your 10.92mb --mine 6.58mb
4)i made them flashable and added the LSU fight song(remix)
not trying to take over your bootanimations just easier to fix and then let you see the changes.
I greatly appreciate it. Very new at it, and just trying to see what I can do. Thanks again!
no problem.
just rip one open to see the changes i made to them and you can use one as a template to help on your next one.
This is awesome guys thanks! I live in baton rouge and I've been looking for anything with Lsu.
Sent from my PG86100 using xda premium
kcb2627 said:
This is awesome guys thanks! I live in baton rouge and I've been looking for anything with Lsu.
Sent from my PG86100 using xda premium
Click to expand...
Click to collapse
cool, i'm sure the op will be glad to hear you like it. give him a little tap on the thanks button
Is there any way to port this to the Galaxy Nexus. I tried the zip but it did not work. If it matters I'm running AOKP 20.
Never mind. Figured out myself. Just used working zip and put your boot animation in it.
I'll see what I can do. I'm sure it's just a resizing issue along with the proper paths. The zip is for the sense paths not AOSP paths.
If not I'm sure dased can assist.

Borrowing bootanimation.zips from the Galaxy Nexus..

So I wanted an appropriately shiny boot animation for my newly Fresh-rommed Evo, and I found this page:
http://droidmodderx.com/galaxynexus/how-to-install-100s-of-bootanimations-for-your-galaxy-nexus (Full of previews, will bog your computer down!)
That phone has the same screen resolution, 720 x 1280, so most of these seem to work for me. I didn't bother with flashing them from recovery, as the bootanimation.zip file can be easily extracted and placed in /system/media using Root Explorer. Your mileage may vary. I am using Spyro at the moment, nice ICS-ish colors.
SOME of them did not work, or rather they worked, with intermittent flashes of a white screen..I am not sure but suspect it's something to do with frame rate? Anyone?
Updates.................
Directories: Your individual rom maker may have put the animation package in one of several locations. These include:
/system/media
/system/customize/resource
/data/local
I have seen still other locations used on my old EVO 4G (and new roms are coming out all the time), so if you just cannot find anything, try doing a search for 'animation.zip' from the root level, with your file browser.
Filenames: Your rom maker may have used one of several slightly different name variants for the bootanimation.zip package; it really depends on what they started out with as a base. Sense-based roms, for example, will tend to change things up. You might have an 'HTC_bootup_one.zip' instead of a 'bootanimation.zip'. You can't go wrong by naming your new package the exact same thing, and putting it in the same folder. (BUT you also have the option of deleting all oddly named animation packages you find in odd locations on your phone, and just using the standard 'bootanimation.zip' and putting it in /system/media. This is the Android standard location, and it will almost certainly look there if it can't find it elsewhere. Note that if you do this and fail to find and delete the other package, it will still use the other instead.)
Permissions: You shouldn't need to change permissions on the package file, at least that's never been an issue for me. If you are having problems there, I'd suggest trying the standard 644 setting one usually finds in the system folder, or RW-R--R--. (As long as the file is Readable by the owner, I would think that it would work.)
I can't delete or change these files! You may be using ES File Explorer, which is not the easiest app to drive. It requires root permission being set in its settings, and if you don't do that, hilarity can ensue. (I again recommend Root Explorer by Speed Software, which is not free but gives the most straightforward file browsing experience you can imagine, a big plus if you're new to rummaging around in your phone's innards!)
You absolutely cannot play with this stuff without root, so don't even try, okay? And when you want to change anything in a root-level folder, you will need to remember to set that folder RW (read/write), and then remember to set it back to RO (read only) when you are done, yes? You smart folks already know these things, I just want to make this post as complete as possible.
But I need MORE animations! I found the link above by googling 'bootanimation.zip 720x1280' so have at it!
If you've any more questions, please ask..
Worked great for me, thanks!
-Mike
What about activating sound?
Purest said:
What about activating sound?
Click to expand...
Click to collapse
Well, if you want sound and the animation doesn't include it, it is possible to add any fairly short sound in .ogg format to the same /system/media folder, and call it with an edit to the bootanimation.zip file. (You'll need to call it from the desc.txt file inside the zip.)
Say you have a sound picked out and converted, and it's called evoboot.ogg. Your desc.txt will need to include the line:
s evoboot.ogg
There are some tutorials on building these animations from scratch, if you look around on here, like http://forum.xda-developers.com/showthread.php?t=1420991
Sent from my EVO using xda premium
You can also use this guide
http://forum.xda-developers.com/showthread.php?t=1321360
Sent From My Sweet Ass EVO LTE
I have been wanting to change Boot Animations - and I have done it on other phones and ROMS I have used - but I am a little confused - I went to my system/media folder and there isn't a boot anmiation file in that folder now - The Rom I am using (Charmeleon or something like that) has a boot animation of some kind - but it must be in a different folder - any suggestions?
mocsab said:
I have been wanting to change Boot Animations - and I have done it on other phones and ROMS I have used - but I am a little confused - I went to my system/media folder and there isn't a boot anmiation file in that folder now - The Rom I am using (Charmeleon or something like that) has a boot animation of some kind - but it must be in a different folder - any suggestions?
Click to expand...
Click to collapse
I use the same rom. The file is in system/customize/resource. You have to rename the bootanimation to hTC_bootup_one.zip. Also don't forget to make the permissions match.
I am very much looking forward to trying some of these out tomorrow when I get off of work!! I've read through the two guides on making your own and implementing your own sound files. These sound very exciting as well, but I feel they are over my head still. I am going to pace myself a bit and wait to try them.. but soon I will try.. But for now there are just so many to choose from.
ducky1131 said:
I use the same rom. The file is in system/customize/resource. You have to rename the bootanimation to hTC_bootup_one.zip. Also don't forget to make the permissions match.
Click to expand...
Click to collapse
Could you expand on how to make permissions match. I found two files in that directory that has me confused. One is hTC_bootup.zip and one is SPC_bootanimation.zip. Which do I change? Also it seems that I can't delete the spc one to put the zip I downloaded in its place. Am I making this harder than it really is?
Sent from my htc_jewel using xda premium
MRBULLRED said:
Could you expand on how to make permissions match. I found two files in that directory that has me confused. One is hTC_bootup.zip and one is SPC_bootanimation.zip. Which do I change? Also it seems that I can't delete the spc one to put the zip I downloaded in its place. Am I making this harder than it really is?
Sent from my htc_jewel using xda premium
Click to expand...
Click to collapse
Got it. Thanks.
Sent from my htc_jewel using xda premium
MRBULLRED said:
Got it. Thanks.
Sent from my htc_jewel using xda premium
Click to expand...
Click to collapse
Got what? Can anyone elaborate?
I'm wanting to know this too, because I tried some other boot animations from an HTC ONE series phone, and it didn't work.
These were mentioned here on the boards earlier, and I tried to use a flashable "beats" BA, but it did not work. Also tried the "suckerpunch" BA manually by going into system/customize/resource, and THAT did not work either.
A guide would be greatly appreciated, and a sticky should be made for boot animations, as well as splash screens.
mcwups1 said:
Got what? Can anyone elaborate?
I'm wanting to know this too, because I tried some other boot animations from an HTC ONE series phone, and it didn't work.
These were mentioned here on the boards earlier, and I tried to use a flashable "beats" BA, but it did not work. Also tried the "suckerpunch" BA manually by going into system/customize/resource, and THAT did not work either.
A guide would be greatly appreciated, and a sticky should be made for boot animations, as well as splash screens.
Click to expand...
Click to collapse
Where did those animations come from that you mentioned? Cause i doubt the names are correct for this phone
Sent From My Sweet Ass EVO LTE
Okay. First go download the boot animation that you like from:
http://tinyurl.com/co9ulfv Not sure if you can post the full links here but at least this one is clickable?
(One of the bootanimations I clicked on was bogus so use your brain. The next three brought me right to the file download without visiting a website first.) Then go into ES file explorer and go into settings and make it writable by placing a check next to Root Explorer and Mount File System. Next I found the downloaded file and clicked into it and clicked Data then local and found the actual boot animation zip and copied it to the root of the SD card so it would be easy to find. After that I renamed that file to SPC_bootanimation.zip. Now you go into system/customize/resource and delete the file labeled as SPC_bootanimation.(I saved a copy first and this must be done before you copy the file you're pasting in there. Don't know why but once I copied I couldn't delete the stock _bootanimation.zip file). Then I went back to the sd card and copied the renamed SPC_bootanimation file and pasted it in the resource directory where i deleted the original. Bingo, reboot and you will see your new animation. I did all of these steps in ES File Explorer.
Your folder may be in system/media depending on which rom you're using. I am on stock/ ultra smooth lscape Rosie by flex360.
P.S. the way I was messing up first was I was trying to rename the file I downloaded to spc_bootanimation not the bootanimation.zip file located inside of that original download in the Data/Local directory.
Also, I'm not an English major by any means, so if something is spelled incorrectly or the proper grammar wasn't used, sorry. I'm not looking for a lesson just looking to help out. heck if it's bad enough, just click on the donation tab next to my name and maybe I can afford some classes.
I'm using the bluplazmall boot animation. Looks really good.
http://gunnermike53.com/Themers/jaekar99/Galaxy-Nexus-403/BluPlazmaII-403-Nex.zip
I updated my post, does it answer your questions? If not, or if you would like to correct a point, let me know.
dased14 said:
Where did those animations come from that you mentioned? Cause i doubt the names are correct for this phone
Sent From My Sweet Ass EVO LTE
Click to expand...
Click to collapse
they are correct when your running a one x rom port. thats what hes referring to joelz rom.
thanks, I can't stand the stock animation and haven't found much so far for the EVO LTE. Lots of stuff out there for the G Nex!!
what you looking for?
Ok maybe I'm just retarded, or just a little rusty on my adb. Tried this in RootExplorer, didn't work. Tried it using adb, didn't work either. It's saying /system is mounted as Read-Only. I tried an app called SUFBS and made sure that it was mounted as Read-Write, and it failed. In adb, I'm navigating to the correct folder, "adb devices" to make sure it's showing up, "adb remount" which is succeeding, then "adb push SPC_bootanimation.zip /system/customize/resource/" and it's giving the Read-only error. I'm running ViperRom 1.2.1 and am S-Off. Anybody got any pointers? Oh and btw, I did extract the bootanimation.zip from the .zip file I downloaded from the website in the op.
I am curious what root explorer is saying when in that directory..does the button at the top allow you to set it RW?
It's not showing an icon for rw or anything. May be a different, crappier version? It's the one that came with ViperROM. That SUFBS app is very similar, and I chose rw in it, found the bootanimation.zip file on my sd card, moved it to /system/customize/resource, and it showed it moving the file, but it never showed up.
Edit: It's RootBrowser. Nonetheless, SUFBS is essentially the same thing. I'm curious though why I can mount as read-write in that app, yet adb says its read-only.

[Bootanimation] CM10 Bootanimation

CM10 Bootanimation
Just downloaded the latest nightly, has the new bootanimation that fits perfectly on our device, thought I'd share it for anyone that wants it but doesn't want to download the whole ROM or update for some reason or aren't even running CM10!
Download: http://www.mediafire.com/?2o06igj8pcc0wzk
Note: This is not a flashable, push/pull/punch/kick it to system/media.​
theexel said:
CM10 Bootanimation
Just downloaded the latest nightly, has the new bootanimation that fits perfectly on our device, thought I'd share it for anyone that wants it but doesn't want to download the whole ROM or update for some reason or aren't even running CM10!
Download: http://www.mediafire.com/?2o06igj8pcc0wzk
Note: This is not a flashable, push/pull/punch/kick it to system/media.​
Click to expand...
Click to collapse
Dude!! THATS SICK!! also diggin the background beat. what's it called?
Just an FYI. Instead of pushing to /system/media you can push it to /data/local and set permissions correctly and viola!! you have your CM10 (or any BA) to test out whether or not you like it. This leaves your original Bootanimation safe and unadulterated in /system/media.
Don't like the CM10 one and want to put a new one on your phone. Just delete the one in /data/local and either replace it with a new one or leave empty, as your original in /system/media will still be where it should be.
setting permissions
May I ask . . .
How do I correctly set permissions??
Thanks!
Deleted
CM10 boot animation
Woody said:
Just an FYI. Instead of pushing to /system/media you can push it to /data/local and set permissions correctly and viola!! you have your CM10 (or any BA) to test out whether or not you like it. This leaves your original Bootanimation safe and unadulterated in /system/media.
Don't like the CM10 one and want to put a new one on your phone. Just delete the one in /data/local and either replace it with a new one or leave empty, as your original in /system/media will still be where it should be.
Click to expand...
Click to collapse
This is a great animation The slight problem I have is that when it is installed (as stated) on my Htc dhd the phone does not automatically reboot.
Pls let me know what the correct permissions are, in case that might be the problem.
I'm running CM V11-20140619-Unofficial-ace
4EXTRecovery touch v1.0.0.6 rc3
and update the rom quite often.
If I use CMRecovery there are no problems but I prefer to use 4EXT. Any help would be appreciated.
Zawisza said:
This is a great animation The slight problem I have is that when it is installed (as stated) on my Htc dhd the phone does not automatically reboot.
Pls let me know what the correct permissions are, in case that might be the problem.
I'm running CM V11-20140619-Unofficial-ace
4EXTRecovery touch v1.0.0.6 rc3
and update the rom quite often.
If I use CMRecovery there are no problems but I prefer to use 4EXT. Any help would be appreciated.
Click to expand...
Click to collapse
They are 644.
Just open something like Root Explorer and give Owner, Group, Other all Read permissions and then just Owner: Write and Execute permissions. Basically the whole first column down and the whole top row across need to be checked.
One thing that you might want to make sure you are doing is to extract the zip down and find the bootanimation.zip. That is the one that you want to push to /data/local and not the entire downloaded zip file. If you push it to /data/local, you should not need to flash anything in recovery.
Woody said:
They are 644.
Just open something like Root Explorer and give Owner, Group, Other all Read permissions and then just Owner: Write and Execute permissions. Basically the whole first column down and the whole top row across need to be checked.
One thing that you might want to make sure you are doing is to extract the zip down and find the bootanimation.zip. That is the one that you want to push to /data/local and not the entire downloaded zip file. If you push it to /data/local, you should not need to flash anything in recovery.
Click to expand...
Click to collapse
Many thanks Woody,
I had assumed that the zip was just to be placed in /data/local. Not realizing one has to extract the outer zip.

Categories

Resources