Thursday, March 28, 2024

How to install Android Q Beta 5 on your Pixel right now

Share

Get the latest Android version on your phone now.

android-q-beta-3.jpg?itok=o-V7yW3Y

We still don’t know what it’ll be called — what can it be called? — but Android Q is officially here, and its fifth beta is available now.

Update, July 10: The fifth Android Q beta is now available, and we’re getting really close to a final, stable version, which is expected to come later this summer. The fifth beta evens out some of the bugs, helps fix problems with the new gestures, and sets the stage for changes to how third-party launchers work with those gestures. You can read all about it.

  • The easy way
  • The harder way
  • Going back to Android 9 Pie

Which phones are receiving Android Q beta 5?

There are eight phones from Google currently getting Android Q beta 5:

  • Pixel 3 XL
  • Pixel 3
  • Pixel 3a
  • Pixel 3a XL
  • Pixel 2
  • Pixel 2 XL
  • Pixel
  • Pixel XL

Is there an expanded Android beta program for non-Google devices like there was with Android P?

Yes! There are now 20 phones from 12 different manufacturers, which is the most ever seen from the beta program.

  • ASUS ZenFone 5z
  • OnePlus 6T
  • Huawei Mate 20
  • Xiaomi Mi 9
  • Xiaomi Mi Mix 3 5G
  • Nokia 8.1
  • LG G8
  • Essential Phone
  • Sony Xperia XZ3
  • OPPO Reno
  • Tecno Spark 3 Pro
  • Realme 3 Pro
  • Vivo X27
  • Vivo NEX S
  • Vivo NEX A

You can’t simply opt into the beta program for these phones. Google’s put together a guide on how to update each one, and they have their own installation processes outlined on each page.

Some are easy — the Essential Phone, for instance, uses a simple Play Store app — while others are a bit more involved. Your mileage may vary.

The easy way — Android Beta Program

android-q-beta-1-1.jpg?itok=9TRKZA_P

The easiest and simplest way to get the Android Q beta is to enroll in the Android Beta Program.

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. Depending on the timing, your phone will receive the latest beta and then an OTA for the final version, or it will just receive the final version of Android Q.

Head to Android Beta program portal on your Pixel phone.
Sign into the Google account associated with that phone.
Scroll down to Your eligible devices.
Find the device you want to enroll in the Beta program and tap Opt in.
Follow the prompts on your phone to accept the over-the-air download.

What if I want to leave the beta program?

You can easily opt out of the beta program by going to the same Android Beta portal as you did to enroll, scroll down to your device, and tap Opt out.

Here’s what Google says will happen when you do that:

You may opt out of the programme at any time to return to the stable, public version of Android. If you opt out when your device is running a beta version of Android, all user data on the device will be wiped. If you choose to stay enrolled until the end of the programme, you will graduate from the programme and receive an update to the stable public release of Q. Your device will not be wiped.

While we don’t recommend doing it the hard way, below you’ll find instructions for downloading the Android Q beta using the official factory images. Beware of dragons!

The harder way — Flashing through bootloader

android-q-beta-1-2.jpg?itok=8_ZUhAjp

If you want complete control over your Android Q experience, you’ll need to go in through the back door — you’ll need to flash the factory image.

Before we go through the steps of sideloading Android updates, it is strongly recommended that you have previous knowledge of working with the Android SDK (software development kit) and the 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.

If you need to download the Android SDK 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 which are located in the Platform Tools folder, so make sure to read the description at the dev site and grab the right download.

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. Just type the rest of the command line by line in the order they are listed and you’ll be good.

Enable developer settings and USB debugging

Go to your Settings and scroll down to About Phone/Tablet.
Tap on the Build number seven times until the dialog box says you are now a developer.
Go back to the Settings menu and you should find a new option called Developer options. Tap into the Developer options.
Make sure that the developer options are turned on and that USB debugging is checked on.
Plug your device into your computer and tap “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

Pixel phones bought from Google directly have a bootloader you can unlock. If you want to manually flash software, you’ll 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 device’s 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 an update), you must enter the following commands. Remember that when unlocking your phone’s 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.

Now type:

./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 on to the next step.

Flashing the stock image or OTA update

Now that your bootloader is unlocked, it’s time to flash the new firmware. To find the images, head on over to the Android Q Factory Images page, find your device, and download the latest image. It is easiest to then uncompress the file in the Platform Tools folder you downloaded (where the adb and fastboot files are) so that you don’t 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 device’s serial number comes back as a connected device you are ready to begin updating your device.

./fastboot devices

Once you’ve verified that the phone and the computer can communicate the way they need to, you can get to flashing.

Flashing a full Factory Image

First, you’ll need 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 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, it’s time to flash the actual system image to your phone or tablet.

Warning: The following line of code will wipe your device. Normally, you can remove the “-w” from the command but when moving to a beta version of Android it’s not guaranteed to work.

./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 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 in 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.

Going back to Pie

android-p-easter-egg-2.jpg?itok=GoygRGV_

If your phone is freaking out or you just want to go back to Pie, it’s definitely possible. The process is simple, and you just learned how to do it! Simply go back through the same steps above, except for two changes: you don’t need to unlock your bootloader again, and you’ll want to download the Pie factory image from Google instead.

If you have any trouble along the way, be sure to hop into the forums and ask for help!

Read more

More News