Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
-ninja'd-
Okay, for the guy who got the update, he can still be a hero... I know how he can get the update.zip off if he really wants to.
From what you have said, you don't seem to be extremely tech-savvy, but this isn't too complicated of a procedure, the only drawback would be losing your data, but you could back up your apps via Astro File Manager, and all your contacts are automatically backed up so it would just be a minor inconvenience. That said, please think of your peeps.
HOW HE CAN BE OUR SAVIOR:
Please correct me if I am wrong, but his phones individual ID is set to get the update no matter what now correct? That means if his phone is not up to date, the update should get pushed to his phone again, correct?
Well here is my idea,
Use RSD Lite or whatever else you think would work to flash back to 2.0.1.
If his phone is then not 'up-to-date', then it should get re-pushed so he can copy it off before updating again.
Let me know if there are any holes in my plan, but I personally think it is worth a shot!
Zach

I do have a question though....does anyone from the Sprint network have this update yet?

Great point - and true. Flash memory does just this. No idea how often myself but I imagine it could have been over written by now.
#!/bin/sh
typeset -i N=10000000
while (( N<=99999999 ))
do
target="https://android.clients.google.com/updates/voles/signed-voles-ESE81-from-ESD56.$N.zip"
result=`wget -O - $target 2>&1 | grep "404 Not Found"`
if [[ "$result" != *404* ]]
then
echo $target
fi
N=$N+1
done
In regards to people saying that using the recovery software is better, I have never tried to recover anything, so I don't have an honest opinion on that, but from my very limited knowledge, doesn't flash memory not write data all to the same physical location in my memory? For error correction and even memory usage, which would mean that if he has used any application that saves data to the SD, there is about a 50/50 chance of at least part of the update.zip having been overwritten?
I know I will pass on it when it comes to my phone - assuming you can - and I will let the rest of you sort out the issues for me, test drive it, report the issues, then decide.
early adoption of a new OS or major OS update - at least in computers - has always come at a cost of something I have noticed. I am happy and stable now, so I will wait to see what works and what breaks.
I wish I could sell my OTA update on eBay to one of you when mine comes and I turn it down while your sitting here jonezing hard for it.![]()
I feel bad for you. You could have been the hero of the day.![]()

i think 8 digits is just too many (more then likely you'll get flagged or it will just take too long). if it really was only the last four it would be simple.If anyone wants to try, this will go from 10000000-99999999. I'm not going to parse the leading counters.
The risk is that your ip could be blacklisted as potential ddos source:
Code:#!/bin/sh typeset -i N=10000000 while (( N<=99999999 )) do target="https://android.clients.google.com/updates/voles/signed-voles-ESE81-from-ESD56.$N.zip" result=`wget -O - $target 2>&1 | grep "404 Not Found"` if [[ "$result" != *404* ]] then echo $target fi N=$N+1 done
If anyone wants to try, this will go from 10000000-99999999. I'm not going to parse the leading counters.
The risk is that your ip could be blacklisted as potential ddos source:
Code:#!/bin/sh typeset -i N=10000000 while (( N<=99999999 )) do target="https://android.clients.google.com/updates/voles/signed-voles-ESE81-from-ESD56.$N.zip" result=`wget -O - $target 2>&1 | grep "404 Not Found"` if [[ "$result" != *404* ]] then echo $target fi N=$N+1 done