When you purchase through links on our site, we may earn an affiliate commission. Here’s how it works.

How to flash Android N Developer Preview onto your Nexus device

After various leaks this morning, Google has finally released the Android N Developer Preview. If you're like us, you'll probably want to install it onto your Nexus 5X, 6, 6P, 9, or Player right away.

Flashing any kind of Android image onto a device can be a very tricky endeavor if you've never done it before. With Windows phones, a user installs an app and gets the OS preview over the air. With iOS, the user simply holds the Option key while clicking "Restore iPhone" in iTunes.

Google seems to be doing something with enrolling a phone in OTA updates, but the link that they provide shows an Error 404 at the moment, so it's not entirely clear what's going on there.

Nevertheless, this is a guide for not just flashing Android images to a Nexus, but any Android image to any device.

  1. First, download the package that you need to install. The Google packages need to be extracted a few times before you're left with a ZIP file.
  2. Next, you need the Android SDK. Assuming that you're not actually planning on developing apps, grab the SDK Tools Only at the bottom of this page.
  3. Once you've installed the SDK Tools, find the folder on your PC where it's located and open SDK Manager.
  4. In SDK Manager, check off Platform-Tools and Google USB Driver. Click Install and agree to whatever terms the app provides.
  5. Once that's done, copy the ZIP file you have, along with the other files that you were left with (flash-all, etc.) to the new Platform-Tools folder.
  6. While holding Shift, right-click on or in the Platform-Tools folder and select "Open command window here".
  7. Next, on the device, go into Settings -> About, and find your build number. Tap it seven times. This will unlock Developer Options.
  8. On the main Settings screen, you'll now see Developer Options. Open it and turn on "USB Debugging".
  9. Next, plug your device into your PC.
  10. In your command window that should be opened to Platform-Tools, type the following command: adb devices
  11. You might have to agree to some permissions on your device, but once you do, you should see your device in the command window. If you do, skip step 12.
  12. If you don't see your device in the command window, you need to install a driver for your device. That means that the Google USB driver that SDK Manager installed isn't enough. If it's a non-Nexus device, the OEM should have a web site that provides the driver. If you're using Windows 8/8.1, you have the Google USB Driver installed, and your PC isn't finding your Nexus device, try the Samsung USB Driver. Once your device shows up when you type adb devices, move on to the next step.
  13. In the command window, type adb reboot bootloader. This will reboot your device into Fastboot mode. There are other ways of doing this, which vary by device type.
  14. The next step is to unlock the bootloader. Some third party devices have an option in Settings that users will have to turn on or off to allow this to happen. Also, some third party devices require a code from the OEM to unlock the bootloader. Nexus devices do not. Type the following command: fastboot oem unlock
  15. Assuming all went well, you're ready to flash your Android image. Use this step for a Nexus device. If you're using a third party OEM device or you get an error with this step, move to the next step. Type the following command: flash-all. After a few minutes, you're good to go. Reboot your device to set it up.
  16. If you have a third party device, your package doesn't contain a flash-all file, or you just got an error, do the following. Unzip the ZIP file into the Platform-Tools folder. Enter the following commands (note that if you got an error using flash-all, skip the bootloader commands):
    fastboot erase bootloader
    fastboot erase system

    fastboot erase vendor
    fastboot erase cache
    fastboot erase recovery
    fastboot erase boot
    fastboot erase userdata
    fastboot flash bootloader <name of bootloader file>
    fastboot flash system system.img
    fastboot flash vendor vendor.img
    fastboot flash cache cache.img
    fastboot flash recovery receovery.img
    fastboot flash boot boot.img

You're all set with Android N! Just one note. The fastboot erase userdata command essentially does a factory reset of the device. Some believe that if they don't perform this command, they can upgrade their device without losing their account info, apps, and other such information. I've never been able to do that without causing serious errors.

When you're done, reboot your device and set it up like you would any other Android device. Have fun with Android N!

Be aware that Google advises that the Android N Developer Preview is intended for developers only, and not for consumers - especially those with limited technical knowledge.

Report a problem with article
Next Article

Microsoft slips Windows 10 upgrade banner inside security update for Internet Explorer

Previous Article

Meet the new cast of Gears of War 4

Join the conversation!

Login or Sign Up to read and post a comment.

13 Comments - Add comment