Page 1 of 4 1234 LastLast
Results 1 to 25 of 87
Like Tree14Likes
  1. Thread Author  Thread Author    #1  

    Default Official 4.0.4 release date and questions

    So I keep reading on here how the 4.0.4 update people are getting is the bees knees. But I am not familiar on how to "flash" and "root" a phone. Nor am I comfortable with the thought of voiding my warranty by doing this "update".

    So I would like to know if there has been any word as to when Google will release the official update? Also is the update that everyone is currently using is it based on what will eventually be the official update?

    Sent from my Galaxy Nexus
  2. #2  

    Default Re: Official 4.0.4 release date and questions

    Unfortunately, no one will be able to do any more than guess as to when the release will be out. If no changes are made to it, then it will be the same 4.0.4 that's floating around now. If they make any changes, then it will be 4.0.5 that gets released to everyone.
    Semper Fi
    I love my LG Nexus 4!
  3. #3  
    Poseign's Avatar
    Mobile Enthusiast

    Posts
    585 Posts
    Global Posts
    601 Global Posts
    ROM
    AOKP JB B1/Franco M5

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by greydarrah View Post
    If they make any changes, then it will be 4.0.5 that gets released to everyone.
    It's more likely this. And is rumors about 4.0.5 are true, we will get it sometime in march.
  4. #4  
    moosc's Avatar
    Grand Master Moosc

    Posts
    2,947 Posts
    Global Posts
    5,021 Global Posts
    ROM
    AKOP M4 old geezer theme

    Default Re: Official 4.0.4 release date and questions

    probably never they reless itll most likely go 4.0.5. It is really simple to unlock and root your phone. Be honest there was never a promice of fast updates either.
  5. #5  
    JoeNM84's Avatar

    Posts
    190 Posts
    Global Posts
    205 Global Posts

    Default Re: Official 4.0.4 release date and questions

    And when 4.0.5 gets into the wild everyone will say we will end up getting 4.0.6. Maybe we don't get another official over the air update?
  6. #6  

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by JoeNM84 View Post
    And when 4.0.5 gets into the wild everyone will say we will end up getting 4.0.6. Maybe we don't get another official over the air update?
    And maybe a giant asteroid will hit the earth tomorrow and it wont matter.
    Semper Fi
    I love my LG Nexus 4!
    cj100570 likes this.
  7. #7  

    Default Re: Official 4.0.4 release date and questions

    I doubt it will come in March. It's probably for the GSM version. With Verizon being CDMA it will take another few months, so probably like June. But, I really hope it doesn't take that long and if it looks that way then I might as well root the phone and flash the new radio.
    SoCalBIGmike likes this.
  8. Thread Author  Thread Author    #8  

    Default Re: Official 4.0.4 release date and questions

    So I know that the updates are located in the ROM section. But I can't make heads or tails on where to start. Is there a good tutorial out there that can tell me how to update my phone?
    Thanked by:
    km75sr 
  9. #9  
    EggoEspada's Avatar

    Posts
    707 Posts
    Global Posts
    745 Global Posts
    ROM
    Buglessbeast/Stock

    Default Re: Official 4.0.4 release date and questions

    If Google isn't going to skip over 4.0.4, then we'll see it any day now. If they decide they want to do more with the update, and jump it to 4.0.5, then we're probably looking at the second half of March.
    So many phones, so little time.
  10. #10  
    Andrew Ruffolo's Avatar

    Posts
    3,809 Posts
    Global Posts
    3,815 Global Posts
    ROM
    Stock

    Default Re: Official 4.0.4 release date and questions

    I made a series of videos... never rooted my nexus. You don't need to. You just need to unlock the bootloader, but that will wipe your phone. Its why everyone here recommended unlocking the bootloader from day 1. Updating from 4.0.2 to 4.0.4 doesn't require a wipe, so if you unlocked your bootloader, you will keep all your info.

    First, unlock the bootloader. You can do this on any computer (windows, mac, linux). My videos are done on mac, but the general process is exactly the same.
    Download the sdk and install it from
    next, you will need to get fastboot for your computer. You can google and download it, or if you're tech savvy, you can compile it on your own (I would just download it, its a small file). Once you have it downloaded, place it in your platform-tools folder (you must run android.exe or equivalent to get the sdk tools which is how this folder is downloaded to your computer)
    Once you have those, then you can unlock the bootloader. Follow this tutorial. If you are using a windows machine, use command prompt (type cmd in the start menu). Remember where you have the sdk downloaded to. I have mine in c:\ on my desktop, so my code for navigating to it would be:
    Code:
    cd c:\android-sdk-windows\platform-tools
    the only other difference from my video is wherever is put "./" you leave out
    for example,
    Mac code:
    Code:
    ./adb reboot bootloader
    is Windows code:
    Code:
    adb reboot bootloader
    Here's the video:
    [YT]http://www.youtube.com/watch?v=3tF-Sz_yjYI[/YT]

    Once you've done that, you can update immediately afterwards
    Download the update file and put it on your phone
    Download a toro (verizon galaxy nexus code name) specific clockwork mod recovery, I used the new touch recovery. Place the recovery image (i renamed mine to recovery.img) into that platform-tools folder
    code for this is really simple:
    Code:
    adb reboot bootloader
    fastboot boot recovery.img
    here's that video:
    [YT]http://www.youtube.com/watch?v=aADB4nCw-AI[/YT]
    Thanked by 4:
    Cory Streater and sytech55 like this.
  11. #11  
    diverbelow's Avatar

    Posts
    224 Posts
    Global Posts
    264 Global Posts
    ROM
    Stock

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by Andrew Ruffolo View Post
    I made a series of videos... never rooted my nexus. You don't need to. You just need to unlock the bootloader, but that will wipe your phone. Its why everyone here recommended unlocking the bootloader from day 1. Updating from 4.0.2 to 4.0.4 doesn't require a wipe, so if you unlocked your bootloader, you will keep all your info.

    First, unlock the bootloader. You can do this on any computer (windows, mac, linux). My videos are done on mac, but the general process is exactly the same.
    Download the sdk and install it from
    next, you will need to get fastboot for your computer. You can google and download it, or if you're tech savvy, you can compile it on your own (I would just download it, its a small file). Once you have it downloaded, place it in your platform-tools folder (you must run android.exe or equivalent to get the sdk tools which is how this folder is downloaded to your computer)
    Once you have those, then you can unlock the bootloader. Follow this tutorial. If you are using a windows machine, use command prompt (type cmd in the start menu). Remember where you have the sdk downloaded to. I have mine in c:\ on my desktop, so my code for navigating to it would be:
    Code:
    cd c:\android-sdk-windows\platform-tools
    the only other difference from my video is wherever is put "./" you leave out
    for example,
    Mac code:
    Code:
    ./adb reboot bootloader
    is Windows code:
    Code:
    adb reboot bootloader
    Here's the video:


    Once you've done that, you can update immediately afterwards
    Download the update file and put it on your phone
    Download a toro (verizon galaxy nexus code name) specific clockwork mod recovery, I used the new touch recovery. Place the recovery image (i renamed mine to recovery.img) into that platform-tools folder
    code for this is really simple:
    Code:
    adb reboot bootloader
    fastboot boot recovery.img
    here's that video:
    There is a way to push the update to the /cache folder without unlocking the boot loader. I saw at android forums scary alien showed how to root without unlocking and I mod some steps to push the update to the /cache folder and was able to update to 4.0.4.
  12. #12  
    Andrew Ruffolo's Avatar

    Posts
    3,809 Posts
    Global Posts
    3,815 Global Posts
    ROM
    Stock

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by diverbelow View Post
    There is a way to push the update to the /cache folder without unlocking the boot loader. I saw at android forums scary alien showed how to root without unlocking and I mod some steps to push the update to the /cache folder and was able to update to 4.0.4.
    As you said, you need root access.
  13. #13  
    diverbelow's Avatar

    Posts
    224 Posts
    Global Posts
    264 Global Posts
    ROM
    Stock

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by Andrew Ruffolo View Post
    As you said, you need root access.
    In a way yes, but only temporary through adb. Here is what I did: and I did not have to unlock my boot loader.

    It was a simple, and even did the update to my wife's phone last night.
    Thanked by:
    PhilD 
  14. #14  

    Default Re: Official 4.0.4 release date and questions

    Safest bet for an OTA update is probably sometime in March.
  15. #15  
    diverbelow's Avatar

    Posts
    224 Posts
    Global Posts
    264 Global Posts
    ROM
    Stock

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by Feudal1 View Post
    Safest bet for an OTA update is probably sometime in March.
    I know the 4.0.4 is already up on Google's servers but VZW has to have their hand in the update, so we are waiting. I did not buy a Nexus phone, so the carrier can screw with the updates. If I wanted that, I would have bought a different phone.

    Since upgrading yesterday, I noticed today with a full charge, I am getting better battery life and a lot snappier.
  16. Thread Author  Thread Author    #16  

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by Andrew Ruffolo View Post
    I made a series of videos... never rooted my nexus. You don't need to. You just need to unlock the bootloader, but that will wipe your phone. Its why everyone here recommended unlocking the bootloader from day 1. Updating from 4.0.2 to 4.0.4 doesn't require a wipe, so if you unlocked your bootloader, you will keep all your info.

    First, unlock the bootloader. You can do this on any computer (windows, mac, linux). My videos are done on mac, but the general process is exactly the same.
    Download the sdk and install it from
    next, you will need to get fastboot for your computer. You can google and download it, or if you're tech savvy, you can compile it on your own (I would just download it, its a small file). Once you have it downloaded, place it in your platform-tools folder (you must run android.exe or equivalent to get the sdk tools which is how this folder is downloaded to your computer)
    Once you have those, then you can unlock the bootloader. Follow this tutorial. If you are using a windows machine, use command prompt (type cmd in the start menu). Remember where you have the sdk downloaded to. I have mine in c:\ on my desktop, so my code for navigating to it would be:
    Code:
    cd c:\android-sdk-windows\platform-tools
    the only other difference from my video is wherever is put "./" you leave out
    for example,
    Mac code:
    Code:
    ./adb reboot bootloader
    is Windows code:
    Code:
    adb reboot bootloader
    Here's the video:


    Once you've done that, you can update immediately afterwards
    Download the update file and put it on your phone
    Download a toro (verizon galaxy nexus code name) specific clockwork mod recovery, I used the new touch recovery. Place the recovery image (i renamed mine to recovery.img) into that platform-tools folder
    code for this is really simple:
    Code:
    adb reboot bootloader
    fastboot boot recovery.img
    here's that video:
    I guess I will have to wait. None of this makes any sense to me. I got as far as downloading the first two things and then from there I got lost. Maybe it is because I am on a PC and the tutorial is on a Mac, I don't know. All I know is that this made my head hurt.
  17. #17  
    EggoEspada's Avatar

    Posts
    707 Posts
    Global Posts
    745 Global Posts
    ROM
    Buglessbeast/Stock

    Default

    Quote Originally Posted by DisturbedShifty View Post
    I guess I will have to wait. None of this makes any sense to me. I got as far as downloading the first two things and then from there I got lost. Maybe it is because I am on a PC and the tutorial is on a Mac, I don't know. All I know is that this made my head hurt.
    Just use the GNex toolkit. You can backup your data before unlocking, and takes some really simple steps to achieve. Its all very self explanatory.

    Sent from my Galaxy Nexus
    So many phones, so little time.
  18. #18  

    Default Re: Official 4.0.4 release date and questions

    I feel like I got railroaded by the same truck as wp7. there was talk of fast updates and stuff but i haven't seen anything since 4.0.2. i can't root the phone due to corpnet policy so I must wait for official release.
  19. #19  
    Cory Streater's Avatar
    Forums Emeritus

    Posts
    13,092 Posts
    Global Posts
    13,813 Global Posts

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by Andrew Ruffolo View Post
    I made a series of videos... never rooted my nexus. You don't need to. You just need to unlock the bootloader, but that will wipe your phone. Its why everyone here recommended unlocking the bootloader from day 1. Updating from 4.0.2 to 4.0.4 doesn't require a wipe, so if you unlocked your bootloader, you will keep all your info.

    First, unlock the bootloader. You can do this on any computer (windows, mac, linux). My videos are done on mac, but the general process is exactly the same.
    Download the sdk and install it from
    next, you will need to get fastboot for your computer. You can google and download it, or if you're tech savvy, you can compile it on your own (I would just download it, its a small file). Once you have it downloaded, place it in your platform-tools folder (you must run android.exe or equivalent to get the sdk tools which is how this folder is downloaded to your computer)
    Once you have those, then you can unlock the bootloader. Follow this tutorial. If you are using a windows machine, use command prompt (type cmd in the start menu). Remember where you have the sdk downloaded to. I have mine in c:\ on my desktop, so my code for navigating to it would be:
    Code:
    cd c:\android-sdk-windows\platform-tools
    the only other difference from my video is wherever is put "./" you leave out
    for example,
    Mac code:
    Code:
    ./adb reboot bootloader
    is Windows code:
    Code:
    adb reboot bootloader
    Here's the video:


    Once you've done that, you can update immediately afterwards
    Download the update file and put it on your phone
    Download a toro (verizon galaxy nexus code name) specific clockwork mod recovery, I used the new touch recovery. Place the recovery image (i renamed mine to recovery.img) into that platform-tools folder
    code for this is really simple:
    Code:
    adb reboot bootloader
    fastboot boot recovery.img
    here's that video:
    Nice work, Andrew!
  20. Thread Author  Thread Author    #20  

    Default

    Quote Originally Posted by EggoEspada View Post
    Just use the GNex toolkit. You can backup your data before unlocking, and takes some really simple steps to achieve. Its all very self explanatory.

    Sent from my Galaxy Nexus
    What exactly do you have to back up before unlocking your phone?

    Sent from my Galaxy Nexus
  21. #21  
    wtherrell's Avatar

    Posts
    256 Posts
    ROM
    JBSourcery 2.4/ Franco 6

    Default

    Quote Originally Posted by greydarrah View Post
    And maybe a giant asteroid will hit the earth tomorrow and it wont matter.
    No. According to a program I saw on the History Channel, the asteroid isn't due until December 2012 when the Mayan calendar runs out. Hope we get the update before then so we can track the destruction around the world.
  22. #22  

    Default Re: Official 4.0.4 release date and questions

    No one seems to think to themselves maybe the Mayans just ran out of rock to make more calendar
  23. #23  

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by Castor_troyy View Post
    No one seems to think to themselves maybe the Mayans just ran out of rock to make more calendar
    Makes sense to me!
  24. #24  

    Default Re: Official 4.0.4 release date and questions

    Quote Originally Posted by Andrew Ruffolo View Post
    I made a series of videos... never rooted my nexus. You don't need to. You just need to unlock the bootloader, but that will wipe your phone. Its why everyone here recommended unlocking the bootloader from day 1. Updating from 4.0.2 to 4.0.4 doesn't require a wipe, so if you unlocked your bootloader, you will keep all your info.

    First, unlock the bootloader. You can do this on any computer (windows, mac, linux). My videos are done on mac, but the general process is exactly the same.
    Download the sdk and install it from
    next, you will need to get fastboot for your computer. You can google and download it, or if you're tech savvy, you can compile it on your own (I would just download it, its a small file). Once you have it downloaded, place it in your platform-tools folder (you must run android.exe or equivalent to get the sdk tools which is how this folder is downloaded to your computer)
    Once you have those, then you can unlock the bootloader. Follow this tutorial. If you are using a windows machine, use command prompt (type cmd in the start menu). Remember where you have the sdk downloaded to. I have mine in c:\ on my desktop, so my code for navigating to it would be:
    Code:
    cd c:\android-sdk-windows\platform-tools
    the only other difference from my video is wherever is put "./" you leave out
    for example,
    Mac code:
    Code:
    ./adb reboot bootloader
    is Windows code:
    Code:
    adb reboot bootloader
    Here's the video:


    Once you've done that, you can update immediately afterwards
    Download the update file and put it on your phone
    Download a toro (verizon galaxy nexus code name) specific clockwork mod recovery, I used the new touch recovery. Place the recovery image (i renamed mine to recovery.img) into that platform-tools folder
    code for this is really simple:
    Code:
    adb reboot bootloader
    fastboot boot recovery.img
    here's that video:
    Andrew, no matter what I do I keep getting the error "cannot load recovery.img" Any explanation?

    Thanks!
  25. #25  

    Default Re: Official 4.0.4 release date and questions

    Hey everyone. I just flashed a rooted version of the 4.0.4 ota and flashed Franco's kernel. Battery isn't very good at all but the phone is running very well. Anyway, when I flashed the rooted ota you could get one WITH or WITHOUT new radios. I got the one WITH. What is the difference and did I make the correct decision??
Page 1 of 4 1234 LastLast

Posting Permissions