Skip to main content

Heres the fastest way to get Android Oreo on your Nexus or Pixel right now

Heres the fastest way to get Android Oreo on your Nexus or Pixel right now


Heres how to get the Android Oreo on your Nexus or Pixel device.

Android Oreo, and if youre looking to install it on your phone or tablet, there are a bunch of ways to do it. But first � can you do it?

Which devices support the Android Oreo update?

The preview is supported on the following phones and tablets:

  • Pixel
  • Pixel XL
  • Pixel C
  • Nexus 6P
  • Nexus 5X
  • Nexus Player

Download Android Oreo

If you dont want to mess with unlocking your bootloader or the command line, you will get an update to Android Oreo if youre part of the Android Beta program. That means that if you have one of the above eligible devices, you can simply visit the Android Beta portal and opt-in to the beta, which will then prompt Google to send your phone or tablet an over-the-air update. If youre already in the public beta, you will receive an over-the-air update to the final version of Android Oreo shortly.

  1. Head to Android Beta program portal on your Pixel or Nexus phone or tablet.
  2. Sign into the Google account associated with that phone.
  3. Scroll down to Your eligible devices.
  4. Find the device you want to enrol in the Beta program and tap Enrol device.
  5. Follow the prompts to accept the over-the-air download.

Note: To leave the beta program, simply press the button on the Android Beta program page to unenroll. Your phone will receive an over-the-air update to return to the stable version of Android 7.1.2 Nougat, but your phone will be wiped clean upon rebooting, so back up your stuff.

Note #2: The Android beta program will end soon, and once thats finished, your phone will no longer be able to revert back to Nougat. So consider the upgrade to Oreo permanent once youve received the update.

Install Android Oreo from the command line

What you need to know beforehand

Android Oreo is also being released as a factory image, which is available to download from the Android Developer Portal.

In order to update a phone or tablet to Android Oreo this way, you need to first unlock your bootloader.

Before we go into these steps, it is strongly recommended that you have previous knowledge of working with the Android SDK (software development kit) and Terminal (OS X or Linux) or Command Prompt (Windows), as it is possible to harm your device if something were to go wrong in the following process.

Youll need to download an updated Android SDK that has the latest Android Oreo tools and images, and you can grab it from the Android Development website and follow their instructions on how to install it correctly. For the following process, all you will need is the adb and fastboot files.

Additionally, all the following commands are written as they would be in Terminal on a Linux or OS X platform. If you are following this guide and using a Windows machine, you will not need to use the "./" seen in the guide.

Enable developer settings and USB debugging

Before you begin, youll need to have a compatible Nexus or Pixel device running Android 7.x Nougat.

  1. Go to your Settings and scroll down to About Phone/Tablet
  2. Tap on the Build number seven times until the dialog box says you are now a developer
  3. Go back to the Settings menu and you should find a new option called Developer options. Click into the Developer options
  4. Make sure that the developer options are turned on and that USB debugging is checked on
  5. Make sure Enable OEM unlock is checked.
  6. Plug your device into your computer and click "OK" on the dialog box asking you to Allow USB debugging while connected to the computer. You can also select to always allow access on that computer

If done correctly, this will be everything you will need to do on your phone or tablet for the moment.

Unlocking your bootloader

Nexus devices and Pixel phones bought from Google directly have a bootloader you can unlock. If you want to manually flash software, youll need to do this.

To do this you must first boot into your bootloader. You can either manually turn off your phone or tablet and hold down the power button and the volume down button to enter your devices Bootloader Menu or you can enter the following commands into your terminal or command prompt.

Run the following command to make sure your device is properly connected to your computer. If it returns a string of characters it means that you are all set to start updating your device.

./adb devices

Now to enter into the Bootloader menu just run the following command.

./adb reboot bootloader

At the bottom of the screen, there will be several things listed including the lock state of the device. This should say locked unless you have unlocked your bootloader in the past and never went back and locked it again.

To unlock your bootloader, which is required only when flashing a stock firmware image (not sideloading and update, which well get to soon), you must enter the following commands. Remember that when unlocking your Nexus bootloader it will factory reset your device, so you will lose everything stored on it. If you have not yet backed up anything important on your device you can hit the power button while Start is highlighted in the Bootloader menu and this will boot you back into your device like normal. Now back to unlocking your bootloader.

Use the command:

./fastboot flashing unlock

A dialog will appear on the device asking if you are sure about unlocking. Again this will factory reset your device, so if you want to back out of the process you just need to select no with the power button. If you are ready to unlock your bootloader you press the volume up button and then the power button to confirm that you wish to unlock your bootloader.

./fastboot reboot-bootloader

It is recommended to reboot the bootloader just to give itself a check to make sure everything is working correctly before moving onto the next step.

Flashing the stock firmware image

Now that your bootloader is unlocked, its time to flash the Android Oreo image. To find the system images, head on over to the Factory Images page, find your device, and download the latest factory image available. It is easiest to then uncompress the file in the Platform Tools folder where the adb and fastboot files are so that you dont have to type the path to the different files when flashing the firmware. (Or if you know that you can drag a file into a terminal window to copy the path, just do that.)

To begin, make sure you are still in the bootloader menu on your device and double check that your bootloader is in fact unlocked.

First, make sure that your computer is communicating correctly with your phone or tablet. As long as your devices serial number comes back as a connected device you are ready to begin updating your device.

./fastboot devices

Now it is time to flash the updated bootloader with the following command.

./fastboot flash bootloader [bootloader file].img

You will not see anything on the screen of your device but there should be a dialog in your terminal or command prompt. When it is done flashing the bootloader you should reboot back into the bootloader as to make sure everything is still working correctly.

./fastboot reboot-bootloader

Next you flash the updated radios. This step is only necessary if you are updating the firmware of a phone or tablet that has cellular radios built into it.

./fastboot flash radio [radio file].img

./fastboot reboot-bootloader

Finally, its time to flash the actual system image to your phone or tablet.

Warning: The following line of code will wipe your device. If you do **not* want your device to be wiped, remove the "-w" from the command. The update should still take just fine, and it will not wipe your user data.

./fastboot -w update [image file].zip

When this is done, your phone will restart itself and boot up normally. As this process clears all data from your device, it will take slightly longer for your device to boot up into Android Oreo for the first time. Once you have been greeted with the device setup walkthrough process, you know you have successfully flashed a new version of the firmware.

If you do not want to enter the commands manually there are scripts included inside the compressed folder containing the system image that will do most but not all of the heavy lifting for you. The flash-all script files will automate the flashing of the bootloader, radios (if needed), and the system image. The problem with this process is that you must first make sure that your phone is in the bootloader menu and its bootloader must be unlocked before starting the script. Of course, if these are not already done the script will fail to run and nothing will happen.

How to revert back to Nougat from Android Oreo

So youre not happy with Oreo and need to re-install Nougat. Thats pretty easy! If you installed Android Oreo using the factory image, all you need to do is find the right system image compatible with your handset or slate and run the same procedures as above but with the Android Nougat image.

When finding your Nougat image, make sure you are downloading the correct one that corresponds with your device. If youre running a Verizon or Rogers Pixel, for instance, youll have to make sure you download the right one.

If you opted into the beta and want to roll back, just unenroll from the beta and restart your phone. However, once the beta program ends, which it should be soon, you wont be able to roll back.

Problems? Confused?

If youre having issues or want to ask a question, come join us in our forums for all the tips, tricks and advice you can handle!

Android Oreo

  • Android Oreo review!
  • Everything new in Android Oreo
  • How to get Android Oreo on your Pixel or Nexus
  • Join the Discussion


from Android Central - Android Forums, News, Reviews, Help and Android Wallpapers http://ift.tt/2rsayv0
via IFTTT

download file now

Popular posts from this blog

Lightshot Easy Screen Shot Print Screen terbaru Desember 2016 versi 5 4 0 1

Lightshot Easy Screen Shot Print Screen terbaru Desember 2016 versi 5 4 0 1 Do you want to take screenshots outside of your browser? Choose the most functional Lightshot download option in order to get this opportunity. This application allows you to take screenshots directly from your desktop. Feature : Fast screenshot of selected area - Our app allows you to select any area on your desktop and take its screenshot with 2 button-clicks. Easy-to-use application - Simple interface of our app, its useful features and light weight make your work so very fast and pleasant. Share screenshots via Internet - Upload your screenshot to the server and get its short link right away. Powerful editors - You can edit screenshots instantly when taking them or later using a powerful online editor. Similar image search - Find similar images. Select any image on your screen and find dozens similar images. Various Platforms - Lightshot is available for Windows/Mac, Chrome, Firefox, IE & Opera....

SHERLOCK HOLMES THE HOUND OF BASKERVILLES O CÃO DOS BASKERVILLES DUBLADO 1959

SHERLOCK HOLMES THE HOUND OF BASKERVILLES O CÃO DOS BASKERVILLES DUBLADO 1959 DETALHES T�CNICOS DO ARQUIVO �timo filme cl�ssico com Christopher Lee para download gr�tis. Download do filme legendado, download do torrent e download da legenda em portugu�s. Veja abaixo os dados t�cnicos deste filme. FICHA T�CNICA LINK DIRETO �UDIO: PORTUGU�S LEGENDAS: SEM LEGENDAS FORMATO: AVI - MKV TAMANHO: 461Mb - 990Mb LINKS: PARTE �NICA FICHA T�CNICA BAIXAR TORRENT �UDIO: INGL�S LEGENDAS: COM OU SEM LEGENDAS FORMATO: V�RIOS SINOPSE Um mal demon�aco oculta-se no fundo dos penhascos cobertos pela n�voa dos lend�rios terrenos de ca�a na Inglaterra. Na forma de um diab�lico c�o de ca�a, ele se alimenta da carne dos herdeiros da mans�o Baskerville. Mas antes que essa besta selvagem possa cravar seus dentes no mais novo dono da propriedade, ele precisa lan�ar suas ferozes presas contra o perspicaz intelecto do mais poderoso advers�rio que ele jamais encontrou, o incompar�vel Sherlock Holmes. Mais informa��e...

How to Run Mac OS Sierra on a PC Windows 10 8 or 7 Best Method 2017

How to Run Mac OS Sierra on a PC Windows 10 8 or 7 Best Method 2017 Birsa Agricultural University Recruitment 2017� 85 Scientist, Programme Assistant Graduate Pass Govt Job Birsa Agricultural University is going to recruit fresher candidates in India for Scientist, Programme Assistant Posts. So, those candidates who are willing to work with this organization they May apply for this post. Last Date of Apply 28-August-2017. Total numbers of vacancies are 85Posts. Only those candidates are eligible who have passed Bachelor�s Degree in Agriculture or other branch of science relevant to Agriculture or equivalent/ qualification from a recognized university. Indian citizen having age in between 18 to 35 years can apply for this Birsa Agricultural University Recruitment 2017. Those who are interested in these Birsa Agricultural University jobs in India and meet with the whole eligibility criteria related to these Birsa Agricultural University job below in the same post. Read the whole arti...