Phones ship with carrier games, duplicate stores and promo apps you never asked for. You can freeze them in settings, or truly remove them for your user with ADB, no root, reversible.
- 1Try Disable first: Settings → Apps → (app) → Disable. Frozen apps stop running and updating.
- 2For real removal: enable Developer options (tap Build number 7×) and turn on USB debugging.
- 3Install Android Platform Tools on your computer and connect the phone by cable.
- 4Find the package name: 'adb shell pm list packages | grep vendor'.
- 5Remove for your user: 'adb shell pm uninstall --user 0 package.name'. Reversible with 'cmd package install-existing'.
Tip: Skip system packages you don't recognize, removing core services causes bootloops. Our generator has the safe commands ready to copy.