Guys,
When I get to this part of the instructions, its not there, any idea what im doing wrong?
On your PC, Go to Start->Right-Click My Computer->Manage
You should see a device with a warning on it called Other->ADB.
Not sure that way.
This is they way I did it.
Okay, the original instructions are great... provided you aren't a noob. I had to find a lot of stuff out on my own... so please amend the original instructions with these noob friendly additions.
First, you need the Android SDK. You can find that here:
Android SDK | Android Developers
Extract the folder and run Setup. It will ask you to download files, do so.
Place this bootanimation.zip into the tools folder of the SDK. You can find the tools folder inside of the android_sdk_windows folder you extracted when you downloaded the SDK.
Connect your phone to your computer with USB. Mount your phone by clicking on the USB message in the notification bar. You will then need to run Debugging mode by going on your phone to: Settings > Applications > Development > USB Debugging. Make sure this is checked; you should get an exclamation mark icon in your notification bar.
Once you are connected, mounted, and in debugging mode, go to on your computer: Start > Run. Type in "cmd" and hit Ok. This will open command prompt.
You need to navigate to the android_sdk_folder from command prompt. If the folder is in your C drive and the letter next to your cursor is different, simply type: "c:" and it will switch to the correct drive. If you are on an XP machine and the folder is on your desktop, you will need to navigate to the tools folder by typing:
cd c:\Documents and Settings\user\Desktop\android-sdk-windows\tools
...where "user" is your login name. THIS IS NOT ALWAYS THE ADDRESS, you can see the full path at the top of the open tools folder. The "cd" before the directory path is necessary--it tells the command prompt to "change directory".
If you have correctly typed in the exact directory your tools folder is in, you should see the entire directory path displayed to the left of your cursor on the new line. Now, you need to push the bootanimation.zip folder to your phone by entering in this line of text:
adb push bootanimation.zip /data/local
Once you hit enter, a second should go by and you should see that a certain amount of data was added to the phone. When you see this, turn off your phone and reboot. You should now see the new animation! You may need to unplug your USB cable before you turn the power back on. In debugging mode, it may display weird menu text when you boot up if you are still connected to the PC.
I hope this helps, I know I was in the same boat as a lot of you, I had to scrounge around to find all this info, don't know why it's not all in one place.
Also a big big big tip...
For all those typing the info into CMD don't do it.... slow way.
Just copy the location of the tools folder in the address field then type cd ..(then right click paste)....then enter button.
Same thing with the push.. copy it and paste it. No since in messing up typing something wrong. copy paste 100000 times faster...