Notices



How to install Android 13 on Google Pixel and other Android devices

AVN News Feed

Post New ThreadReply
 
Thread Tools
  #1  
Old 04-29-2022, 11:33 AM
phillynewsnow's Avatar
phillynewsnow phillynewsnow is offline   Thread Starter  
Site Moderator - Staff

 
Join Date: October 11th, 2009
Posts: 4,640
Thanks: 0
Thanked 668 Times in 568 Posts
Downloads: 0
Uploads: 0


View phillynewsnow's Profile   Edit Options Edit Profile Picture View phillynewsnow's Photo Album Add phillynewsnow's to Your Contacts Show Groups Edit Avatar Subscribed Threads Private Messages
How to install Android 13 on Google Pixel and other Android devices

How to install Android 13 on Google Pixel and other Android devices



Android 13 is currently available as a beta release. The flashaholics will be delighted to know that Google has already made the system images available for download. You can give it a shot right now if you’ve got the right hardware, but there aren’t as many supported devices this time around. All you’ve got to choose from are the Google Pixel 4, Pixel 4 XL, Pixel 4a, Pixel 4a 5G, Pixel 5, Pixel 5a, Pixel 6, and the Pixel 6 Pro.

The pre-release builds of Android 13 are, of course, rough around the edges, so Google doesn’t want to make it too easy to install it on your daily driver. You’ll need an eligible Pixel smartphone with an unlocked bootloader to flash the system image using your computer. There are also OTA files, which update your Pixel to the Developer Preview/Beta without an unlocked bootloader. However, you still need to manually sideload the OTA package for the initial build.

Warning: The preview releases are intended for developers only, so don’t install them on your daily driver. You might encounter showstopper bugs or other system instabilities. It is highly recommended that you back up your data before proceeding. Users are advised to exercise caution.


The three methods to install the update are:

Method 1: Sideload Android 13 via Recovery and ADB

To install the Developer Preview/Beta, you need to sideload the appropriate OTA package for your device from Recovery through ADB. This method will also work for Google Pixel devices with a locked bootloader.

  1. Download the update .zip file on your computer from here. For convenience, you can rename this file to a simpler name and place the file in the directory where ADB is located on your computer.
  2. Optional, but recommended: Verify the SHA-256 checksum of the file you have downloaded to ensure that the file has been downloaded completely and correctly.
  3. Enable USB Debugging on your phone — Go to Settings > About Phone > Tap Build Number 7 times, (optionally) enter your pattern, PIN or password to enable Developer Options, and then navigate to Settings > Developer Options > Enable USB Debugging.
  4. Connect your phone to your computer. Authorize your computer connection on your phone when the prompt comes up on your phone, if this is the first time you are connecting with the ADB instance of this computer.
  5. On your computer, run the command: adb reboot recovery
  6. You should see ?No command? on your phone screen. Now press and hold the Power button of your phone. While you hold Power, press the Volume Up button and let go of both buttons quickly. You should the Android recovery menu.
  7. Select the option Apply Update from ADB from the recovery menu.
  8. On your computer, run the command: adb devices
    This should return a device serial with the “sideload” next to its name, indicating that your device is connected to the computer in sideload mode.
  9. On your computer, run the command: adb sideload "filename".zip
    The “filename” part is to be replaced with the name of the file downloaded in Step 1.
  10. The update should install on your phone. Once the installation is complete, choose Reboot system now on your phone to reboot into Android 13.
Method 2: Flashing full Factory Image via Fastboot

If you have an unlocked bootloader on a Google Pixel device, you need to flash the factory image of the Android 13 Developer Preview/Beta via Fastboot. Usually, this is done through a flash-all.sh or flash-all.bat script file that is included in the downloaded file, but its default configuration also wipes the device completely. You can, however, retain your data by deleting the “-w” wipe attribute from the command within the script.

  1. Download the factory image .zip file on your computer from here.
  2. Optional, but recommended: Verify the SHA-256 checksum of the file you have downloaded to ensure that the file has been downloaded completely and correctly.
  3. Extract the .zip file, and copy and paste the resultant files onto your ADB and fastboot folder on your computer for convenience.
  4. Optional: The resultant files would contain a flash-all.sh or flash-all.bat script file. Using a text editor, open the flash-all.sh if you’re on macOS/Linux or the flash-all.bat script file if you’re on Windows. Find and remove/delete the -w flag in the fastboot update command. This will skip the data wipe for your phone. To avoid compatibility issues, a data wipe is recommended though.
  5. Enable USB Debugging on your phone — Go to Settings > About Phone > Tap Build Number 7 times, (optionally) enter your pattern, PIN or password to enable Developer Options, and then navigate to Settings > Developer Options > Enable USB Debugging.
  6. Connect your phone to your computer. Authorize your computer connection on your phone when the prompt comes up on your phone, if this is the first time you are connecting with the ADB instance of this computer.
  7. On your computer, run: adb reboot bootloader
    This will reboot your phone into Fastboot mode.
  8. On your Mac/Linux PC, run: flash-all
    This command executes the flash-all.sh script file, which will then install the necessary bootloader, baseband firmware, and operating system. If you are on Windows, you can simply double click the flash-all.bat file.
  9. Once the script finishes, your device will reboot into the new OS.
Method 3: Install Android 13 GSI

Even if you don?t own a compatible Pixel smartphone, you can still install Google?s official GSI binaries to test Android 13, provided your device is compatible with Project Treble. You also need an unlocked bootloader. The last thing that we need to say is that flashing a GSI will require you to factory reset your device, so be sure you?re prepared to lose app data before you proceed with this! We recommend you make an off-device backup (such as on your PC or an SD Card) in case anything goes wrong.

  1. Download links for the official Android 13 Beta GSIs can be found here. Google has yet to publish GSIs based on the stable release. You should download the appropriate version based on your device?s architecture. To see which architecture your device has, run the following command: adb shell getprop ro.product.cpu.abi
  2. Optional but recommended: Verify the SHA-256 checksum of the file you have downloaded to ensure that the file has been downloaded completely and correctly.
  3. Extract the .zip file, and copy and paste the resultant files (system.img and vbmeta.img) onto your ADB and fastboot folder on your computer for convenience.
  4. Enable USB Debugging on your phone — Go to Settings > About Phone > Tap “Build Number” 7 times, (optionally) enter your pattern, PIN or password to enable Developer Options, and then navigate to Settings > Developer Options > Enable “USB Debugging”.
  5. Connect your phone to your computer. Authorize your computer connection on your phone when the prompt comes up on your phone, if this is the first time you are connecting with this ADB computer.
  6. On your computer, run: adb reboot bootloader
    This will reboot your phone into Fastboot mode.
  7. As mentioned earlier, the bootloader of the target device must be unlocked beforehand.
  8. Next, we need to disable Android Verified Boot (AVB). To do that, run the following command: fastboot flash vbmeta vbmeta.img
  9. Optional but recommended: Enter the following to wipe the system partition: fastboot erase system
  10. Flash the Android 13 GSI: fastboot flash system system.img
  11. Allow the image to flash, it could take a few minutes. Once that?s done, wipe the userdata partition: fastboot -w
  12. Finally, reboot your device: fastboot reboot
  13. Hopefully, your device should boot into the new build of Android.

The post How to install Android 13 on Google Pixel and other Android devices appeared first on XDA.



More...
Reply With Quote
The Following User Says Thank You to phillynewsnow For This Useful Post:
  #2  
Old 01-27-2024, 02:59 PM
phillynewsnow's Avatar
phillynewsnow phillynewsnow is offline   Thread Starter  
Site Moderator - Staff

 
Join Date: October 11th, 2009
Posts: 4,640
Thanks: 0
Thanked 668 Times in 568 Posts
Downloads: 0
Uploads: 0


View phillynewsnow's Profile   Edit Options Edit Profile Picture View phillynewsnow's Photo Album Add phillynewsnow's to Your Contacts Show Groups Edit Avatar Subscribed Threads Private Messages
Rss Feed The Switch 2 Might Ditch OLED Technology for its Display

While it hasn’t been officially announced by Nintendo at the moment, a lot of folks are nevertheless expecting the arrival of the Big N’s Switch successor this year, currently dubbed the “Switch 2.” We’ve gotten a number of supposed launch windows, although there hasn’t been much mentioned in the way of hardware, that is until now.

A prediction from analyst Hiroshi Hayase states that Nintendo’s next mainline console will come with an 8-inch display, which is a bit larger than the 7-inch screen on the Switch OLED model. Unlike the current model however, Hayase says that the Switch will go back to using an LCD display in lieu of an OLED panel.

This might come as a disappointment for some, given that OLED displays typically feature more vibrant colors and richer contrast levels when compared to their LCD counterparts. Of course at this point this is only a prediction, although there’s always the possibility that Nintendo might launch a separate OLED model down the line.

Earlier on, statements made online from AI Shark (formerly Gameshark) seem to indicate that the Switch 2 will launch sometime this fall, although no specific date was mentioned.

Source: IGN

The post The Switch 2 Might Ditch OLED Technology for its Display appeared first on Phandroid.




More...
Reply With Quote
Post New ThreadReply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to download Android 13 for Google Pixel and other Android devices phillynewsnow AVN News Feed 1 01-27-2024 02:59 PM
How to download Android 13 for Google Pixel and other Android devices phillynewsnow AVN News Feed 0 10-29-2022 03:30 AM
How to install Android 13 on Google Pixel and other Android devices phillynewsnow AVN News Feed 0 10-28-2022 07:35 AM
Google Pixel 6 can use more USB devices on Android 12L QPR3 phillynewsnow Random Community Topics 0 03-30-2022 10:34 AM
[RELEASE] Install Google Android on PC with Google Android LiveCD/LiveUSB CYBER WEESJE (Home) Pc Applications 0 07-17-2009 05:18 AM


All times are GMT -5. The time now is 02:24 AM.

Layout Options | Width: Fixed
Contact Us - SPJ Bulletin - Archive - Privacy Statement - Terms of Service - Top