Possible to uninstall or disable default apps?

by kaipee

I've recently got myself a 50PUS7304/12 and would like to get rid of the default Rakuten, Philips and other default apps.

I have tried disabling the apps, among with uninstalling using FX Browser but the apps keep coming back somehow (I think after resuming from standby).

Does anyone know if it's possible to completely remove, or permanently disable default apps?

I've created a some BASH scripts to semi-automate backup/restore & removal : https://github.com/kaipee/android-backup-removal

Update 1 : Thanks to u/latinriky78 and u/ccspdk . I have created a basic BASH shell script that will (after adb is already set up and currently connected) backup the required app, uninstall the app then reboot the TV. It takes 2 parameters:

  • original apk name
  • user-friendly name of app

! /bin/bash

printf "Backing up $1 to $(pwd)/$2.ab ...\n"
adb backup -apk "$1" -f "$2".ab

printf "Uninstalling $1 as user 0 ...\n"
adb shell pm uninstall -k --user 0 "$1"

printf "Uninstalling $1 ...\n"
adb uninstall "$1"

COUNTDOWN=10
for count in $(seq $COUNTDOWN -1 1); do
  printf "Rebooting device in $count seconds, Ctrl+C to cancel...\n"
  sleep 1
done
adb reboot

Update 2 : I've successfully uninstalled the following apps from my Philips 50PUS7304/12 without any problems

amc_catchup.ab
arte.ab
blacknut_games.ab
cinetrailer.ab
couchplay_games.ab
deezer.ab
demo.ab
divan_tv.ab
filmbox.ab
fishing_tv.ab
flix_premiere.ab
gametree_tv.ab
horror_bites.ab
megogo.ab
philips_collection.ab
rakuten_tv.ab
stv.ab
toon_googles.ab
top_picks.ab
ccspdk

It is possible, but a quite teadious process.

This describes the procedure on Sony tv's should be the same.on Philips.

https://www.reddit.com/r/bravia/comments/8v2s6i/guide_how_to_use_android_debugging_to_disable_apps/

latinriky78

Hope this instructions help you out:

  1. first of all, install in your windows computer the ADB Installer
  2. Open Windows Terminal by pressing and holding the windows key + R and type cmd, then press enter.
  3. You must turn ON developers options in your Android TV television and then turn ON USB debug toggle.
  4. Type adb shell
  5. To connect to your Android TV television, type the following command: adb connect 192.168.X.X:5555 (X is the rest of your TV's IP)
  6. On your TV screen you will see a message prompt, select OK.
  7. To delete the app you want type: pm uninstall --user 0 PACKAGE_NAME
  8. Sometimes you need to repeat the above command twice in order to delete the app
  9. Be careful NOT deleting important system apps.