Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
ragz85
Old
#11  
Junior Member
Thanks Meter 0
Posts: 3
Join Date: Oct 2012
Default location of this command in init.rc

Quote:
Originally Posted by selva.simple View Post
Thanks for the info buddy. Yeah i added stop boot animation service in init.rc script for preventing the infinite boot loop. Was going thru wanamsmile's modded kernel and checking for mods he done and finally found that he used the stop service to make it work. I will try with the above suggested method too buddy.
where do we add this command in init.rc?? any specific location??
 
selva.simple
Old
#12  
selva.simple's Avatar
Recognized Contributor - OP
Thanks Meter 1135
Posts: 746
Join Date: Feb 2012
Location: Chennai
Quote:
Originally Posted by ragz85 View Post
where do we add this command in init.rc?? any specific location??
It shud be added at the end of all the services. To be precise, at the end of the file.
My Works - Project MaZel

ROM
MaZel I - A GingerBread ROM
MaZel II - An ICS ROM

Kernel
MaZel ICS Kernel
MaZel CM10 Kernel

Kernel Source - Github
ICS Kernel Download - Dropbox
CM10 Kernel Download - Dropbox
The Following User Says Thank You to selva.simple For This Useful Post: [ Click to Expand ]
 
khpatel4991
Old
#13  
khpatel4991's Avatar
Senior Member
Thanks Meter 67
Posts: 325
Join Date: Jan 2012
Location: Navsari
Selva buddy I want to ask if these boot animations are for hdpi screens??coz I m using android reactor animation,but it seems of poor quality...So pls if you can post hdpi animation it'd be nice

Sent from my GT-I9103
Android is my Religion and ADAM is my GOD!!!
Proud user of Official CM10.1 on my GALAXY R
 
Disturbed™
Old
(Last edited by Disturbed™; 15th October 2012 at 07:45 AM.)
#14  
Disturbed™'s Avatar
Recognized Contributor
Thanks Meter 2123
Posts: 4,735
Join Date: May 2012
Location: ▂ ▃ ▅ ▆ █ Watching You @!@

 
DONATE TO ME
Wink [GUIDE] How to make your Own Custom Bootanimation

Hey Selva Buddy,

Please add this one in OP & if possible please change it to HOW TO make your own custom boot animation.

This is tutorial of HOW TO make your own Custom boot Animations:



Making Android open-source is probably the smartest thing Google has ever done with their platform. Putting control in the hands of thousands of dedicated developers has left us with some fairly spectacular results. If you know what you’re doing, there’s a way to customize just about every part of Android.
Even the boot animation can be changed if you know how. If you’re tired of that boring start-up that came with stock, fret not because it can be changed. This isn’t the most complex hack (we’re not changing how Android handles multitasking). However, it is a nice option to customize another part of your phone. On a purely practical level, we’re a little sick of hearing the noisy boot-up noise for MIUI. This guide can help you change your animation so it’s exactly what you want.

The Android boot animation is stored within one very special file named bootanimation.zip inside the phone’s memory. Change the .zip, change the animation. It’s as simple as that.



What’s not simple is how Android stores bootanimation.zip. For some unknown reason, Android actually keeps two copies of the animation file. One is stored at /data/local and the other at /system/media.

The difference between these locations is minor. The /data/local copy does not require root access. The phone also uses this animation before the other. The other one in /system/media does require root. However, installing a new animation to /system/media means that it will survive a factory reset. It’s a trade-off.
Regardless of which location you decide to use for your new boot animation, be absolutely sure to back up the original files. When replacing bootanimation.zip, keep a copy of the original .zip file saved to your computer. To be absolutely sure, you may want to make a Nandroid backup before doing any modifications.

How It Works
This section is intended to inform those who might wish to make their own start-up animation. If you have no interest in doing so, feel free to skip ahead. Understanding exactly how bootanimation.zip works is not necessary to install a new one.



If you copy bootanimation.zip to your computer and unzip it, inside will be a collection of files. There will be folders labeled part0, part1, part2 and so on. Also included will be desc.txt.
For our MIUI ROM, the boot animation was split into two parts. Part 0 had a huge list of image files which it used for the animation. Part 1 simply held the final screen at the end of the animation.
Desc.txt contains extremely simple instructions telling the phone how to run the animation. The first line lists the width, height, and frame rate of the animation. So 480 800 24 means to run the animation at 480×800 resolution and 24 frames per second.



The next two lines refer to the animation files. “P” invokes a part folder. The next number tells the phone how many times to play that part of the animation. So our second line “p 1 0 part0” means that the animation files in the part0 folder will play once. If we put zero, then the animation will loop until fully booted. The most notable use of looping animations is CyanogenMod 7’s spinning blue arrow.
The second number in that line is the pause time. This tells the phone how long it should pause DURING/BEFORE/AFTER/ the animation. Pause time is measured in frames, so 24 would be 24 frames of pause at 24 frames per second. Thus it pauses for one second. Our 0 means the phone pauses for zero frames (no time).

Creating Your Own Boot Animation
The first step is drawing the animation. Create a series of images which form one continuous animation. The frames must be labeled by increasing numbers, e.g. 000.png and 001.png and so on. Each part of the animation goes into a separate folder, starting with part0 and part1 and so on.



Finally open Notepad and write out a few lines of instructions. The first line should be the resolution and frame rate of the animation. The resolution must match that of your device. If you don’t know what that resolution is, see this page. The frame rate should match the one in the original desc.txt.
The next lines dictate the parts. Each part folder requires one line of instruction. Write out the numbers for each part of the animation. Once finished, save the file as desc.txt.
The final step is creating the .zip file. Select all the part folders and desc.txt. Right click on the files and select Send To > Compressed folder. Windows should quickly create the new file. Be sure to name it bootanimation.zip and nothing else.

Various Methods of Changing the Boot Animation:

1) Installation by ROM

Although there is a universal procedure for changing the animation, certain ROMs and themes come with their own rules for flashing. The MIUI ROM lets you change the boot animation within its Themes app. You can download custom animations within the app, no modifications needed.



2) Installation by Flashing
Other themes come as .zip files which can be flashed within ClockworkMod. This is much easier and definitely recommended. When downloading a theme from XDA or elsewhere, be sure to check the page. It might be a flashable .zip.
To flash a .zip file, simply copy it to the SD card.
Reboot into recovery mode.
Now go to “Install .zip” and choose the file from your card. CWM should run the file.
Reboot once finished.

3) Installation via ADB

Obviously, this method assumes that you have the Android SDK installed. It’s sort of necessary. If you feel the need to change the boot animation in a really cool programmer way, here’s how.

3.1) Download an animation and rename it to bootanimation.zip.
3.2) Copy the .zip file to the directory where the SDK is installed and within the platform-tools folder. So it’s (installation directory)android-sdkplatform-tools. Paste the file here.
3.3) Plug in the phone and turn on USB debugging.
3.4) Open Command Prompt and type “cd (installation directory)android-sdkplatform-tools“.
3.5) Type “adb remount” to mount /system as read-write. You should get a success message.
3.6) Enter in “adb shell” then “su” to double-check that you’re in root mode.
3.7) Navigate to the animation folder by typing “cd /system/customize/resource“.
3.8) Rename the original to the PC by entering “mv bootanimation.zip bootanimation.bak”. Now the original is there if you want to restore it, but the system won’t use it.
3.9) Type “adb push bootanimation.zip /system/customize/resource” to copy the file over. That’s it!

Note: Here we are assuming that the file bootanimation.zip is located at “/system/customize/resource“. In case the file is located at some other location on your phone, replace “/system/customize/resource” by that specific file path.

To change the boot audio:
1) Find an mp3. It should be relatively short as most phones don’t take much time to turn on.
2) Rename the mp3 to bootaudio.mp3.
3) Copy it to the SD card.
4) Now open Super Manager and copy the mp3 to /system/media.

TADAAAAAAAAAAA...now you can make your own bootanimation.zip file.

Buddy please add this one also for boot animation:

Click here to download

Preview:

Source is vikitech.com
The Following 6 Users Say Thank You to Disturbed™ For This Useful Post: [ Click to Expand ]
 
selva.simple
Old
#15  
selva.simple's Avatar
Recognized Contributor - OP
Thanks Meter 1135
Posts: 746
Join Date: Feb 2012
Location: Chennai
Quote:
Originally Posted by kataria.vikesh View Post
Hey Selva Buddy,
Please add this one in OP & if possible please change it to HOW TO make your own custom boot animation.
Hyperlinked this post in OP buddy
My Works - Project MaZel

ROM
MaZel I - A GingerBread ROM
MaZel II - An ICS ROM

Kernel
MaZel ICS Kernel
MaZel CM10 Kernel

Kernel Source - Github
ICS Kernel Download - Dropbox
CM10 Kernel Download - Dropbox
 
selva.simple
Old
#16  
selva.simple's Avatar
Recognized Contributor - OP
Thanks Meter 1135
Posts: 746
Join Date: Feb 2012
Location: Chennai
Quote:
Originally Posted by khpatel4991 View Post
Selva buddy I want to ask if these boot animations are for hdpi screens??coz I m using android reactor animation,but it seems of poor quality...So pls if you can post hdpi animation it'd be nice
These bootanimations are for hdpi screens only buddy. Poor quality is because in some bootanimations, the pictures used are not of high clarity. Thats why u may find it bit pixelated in some animations. Will update some more high quailty pic contained boot animations.
My Works - Project MaZel

ROM
MaZel I - A GingerBread ROM
MaZel II - An ICS ROM

Kernel
MaZel ICS Kernel
MaZel CM10 Kernel

Kernel Source - Github
ICS Kernel Download - Dropbox
CM10 Kernel Download - Dropbox
The Following User Says Thank You to selva.simple For This Useful Post: [ Click to Expand ]
 
Nephilim983
Old
(Last edited by Nephilim983; 24th November 2012 at 04:05 PM.)
#17  
Nephilim983's Avatar
Member
Thanks Meter 32
Posts: 47
Join Date: Dec 2011
Are you sure you didn't missed any step? I did all as in your tutorial, tried Nexus ICS boot animation...it did change to Nexus ICS boot animation but got stuck in boot loop... actually i can hear sounds by pressing on my display and have vibrations but animation is still playing over...

 
sshinde555
Old
#18  
sshinde555's Avatar
Senior Member
Thanks Meter 16
Posts: 152
Join Date: Jan 2012
Quote:
Originally Posted by Nephilim983 View Post
Are you sure you didn't missed any step? I did all as in your tutorial, tried Nexus ICS boot animation...it did change to Nexus ICS boot animation but got stuck in boot loop... actually i can hear sounds by pressing on my display and have vibrations but animation is still playing over...
Dude try to Download and Flash Ardatdat's kernel (either 4.1 or 4.2 beta 6) from link whch selva has provided in OP, my self also had the same problem but after flashing the Ardatdat's kernel 4.2 beta 6 it's work like charm..

Hope this will work for you....
The Following 2 Users Say Thank You to sshinde555 For This Useful Post: [ Click to Expand ]
 
Nephilim983
Old
(Last edited by Nephilim983; 24th November 2012 at 04:05 PM.)
#19  
Nephilim983's Avatar
Member
Thanks Meter 32
Posts: 47
Join Date: Dec 2011
Quote:
Originally Posted by sshinde555 View Post
Dude try to Download and Flash Ardatdat's kernel (either 4.1 or 4.2 beta 6) from link whch selva has provided in OP, my self also had the same problem but after flashing the Ardatdat's kernel 4.2 beta 6 it's work like charm..

Hope this will work for you....
Yeah, I'm already on Ardatdat's 4.2 beta 6 (1GHz) since it came...lucky for me i made cwm backup... can it be because i'm on TheFrankenstain^MOD 4.0.2? Or is the kernel that Selva supplied modified?

 
sshinde555
Old
#20  
sshinde555's Avatar
Senior Member
Thanks Meter 16
Posts: 152
Join Date: Jan 2012
Quote:
Originally Posted by Nephilim983 View Post
Yeah, I'm already on Ardatdat's 4.2 beta 6 (1GHz) since it came...lucky for me i made cwm backup... can it be because i'm on TheFrankenstain^MOD 4.0.2? Or is the kernel that Selva supplied modified?
Yes Dude selva had modified the kernal to support the custom boot animation's that's why i told you to patch the kernal which provided by Selva in op post.

The Following User Says Thank You to sshinde555 For This Useful Post: [ Click to Expand ]
 
Post Reply+
Tags
boot animation, galaxy r, ics
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Go to top of page...