Posts Tagged ‘ android ’

Droid 3

Disclaimer: If you end up breaking your phone doing anything that you might have seen or heard about here sorry but I take no responsibility all of the information here is provided just for knowledge.

Well it’s been a little over a week now that I have had the Droid 3 and so far I am more than happy with it. It is an amazing phone and personally I can’t find anything wrong with it that won’t be fixed in a few months with an update or root. Speaking of root there is one hell of a good quest going on for it and as of right now I personally am floating between Phandroid boards, Droid Forum boards, and XDA looking at everything I can to try and help/find a possible way to root. If any Devs out there happen upon this feel free to message me if you have an idea and need someone to try it out. I figure since I am taking the time to babble on this much with everything I might as well make a condensed list off all the different things that I have tried and also found out on the phone so far.

1. Gingerbreak Does Not work
2. Super One Click 1.9.1 Does Not work
3. GingerSnap does not provide SU privileges but sometimes it does complete and say root has been achieved
4. There are two bloatware that can be uninstalled they are “Let’s Golf 2” and “Nova” this will reinstall after a factory reset. I can’t remember where but on one of the boards was the link to the file that showed how it would check for them and reinstall them

Now for all the button mashing goodness to access different menus and options

While powering up:
5. Hold X & the power button = Recovery
6. Holding Volume up, volume down, & Power = Boot mode Selection Menu (0A.33)
Vol up selects, vol down scrolls
Available boot modes:
*Normal Powerup
*Recovery
*AP Fastboot
*BF SBF Flash
*BP only
*AP BP USB bypass
*BP Tools
7.Holding the up arrow & power =
Fastboot Flash mode
0A.33
*Battery OK
*OK to program
*Connect USB
*Data Cable
8.Holding Volume Down & power = AP Fastboot
9.Holding the OK button & power =
Safe mode: if you open the keyboard and hold the OK button when turning on the device. Keep holding the OK button until the system is almost done booting up, and the device will vibrate it will also have “Safe Mode” in the lower left of the screen.
10. Holding Right navigation arrow (on keyboard) & powering on = RP SBF Flash Mode.
11. Up Navigation Arrow & powering on = RP Fastboot Flash Mode
12. M & powering on = Same menu as VOLUME UP and DOWN.
13. B & powering on = Vendor flash mode.
14. F & Powering on = Fastboot flash mode.

This is what I have collected or found out myself so far. I know I have most likely learned some of this from some of the other people on the forums but honestly I can’t remember who so if any of this stuff is yours thank you for helping work on this with everyone and let me know if you want your name on here anywhere. Also if you come across anything that you would like to see included or think should be included in this rambling list let me know and I will add it. I will most likely be updating this every few days as I continue to play and browse the forums.

Today I was browsing the forums and as pretty much anyone that is looking around knows there was a leaked Chinese SBF. (DO NOT FLASH IT WILL BRICK YOUR DEVICE) here is another link to download it at:
Leaked SBF

In case anyone wants to look around in the files off of the D3 here is everything that I could pull off while I was in a medicated semi-comma so there might be a few missing here and there but its what I have at the moment:
files

I pulled the boot animation file out off of the Droid 3 just to get a look at it since I was working on boot animations for the OG Droid and I was surprised to find that with the D3 it actually comes with instructions in the DESC file so here they are:

# 540 wide, 960 tall 15 frames per second
540 960 15
# p means we’re defining a part
# first number is repeat count, 0 means infinite
# second number is delay in frames before performing the next part
# so if you are playing 15 frames a second 15 would be… one second
# string defines the directory to load files from
# files will be loaded in order but names don’t matter
# s defines a sound for a part
# sounds will be loaded from /system/media
# oggs with loop points will loop automatically
# only one sound will play at a time
# timing is driven by the part, not the sounds
# if you want no sound, leave blank
# droid
p 1 7 01_droid
s Droid.ogg
# eye
p 1 0 02_eye
# eyeloop
p 0 0 03_eyeloop

Well I have been playing around a little more with the phone and since there is so much talk going on right now about the possibility of finding an exploit using the /preinstall I pulled the script for it from /system/bin/loadpreinstalls.sh

#!/system/bin/sh
export PATH=/system/bin:$PATH
PRELOAD_APP_DIR=/system/preinstall/app
PRELOAD_HASH_DIR=/system/preinstall/md5
DATA_HASH_DIR=/data/preinstall_md5
PRELOAD_DONE_PROP=sys.preinstall.done
PRELOAD_LOG_FILE=$DATA_HASH_DIR/log.txt
umask 003
mkdir $DATA_HASH_DIR
for file in `ls $PRELOAD_APP_DIR`; do
echo “$file: comparing $PRELOAD_HASH_DIR/$file.md5 and $DATA_HASH_DIR/$file.md5”
echo “$file: comparing $PRELOAD_HASH_DIR/$file.md5 and $DATA_HASH_DIR/$file.md5” >> $PRELOAD_LOG_FILE
newMD5=`cat $PRELOAD_HASH_DIR/$file.md5`
oldMD5=`cat $DATA_HASH_DIR/$file.md5`
if [ “$newMD5” != “$oldMD5” ]; then
isInstalled=`pm path $file`
if [ -n “$isInstalled” -o ! -e “$DATA_HASH_DIR/$file.md5” ]; then
pm install -r $PRELOAD_APP_DIR/$file
ret=$?
if [ $ret -ne 0 ]; then
echo “$file: install failed, error: $ret”
echo “$file: install failed, error: $ret” >> $PRELOAD_LOG_FILE
else
echo “$file: install successful, copying $file.md5 to $DATA_HASH_DIR”
echo “$file: install successful, copying $file.md5 to $DATA_HASH_DIR” >> $PRELOAD_LOG_FILE
cp $PRELOAD_HASH_DIR/$file.md5 $DATA_HASH_DIR
fi
else
echo “$file: user has uninstalled, dont reinstall. copying $file.md5 to $DATA_HASH_DIR”
echo “$file: user has uninstalled, dont reinstall. copying $file.md5 to $DATA_HASH_DIR” >> $PRELOAD_LOG_FILE
cp $PRELOAD_HASH_DIR/$file.md5 $DATA_HASH_DIR
fi
else
echo “$file: install skipped, file unchanged”
echo “$file: install skipped, file unchanged” >> $PRELOAD_LOG_FILE
fi
done
retries=10
echo “preinstall finished, setting $PRELOAD_DONE_PROP to 1”
echo “preinstall finished, setting $PRELOAD_DONE_PROP to 1” >> $PRELOAD_LOG_FILE
setprop $PRELOAD_DONE_PROP 1
readback=`getprop $PRELOAD_DONE_PROP`
while [ “$readback” != “1” -a $retries -gt 0 ]
do
echo ” property readback failed! expected 1, got $readback. retries left $retries…”
echo ” property readback failed! expected 1, got $readback. retries left $retries…” >> $PRELOAD_LOG_FILE
retries=$(($retries-1))
sleep 2
setprop $PRELOAD_DONE_PROP 1
readback=`getprop $PRELOAD_DONE_PROP`
done
echo “preinstall exiting…”
echo “preinstall exiting…” >> $PRELOAD_LOG_FILE

Alchemy App (Spoilers)

Here is a nice little list to help with the Alchemy App for Android. This is a list of all 300 items with at least one way to make all of them.

1.1-up= (life + mushroom)
2.Air= (starting)
3.Airplane= (air + car)
4.Alcohol= (fire + water)
5.Alcoholic= (man + beer) (man + vodka) (man + alcohol)
6.Algea= (life + water)
7.Aluminum= (airplane + metal)
8.Arable= (earth + tool)
9.Arms= (metal + tool)
10.Ash= (fire + snake)
11.Ashtray= (ash + glass)
12.Assassin= (man + poisoned weapons)
13.Avian Flu= (flu + bird) (flu + chicken)
14.Bacon= (fire + pig)
15.Bacteria= (life + swamp)
16.Bar= (brick house + beer)
17.Barbecue= (fire + meat)
18.Bat= (bird + vampire)
19.Batman= (man + bat)
20.Beach= (water + sand)
21.Bear= (beast + forest)
22.Beast= (earth + lizard)
23.Beaver= (dam + beast)
24.Beer= (alcohol + wheat)
25.Beetle= (earth + worm)
26.Berry= (grass + fruit)
27.Bicycle= (wheel + wheel)
28.Bird= (air + egg)
29.Bitumen= (kerogen + pressure)
30.Blood= (beast + hunter)
31.Boat= (water + wood)
32.Boiler= (metal + steam)
33.Book= (man + paper)
34.Bow= (Robin Hood + arms)
35.Bread= (dough + fire)
36.Brick= (clay + fire)
37.Brick House= (brick + concrete)
38.Butterfly= (air + worm)
39.Cactus= (desert + tree)
40.Cancer= (cigarettes + man)
41.Car= (cart + combustion engine)
42.Caramel= (sugar + fire)
43.CO2= (oxygen + man)
44.Carmine= (cochineal + fire)
45.Cart= (wheel + wood)
46.Cat= (hunter + mouse)
47.Caviar= (fish + fish)
48.Cement= (clay + limestone)
49.Cemetery= (grave + grave)
50.Ceramics= (clay + man)
51.Champagne= (wine + soda water)
52.Chariot= (warrior + cart)
53.Cheese= (quark + fire)
54.Chicken= (egg + life)
55.Christmas Tree= (tree + light bulb)
56.Cigarettes= (paper + tobacco)
57.City= (skyscraper + skyscraper)
58.Clay= (sand + swamp)
59.Cloth= (tool + wool)
60.Clothing= (cloth + man)
61.Cloud= (air + steam)
62.Coal= (fire + tree)
63.Coca-Cola= (soda water + carmine)
64.Cochineal= (cactus + beetle)
65.Coffin= (corpse + wood)
66.Combustion Engine= (steam engine + gasoline)
67.Concrete= (cement + water)
68.Continent= (country + country)
69.Corpse= (fire + man)
70.Country= (city + city)
71.Dam= (brick + water)
72.Desert= (sand + sand)
73.Diamond= (uncut diamond + tool)
74.Diet= (man + yogurt)
75.Dinosaur= (earth + egg)
76.Dough= (flour + water)
77.Dragon= (fire + flying dinosaur)
78.Dust= (air + earth)
79.Earth= (starting)
80.Ectoplasm= (ghost + energy)
81.Egg= (life + stone)
82.Electric Eel= (snake + electricity)
83.Electric Ray= (fish + electricity)
84.Electricity= (energy + metal)
85.Energy= (air + fire)
86.Explosion= (gasoline + fire)
87.Faberge Egg= (egg + diamond)
88.Farmer= (man + seed)
89.Fat= (man + pig)
90.Feather= (bird + hunter)
91.Fern= (moss + swamp)
92.Fire= (starting)
93.Fire Elemental= (fire + life)
94.Firearms= (arms + gunpowder)
95.Firefighter= (hero + fire)
96.Firefly= (light + beetle)
97.Fish= (bacteria + plankton)
98.Fisherman= (hunter + fish)
99.Flour= (stone + wheat)
100.Flower= (water + seed)
101.Flu= (air + bacteria)
102.Flying Dinosaur= (air + dinosaur)
103.Fondue= (cheese + fire)
104.Forest= (grove + grove)
105.Fossil= (dinosaur + earth)
106.Frankenstein= (corpse + electricity)
107.Frog= (lizard + swamp)
108.Fruit= (tree + farmer)
109.Fugu= (fish + poison)
110.Gasoline= (petroleum + pressure)
111.Genie= (lamp + ghost)
112.Geyser= (steam + earth)
113.Ghost= (ash + life)
114.Ghostbusters= (ghost + hunter)
115.Glass= (fire + sand)
116.Golem= (clay + life)
117.Grape= (earth + wood)
118.Grass= (earth + moss)
119.Grave= (earth + corpse)
120.Grove= (tree + tree)
121.Gunpowder= (dust + fire)
122.Hen Coop= (chicken + hut)
123.Hero= (dragon + warrior)
124.Hospital= (brick house + sick)
125.Hourglass= (glass + sand)
126.Hunter= (arms + man)
127.Hut= (man + stone)
128.Hydrogen= (water + electricity)
129.Ice= (water + glass)
130.Idea= (man + light bulb)
131.Iodine= (algae + fire)
132.Jedi= (hero + lightsaber)
133.Juice= (fruit + pressure)
134.Kama Sutra= (book + sex)
135.Kerogen= (fossil + pressure)
136.Knife= (meat + tool)
137.Lamp= (fire + glass)
138.Lance Armstrong= (cancer + bicycle)
139.Lava= (earth + fire)
140.Lava Golem= (lava + life)
141.Lava Lamp= (lava + lamp)
142.Lawn Mower= (grass + tool)
143.Leech= (blood + worm)
144.Library= (book + book)
145.Lichen= (mushroom + algae)
146.Life= (energy + swamp)
147.Light= (electricity + light bulb)
148.Light Bulb= (electricity + glass)
149.Light House= (skyscraper + light)
150.Lightening Rod= (thunderstorm + metal)
151.Lightsaber= (arms + light)
152.Lime= (fire + limestone)
153.Limestone= (shells + stone)
154.Livestock= (beast + man)
155.Lizard= (snake + worm)
156.Locomotive= (cart + steam engine)
157.Man= (beast + life)
158.Manure= (grass + livestock)
159.Mario= (1UP + man)
160.McDonald’s= (Coca-Cola + sandwich)
161.Meat= (beast + hunter)
162.Mentos= (Coca-cola + geyser)
163.Metal= (fire + stone)
164.Metal Golem= (life + metal)
165.Milk= (livestock + man)
166.Mirror= (aluminum + glass)
167.Mite= (life + dust)
168.Mold= (mushroom + mud)
169.Molotov Cocktail= (fire + alcohol)
170.Moon= (cheese + sky)
171.Moss= (swamp + algae)
172.Motorboat= (boat + combustion engine)
173.Motorcycle= (bicycle + combustion engine)
174.Mouse= (cheese + beast)
175.Mud= (dust + water)
176.Mummy= (paper + corpse)
177.Museum= (brick house + fossil)
178.Mushroom= (earth + algae)
179.Obesity= (man + McDonald’s)
180.Old Man= (man + time)
181.Omelet= (egg + fire)
182.Oxygen= (water + electricity)
183.Oxyhydrogen= (oxygen + hydrogen)
184.Ozone= (oxygen + electricity)
185.Panda= (tree + beast)
186.Paper= (reed + tool)
187.Pearl= (sand + shells)
188.Peat= (swamp + tree)
189.Penicillin= (mold + scientist)
190.Perfume= (flower + alcohol)
191.Petri Dish= (glass + bacteria)
192.Petroleum= (bitumen + pressure)
193.Phoenix= (bird + fire)
194.Pig= (livestock + mud)
195.Pillow= (feather + cloth)
196.Pinocchio= (wood + life)
197.Pizza= (cheese + dough)
198.Plankton= (bacteria + water)
199.Plesiosauria= (dinosaur + water)
200.Poison= (mushroom + tool)
201.Poisoned Weapons= (arms + poison)
202.Pressure= (earth + earth)
203.Prisoner= (assassin + time)
204.Quark (cheese)= (soured milk + fire)
205.Quetzalcoat= (snake + bird)
206.Reed= (grass + swamp)
207.Robin Hood= (forest + hero)
208.Rust= (water + metal)
209.Sailboat= (boat + cloth)
210.Sailing Ship= (cloth + wooden ship)
211.Sailor= (boat + man)
212.Salamander= (fire + lizard)
213.Saltpeter= (limestone + manure)
214.Sand= (stone + water)
215.Sandstorm= (storm + sand)
216.Sandwich= (meat + bread)
217.Santa Claus= (old man + Christmas tree)
218.Scarab= (beetle + manure)
219.Scientist= (library + man)
220.Scissors= (knife + knife)
221.Scorpion= (beetle + sand)
222.Scotch Whiskey= (alcohol + peat)
223.Seed= (life + sand)
224.Sex= (man + man)
225.Sex and the City= (sex + city)
226.Shells= (plankton + stone)
227.Sick= (man + flu)
228.Silicon= (pressure + sand)
229.Silver= (moon + metal)
230.Sith= (Jedi + assassin)
231.Sky= (air + cloud)
232.Skyscraper= (brick house + glass)
233.Smoke= (fire + tobacco)
234.Snail= (shells + worm)
235.Snake= (swamp + worm)
236.Sniper= (assassin + firearms)
237.Soap= (ash + fat)
238.Soda Water= (carbon dioxide + water)
239.Soldier= (firearms + man)
240.Soured Milk= (milk + yogurt)
241.Spinning Wheel= (wheel + wool)
242.Stake= (wood + knife)
243.Star= (sun + scientist)
244.Star Wars= (Jedi + Sith)
245.Steam= (air + water)
246.Steam-engine= (boiler + coal)
247.Steamer= (steam engine + wooden ship)
248.Stone= (air + lava)
249.Storm= (air + energy)
250.Sugar= (lime + reed)
251.Sulfur= (bacteria + swamp)
252.Sun= (sky + chariot)
253.Sunflower= (sun + flower)
254.Sushi= (fish + algae)
255.Swamp= (earth + water)
256.Sweater= (yarn + tool)
257.Swine Flu= (pig + flu)
258.Team= (beast + cart)
259.Tequila= (alcohol + worm)
260.The Beatles= (beetle + beetle)
261.Thunderbird= (bird + storm)
262.Thunderstorm= (storm + electricity)
263.Time= (life + hourglass)
264.Toast= (fire + bread)
265.Tobacco= (fire + grass)
266.Tool= (man + metal)
267.Totoro= (forest + ghost)
268.Tractor= (lawnmower + arable)
269.Tree= (earth + seed)
270.Turtle= (egg + sand)
271.Twilight Saga= (vampire + werewolf)
272.Typhoon= (storm + water)
273.Uncut Diamond= (coal + pressure)
274.Undead= (corpse + zombie)
275.Vampire= (blood + man)
276.Vinegar = (alcohol + oxygen)
277.Vodka= (alcohol + water)
278.Volcano= (lava + pressure)
279.Vulture= (corpse + bird)
280.VW Beetle= (car + beetle)
281.Walking Tree= (life + tree)
282.Warrior= (arms + hunter)
283.Water= (starting)
284.Weevil= (flour + beetle)
285.Werewolf= (beast + vampire)
286.Whale= (beast + water)
287.Wheat= (arable + seed)
288.Wheel= (tool + wood)
289.Whey= (soured milk + fire)
290.Wind= (air + air)
291.Wine= (grape + alcohol)
292.Wood= (tool + tree)
293.Wooden Ship= (boat + wood)
294.Wool= (beast + hunter)
295.Worm= (earth + plankton)
296.Yarn= (spinning wheel + wool)
297.Yogurt= (bacteria + milk)
298.Yoshi= (1UP + egg)
299.Zombie= (corpse + life)
300.Zoo= (beast + museum)

Alchemy App

Here is a nice little list to help with the Alchemy App for Android. This is just a list of the items you can make not how to make them I am currently working on that list and will be posting it in a few days. I hope this helps some people out.

1.1-up
2.Air
3.Airplane
4.Alcohol
5.Alcoholic
6.Algea
7.Aluminum
8.Arable
9.Arms
10.Ash
11.Ashtray
12.Assassin
13.Avian Flu
14.Bacon
15.Bacteria
16.Bar
17.Barbecue
18.Bat
19.Batman
20.Beach
21.Bear
22.Beast
23.Beaver
24.Beer
25.Beetle
26.Berry
27.Bicycle
28.Bird
29.Bitumen
30.Blood
31.Boat
32.Boiler
33.Book
34.Bow
35.Bread
36.Brick
37.Brick House
38.Butterfly
39.Cactus
40.Cancer
41.Car
42.Caramel
43.CO2
44.Carmine
45.Cart
46.Cat
47.Caviar
48.Cement
49.Cemetery
50.Ceramics
51.Champagne
52.Chariot
53.Cheese
54.Chicken
55.Christmas Tree
56.Cigarettes
57.City
58.Clay
59.Cloth
60.Clothing
61.Cloud
62.Coal
63.Coca-Cola
64.Cochineal
65.Coffin
66.Combustion Engine
67.Concrete
68.Continent
69.Corpse
70.Country
71.Dam
72.Desert
73.Diamond
74.Diet
75.Dinosaur
76.Dough
77.Dragon
78.Dust
79.Earth
80.Ectoplasm
81.Egg
82.Electric Eel
83.Electric Ray
84.Electricity
85.Energy
86.Explosion
87.Faberge Egg
88.Farmer
89.Fat
90.Feather
91.Fern
92.Fire
93.Fire Elemental
94.Firearms
95.Firefighter
96.Firefly
97.Fish
98.Fisherman
99.Flour
100.Flower
101.Flu
102.Flying Dinosaur
103.Fondue
104.Forest
105.Fossil
106.Frankenstein
107.Frog
108.Fruit
109.Fugu
110.Gasoline
111.Genie
112.Geyser
113.Ghost
114.Ghostbusters
115.Glass
116.Golem
117.Grape
118.Grass
119.Grave
120.Grove
121.Gunpowder
122.Hen Coop
123.Hero
124.Hospital
125.Hourglass
126.Hunter
127.Hut
128.Hydrogen
129.Ice
130.Idea
131.Iodine
132.Jedi
133.Juice
134.Kama Sutra
135.Kerogen
136.Knife
137.Lamp
138.Lance Armstrong
139.Lava
140.Lava Golem
141.Lava Lamp
142.Lawn Mower
143.Leech
144.Library
145.Lichen
146.Life
147.Light
148.Light Bulb
149.Light House
150.Lightening Rod
151.Lightsaber
152.Lime
153.Limestone
154.Livestock
155.Lizard
156.Locomotive
157.Man
158.Manure
159.Mario
160.McDonald’s
161.Meat
162.Mentos
163.Metal
164.Metal Golem
165.Milk
166.Mirror
167.Mite
168.Mold
169.Molotov Cocktail
170.Moon
171.Moss
172.Motorboat
173.Motorcycle
174.Mouse
175.Mud
176.Mummy
177.Musem
178.Mushroom
179.Obesity
180.Old Man
181.Omelette
182.Oxygen
183.Oxyhydrogen
184.Ozone
185.Panda
186.Paper
187.Pearl
188.Peat
189.Penicillin
190.Perfume
191.Petri Dish
192.Petroleum
193.Phoenix
194.Pig
195.Pillow
196.Pinocchio
197.Pizza
199.Plankton
200.Plesiosauria
201.Poison
202.Poisoned Weapons
203.Pressure
204.Prisoner
205.Quark (cheese)
206.Quetzalcoat
207.Reed
208.Robin Hood
209.Rust
210.Sailboat
211.Sailing Ship
212.Sailor
213.Salamander
214.Saltpeter
215.Sand
216.Sandstorm
217.Sandwich
218.Santa Claus
219.Scarab
220.Scientist
221.Scissors
222.Scorpion
223.Scotch Whiskey
224.Seed
225.Sex
226.Sex and the City
227.Shells
228.Sick
229.Silicon
230.Silver
231.Sith
232.Sky
233.Skyscraper
234.Smoke
235.Snail
236.Snake
237.Sniper
238.Soap
239.Soda Water
240.Soldier
241.Soured Milk
242.Spinning Wheel
243.Stake
244.Star
245.Star Wars
246.Steam
247.Steam-engine
248.Steamer
249.Stone
250.Storm
251.Sugar
252.Sulfur
253.Sun
254.Sunflower
255.Sushi
256.Swamp
257.Sweater
258.Swine Flu
259.Team
260.Tequila
261.The Beatles
262.Thunderbird
263.Time
264.Toast
265.Tobacco
266.Tool
267.Totoro
268.Tractor
269.Tree
270.Turtle
271.Twilight Saga
272.Typhoon
273.Uncut Diamond
274.Undead
275.Vampire
276.Vinegar
277.Vodka
278.Volcano
279.Vulture
280.VW Beetle
281.Walking Tree
282.Warrior
283.Water
284.Weevil
285.Werewolf
286.Whale
287.Wheat
288.Wheel
289.Whey
290.Wind
291.Wine
292.Wood
293.Wooden Ship
294.Wool
295.Worm
296.Yarn
297.Yogurt
298.Yoshi
299.Zombie
300.Zoo

Moto Droid Recovery Issue

So one of my coworkers and I have been playing with our Droids a lot in the past few weeks and we have run into an issue more than once. The phone is functioning overall but maybe there is a few little glitches or the kernal we are running isn’t getting along so we go to reboot it and whats this it does a boot loop for a few tries and then loads up like nothing happened. This goes on for a while and then maybe if we are lucky it will finally end up booting into recovery. Well after some research it seems that there is a small issue with Rom manager from time to time that involves this. If you go into Rom Manager Flash Alternate Recovery wait until it is done and then Flash ClockworkMod Recovery you can select Reboot into Recovery and she works like a charm. I have tested this twice on my phone and once on his and it seems to fix it each time, so if your phone will boot but not into recovery and you really need it too there is how.

Android page

I just created a new page that consolidates all of the files that I am currently creating and will be creating for the Android operating system feel free to stop by look and download or request anything that you are interested in. I am hoping to start making a lot more of not only boot animations but also live wallpapers so feel free to ask.

Droid Boot Animation

Today has been a busy day for me. I have spent pretty much the entire day playing with my phone so to make up for the lacking of giving attention I decided to create a boot animation that my wife might like. She asked for something to do with hello kitty so I just took a few images and put them together I know that it isn’t very good at the moment but over the next little while I am going to keep working on it and other ones so feel free to request any that you might be interested to see or get a hold of and I will see if I can make them.
Here is a video of it that was very poorly made by me way to late at night and before I adjusted the frame rate on it.

Here is the actual file if you might be interested.

Android is Amazing

If you have read any of the other Android related posts I have made you would know that I have a Motorola Droid and have been loving it since I got it and was super excited about the FROYO Android 2.2 update when it came out. Well in current technology news in my world I finally caved and rooted my phone so I can run different kernals to try and make my phone as happy as possible and run as fast as possible. At least that is how today started I have spent the better part of the last 12 hours playing with my phone the rooting process I utilized took me less than 30 minutes I would thank all of the people that were involved in the posts I used but there were just way to many so I am going to say thank you to Androidforums for all the help everyone there is awesome. They all do an outstanding job of writing up walk-throughs and explaining the process that you are trying to go through. After I was done with the actual rooting I started just playing with little things using the original FROYO it worked extremely well for me when I was running a “chevyno1” 1.0Ghz LV kernal the phone was considerably more responsive and extremely fun to use and play with. This quickly led me to starting to look in the marketplace for things to help me play with and customize my phone even more which led me to trying out some different boot screen animations which quickly led me to running a different ROM I also went with “chevyno1” with this at the moment I am currently working through the different kernals to match up the best one for me and this ROM. I will be posting some more information off and on through the evening the only downside for me personally is the fact that I was about to make a post for the Game Alchemy because I had just beaten it on my phone and some how today I ended up losing it so I have to start over on it.

Droid Vs. iPhone

I am getting really tired of this argument and the fact that people have 1000 what ifs. Granted this is only my opinion and has no basis in the real world just in my little corner but look at everything the way it is. iPhone at&t only so that sucks for the iphone. iphone touch screen only another suck for the iphone. Now I am not going to say that the iphone sucks overall it is rather nice and compared to non smart phones it is amazing and compared to a lot of the lesser smart phones it is amazing but when compared side by side to a Moto Droid it doesn’t seem that good. Yes the apps are overall better because they are more controlled and checked by the App store but then again they don’t cover nearly the same spectrum of stuff that you can get on the marketplace. There are many poorly designed apps for droids and it forces people to look harder and be pickier which sucks for Droid but you can also find damn near anything you could want on it. Now wait for a minute think about all the hate speechs that are about to come from all the iphone users out there and just hold on breath deep and tell me if it is such an amazing phone and apple is so great why is it anytime an argument comes up of which is better and who can watch what or go where or do whatever on their phones there is almost always a statement of if I jailbroke that would be easy or well since I jail broke it I can do this. Guess what once you jail break your shit its not an iphone the way it was made. thats like saying a 1990 toyota MR2 with a v10 out of a Lambo is just an MR2 sure it kind of is but its not the way it was made so why do you get graded like it was. Take two out of the box phones and compare stop arguing and complaining about retarded stuff like well I heard the Droid needs task killers to run yea so I heard you have to pinch the iphone 4 to make it call people. every phone is different every location is different and every person on the planet wants something different so stop arguing over it and move the hell on. They are both good phones but guess what next year there will be nicer ones, hell next month there will be nicer ones. If you want a better review from me on these phones feel free to send me one of each and I will run extensive scientific tests on them both and which ever one comes out on top i will let you know. But until I get free phones in the mail I will keep rocking the droid enjoying its abilities to text, make phone calls, and remind me of shit. (thats all i really need it for)