How to Downgrade Android Apps to Older Versions (And Keep Your Data)

Key Takeaways

  • You can downgrade most Android apps by going to Settings > Apps > Manage Apps and choosing to “Uninstall Updates” for a particular app, but this will also log out and remove all your app data.
  • To downgrade an app and keep your data, set up Android Debug Bridge and sideload an app using the APK file for the version you want.
  • Finally, avoid unwanted updates in the Play Store by going to Settings > Network Preferences > Auto-Update Apps and selecing “Don’t Auto-Update Apps.”

Sometimes an update breaks an app’s functionality or slows it down. Sometimes developers redesign the UI or leave out the features you like. But you can get your favorite interface and features back by downgrading the app to an older version.

What You Need to Downgrade an App

The Android UI lets you downgrade some apps with a single tap. Just go to Settings > Apps > Manage Apps. Select the app you want to downgrade. Then tap “Uninstall Updates.” But for most apps, you’ll have to uninstall the current app and sideload the older version using an APK file. Either way, both methods log out all your accounts and erase any saved progress or preferences, which is far from ideal.

For a seamless downgrade that keeps the data intact, you need to use the Android Debug Bridge (ADB) instead. Here’s what you’ll need to do that:

  1. A computer (I used one running Windows)
  2. A cable to connect your device to the computer
  3. An APK file for the older app version

This method may not work perfectly for all apps on devices with Android 9 or older.

Back up your phone, including any important login credentials or app data before proceeding. Secondly, watch out for critical security updates. We don’t recommend skipping or downgrading those.

Step 1. Set Up ADB

ADB is a command-line tool for interacting with an Android device through a computer. To set it up, you’ll need to download SDK Platform Tools from the official Android website. Extract the downloaded zip file anywhere on your computer. Then open the extracted folder.

An extracted folder containing Platform Tools.

Hold down the Shift key and right-click on a blank area. When the context menu opens, click “Open Powershell Window Here.”

A red arrow pointing at the context menu item for launching Powershell.

Once the terminal appears, connect your Android device to your computer via a USB cable.

On your phone, select “File Transfer” on the pop-up menu. Go to Settings > About Phone > Build Number. Tap Build Number seven times, or until you see the “You are now a developer!” message. This action unlocks Developer Options on Android.

Next, go to Settings > System > Advanced > Developer Options > USB Debugging. Enable USB Debugging and tap OK to confirm.

To test the ADB connection type the following command in the PowerShell terminal on your computer and press Enter.

adb devices
ADB connection successfully established inside PowerShell.

The device ID should show up if the connection is working. If it returns a blank ID, you’ll have to install the Android drivers for your device first.

Step 2. Downgrade an App Using ADB

With ADB working, all you need is the APK file for the desired version of the app you want to downgrade to.

Be careful when installing APK bundles from third parties since these files can contain malware.

I recommend downloading the untouched APK file from a trusted source, like APKMirror or the official website for the app. Then we’ll install that version on top of the current one (while keeping the data intact).

Normally, Android doesn’t allow installing apps on top of older versions. But you can bypass that restriction by using ADB commands. We’ll demonstrate the step-by-step process by downgrading Twitter to an older version. That’s right, you can follow this process to revert from X to Twitter!

First, copy the APK file to the Platform Tools folder on your computer.

A red arrow pointing at the APK file for the old Twitter app.

The APK file will likely have a long and complicated name. Renaming it to something simpler keeps things tidy and manageable.

In the PowerShell window, type the following and press Enter. Remember to replace “twitter.apk” with the name of your APK file.

adb install -d twitter.apk
The app installation process inside an ADB terminal.

Wait for the “Success” message.

Successful app installation inside an ADB terminal.

The command restored the older version of Twitter without logging me out.

The X (formerly Twitter) app being downgraded to the old Twitter app.

The APK files for some apps are split into multiple packages. To install a split APK bundle, download the APKM bundle and use 7Zip or a similar app to extract the APKM file anywhere.

APKM file extracted to a folder.

Navigate to the extracted folder and copy the APK files to the Platform Tools folder.

 Different split APK files inside the Platform Tools folder.

Enter the following command in the PowerShell terminal.

adb install-multiple -d base.apk config1.apk config2.apk config3.apk

Wait for the “Success” message.

Step 3. Disable Auto Updates

By default, the Google Play Store automatically updates apps to their latest version. To prevent your newly downgraded app from getting updates, you’ll have to disable the Auto Update feature.

Open the Google Play Store app and tap your profile icon. Go to Settings > Network Preferences > Auto-Update Apps. Select “Don’t Auto-Update Apps.”

Your app is now locked into the same version until you manually update it.


With that, you have everything you need to downgrade an Android without losing its data. And you’ll never be stuck with an update you don’t like.


source
share

Leave a Comment