Skip to content

Instantly share code, notes, and snippets.

@danielgormly
Created September 4, 2025 00:05
Show Gist options
  • Select an option

  • Save danielgormly/d689405d37c2b73ad73a4216275f9d04 to your computer and use it in GitHub Desktop.

Select an option

Save danielgormly/d689405d37c2b73ad73a4216275f9d04 to your computer and use it in GitHub Desktop.
Debloating Razer Edge Verizon 5G 2023

This guide helps you remove unnecessary Google, Razer & Verizon apps. I have tested these all on mine.

You might want to install Fdroid and an alternate browser before you begin.

  1. Download platform tools https://developer.android.com/tools/releases/platform-tools
  2. Put your Razer edge in developer mode by navigating to Settings -> About Tablet -> tap "Build number" 7 times
  3. Enable debuging by navigating to Settings -> Developer Options -> Enable "USB debugging"
  4. Plug in phone to computer and confirm connection with adb devices You should see your device listed:
List of devices attached
XXXXXXXXXXXXXX device
  1. Review all the commands below (you may want to keep some apps) and run them:
# Gaming apps
adb shell pm uninstall -k --user 0 com.epicgames.portal
adb shell pm uninstall -k --user 0 com.nvidia.geforcenow
adb shell pm uninstall -k --user 0 com.limelight
adb shell pm uninstall -k --user 0 com.valvesoftware.steamlink
adb shell pm uninstall -k --user 0 tv.parsec.client
# Google apps
adb shell pm uninstall -k --user 0 com.google.android.apps.youtube.music
adb shell pm uninstall -k --user 0 com.google.android.apps.maps
adb shell pm uninstall -k --user 0 com.google.android.apps.photos
adb shell pm uninstall -k --user 0 com.google.android.videos
adb shell pm uninstall -k --user 0 com.google.android.apps.magazines
adb shell pm uninstall -k --user 0 com.google.android.gm
adb shell pm uninstall -k --user 0 com.google.android.apps.docs
adb shell pm uninstall -k --user 0 com.google.android.apps.subscriptions.red
adb shell pm uninstall -k --user 0 com.google.android.calendar
adb shell pm uninstall -k --user 0 com.google.android.deskclock
adb shell pm uninstall -k --user 0 com.google.android.calculator
adb shell pm uninstall -k --user 0 com.google.android.apps.messaging
adb shell pm uninstall -k --user 0 com.google.android.apps.googleassistant
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # google duo/meet
adb shell pm uninstall -k --user 0 com.google.android.apps.wellbeing
adb shell pm uninstall -k --user 0 com.google.android.apps.chromecast.app
adb shell pm uninstall -k --user 0 com.google.android.apps.mediahome.launcher
adb shell pm uninstall -k --user 0 com.android.chrome
adb shell pm uninstall -k --user 0 com.google.android.youtube
adb shell pm disable-user --user 0 com.google.android.googlequicksearchbox
# Verizon
adb shell pm uninstall -k --user 0 com.vzw.apnlib
adb shell pm uninstall -k --user 0 com.vzw.hss.myverizon
adb shell pm uninstall -k --user 0 com.verizon.mips.services
adb shell pm uninstall -k --user 0 com.razer.verizondata
# Razer
adb shell pm uninstall -k --user 0 com.razer.wifi.settings
adb shell pm uninstall -k --user 0 com.razer.start.xbox
adb shell pm uninstall -k --user 0 com.razer.bianca

These apps should still be on your ROM, so if you want to reinstall some use the following commands:

adb shell pm enable [package_name]
adb shell cmd package install-existing [package_name]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment