New to Google TV & Looking for Help

Hey, I just got my CCwGTV in the mail yesterday and set it up and have been toying with it, but would appreciate any suggestions from savvy users for getting the most out of it.

Also, I see that I can't get app out of the "For you" that I don't subscribe to, but is there any way to improve the recommendations?

For example, I'm getting a Miley Cyrus on Peacock rec, and I don't like her or have the app, as well as some Ru Paul thing on Paramount+, so I don't know what "For you" is supposed to be in this context.

2 Answers

How to install a 3rd-party launcher as default on an Nvidia Shield TV device (x-post from r/ShieldAndroidTV).

Note: These instructions are specific to Nvidia Shield TV devices. I cannot guarantee that they will work the same on any other devices.

I wrote these instructions down for my own reference, but thought I'd share them here as well in case others might find it helpful. Currently, other than disconnecting your Shield from the Internet, this is the only way to prevent the new UI with tasteless ads being pushed from Google. Since many of the 3rd party launchers available are fully customizable, you can most likely tailor it to look better than the original Android TV Home app and you can avoid having ads on your homescreen, giving you absolute control.


Prep



Replacing Android TV Home


  • Disable Android TV Home

    1. First, we need to disable Android TV Home. It's a system app, which means you can't simply uninstall it. Therefore, we need to use adb to disable it, preventing the app from working completely.
    2. Back on your PC, open Powershell and type the following:
      • adb connect {IP ADDRESS OF YOUR SHIELD}
      • Use the the IP address you should have noted from the earlier step when we enabled Network Debugging.
      • Note: Sometimes your setup may require the port number as well, which is shown when you enabled Network Debugging in a previous step. By default the port is 5555. An example command with the port would look like adb connect 192.168.1.1:5555.
    3. Now, this will probably fail because we need to allow an adb debugging from your PC on your Nvidia Shield. Return to your Nvidia Shield and you should see a pop-up asking for permission to allow Network Debugging. Check the checkbox, then choose OK.
    4. Return to your PC and once again, type the following:
      • adb connect {IP ADDRESS OF YOUR SHIELD}
    5. You should now be able to connect successfully with no errors.
    6. Now issue the following command to disable Android TV Home:
      • adb shell pm disable-user --user 0 com.google.android.tvlauncher
      • Note: To re-enable Android TV Home, issue the following: adb shell pm enable com.google.android.tvlauncher
    7. You can safely disable Android TV Core:
      • adb shell pm disable-user --user 0 com.google.android.tvrecommendations
      • Note: To re-enable Android TV Core, issue the following: adb shell pm enable com.google.android.tvrecommendations
    8. You can safely disable Leanback Launcher:
      • adb shell pm disable-user --user 0 com.google.android.leanbacklauncher
      • Note: To re-enable Android TV Core, issue the following: adb shell pm enable com.google.android.leanbacklauncher
    9. You can safely disable Leanback Launcher Recommendations:
      • adb shell pm disable-user --user 0 com.google.android.leanbacklauncher.recommendations
      • Note: To re-enable Android TV Core, issue the following: adb shell pm enable com.google.android.leanbacklauncher.recommendations
  • Setting the new launcher as default

    1. Now, using your Shield remote, press the home button (the button with a "○" in the middle)
    2. You should get a prompt asking you to choose the default launcher.
    3. Choose the launcher you downloaded earlier.
    4. You may also get prompted to grant permissions to the launcher app to access services on your device. You will want to grant the requested access for the launcher to work properly.
    5. Now you can configure/customize your new default homescreen launcher app to your liking.
  • Enabling widgets on Android TV for Sideload Channel Launcher 3 (optional)

    1. If you chose Sideload Channel Launcher 3, you'll need to also issue the following adb command to enable widgets (this command will be different for other launchers):
      • adb shell appwidget grantbind --package dxidev.sideloadchannel3 --user 0
      • Note: To turn revoke access to widgets once again (undo the previous command), type the following: adb shell appwidget revokebind --package dxidev.sideloadchannel3 --user 0
    2. Now you can install apps onto your Shield device that support widgets and pin widgets to the homescreen.
    3. I'm personally using the following weather app for it's widget on my homescreen:
    4. If you didn't choose Sideload Channel Launcher 3, you will need to find out if you need to take similar actions for your launcher of choice and what, if any, commands are required.

Here are some screenshots of the homescreen for my Nvidia Shield using these instructions and after adding my personal touches (view the album on Imgur for some extra details):


By disabling Android TV Home, you are preventing the remote home button mappings/bindings from sending you back to the Android TV Home app, and instead, it will show your chosen default launcher. Same thing when ending a video casted with Chromecast.

Google Assistant still works by pressing the microphone button on your Shield remote. The menu button on your Shield remote will still show the menu along the right-hand side of the screen too.

If you previously disabled automatic updates in Play Store, feel free to re-enable them to stay secure. Since Android TV Home is now disabled, there is no worry about ever getting ads on your homescreen from an app update again.

I hope this guide can help someone else.

Edit: Replaced the potato pics with actual screenshots in an album on Imgur with more details about my current setup.

Edit 2: Removed ATV Launcher Pro since it no longer gets updates like the free version does.

25 Answers

Mi box S 4k turning off even with CEC disabled

When turning off my Samsung Q90T my Mi box also turns off even if CEC is disabled on the Mi Box. There is also a Pioneer VSX-LX53 reciever "between" the two units. Any suggestions? Thanks

1 Answers

How to play DTS, Dolby Digital Plus (E-AC3), Dolby Atmos on Android Tv?

I am planning to purchase Sony bravia KD-43X75 android tv, but I noticed that it only supports Dolby Digit and has no support for DTS. I don't want to re-encode audio just to play on my android tv. Is there a way to play these (or most) audio formats on the tv?

4 Answers

Apps not available in my country (US?)

I think my TV thinks I’m outside of the US because most of the apps I try to download are not available in my country. I checked my google account to make sure it’s in the US, and also my TV privacy settings. Where else can the setting be? I used to live in Canada so it must be still taking that from somewhere.

2 Answers

How to downgrade to the old Android TV launcher without ads or the Discover tab

With the recent updates to Android TV basically ruining the experience by adding the homescreen ads, the only way to get rid of them is by downgrading the Android TV home. You can easily do that if you go to the Settings > Apps > See all apps > Show system apps and click on the Android TV home app and select Uninstall Updates. But some devices like in my case only go as far back as to a version that still has homescreen ads. Here's the way I did it using ADB.

-----------------------------------------------------------------------------

  1. Downloading the stuff you need

Go to APKmirror and download the APK for an older version of the Android TV home on your computer or laptop. The version I downloaded was version 1.11.1.

You will also need platform tools by Google, go download the version for your computer (Windows, Mac, Linux)

-----------------------------------------------------------------------------

  1. Preparing files

Extract the platform-tools zip, and then rename the Android TV home APK to app.apk for simplicity. Move the app.apk file to the folder containing the files for platform tools

-----------------------------------------------------------------------------

  1. Getting the local IP of your Android TV device

Then you will need the IP of the TV or Android TV device which can be found in Settings > Network & Internet > (the WiFi you are connected to) and it should say your device's local IP.

-----------------------------------------------------------------------------

  1. Pushing the APK to the device and downgrading the launcher

First you want to open the platform tools folder in CMD, Windows Powershell, or Terminal for Macs. On Windows, you just hold shift and right click inside the folder and click "Open Command Prompt window here" or "Open Powershell window here"

In the shell that you opened in the platform-tools folder, type in adb connect <the IP of your TV/device> When it connects, then type in adb push app.apk /data/local/tmp/app.apk. The APK file for the Android TV home version you downloaded will be sent to /data/local/tmp/. Then after that's done, type in adb shell pm install -r -d /data/local/tmp/app.apk and it will downgrade the launcher. Then boom, all done. All of the steps except for the last one only have to be done once, after that you only need to type in the last command in if it updates the launcher to the latest version after a reboot like in my case.

-----------------------------------------------------------------------------

If it upgrades the version of the launcher to the latest version, to make it easier you can just download Remote ADB Shell on your phone (Android only) from the Play Store, connect to your TV and just type in pm install -r -d /data/local/tmp/app.apk. The app even remembers the IP of the device, and the last few commands you typed so after the first time after typing the command, just connect to the TV and touch and hold the area where you type in commands and there are your recent command.

5 Answers

Buggy Philips 43PUS8505/12 - crashed when Spotify app is turned and Reinstall TV doesn't reset the TV home screen

Hi!

I have a Philips 43PUS8505/12 with the latest firmware update and when I try to open Spotify, it crashes and then keeps refreshing every several seconds.

I tried to Factory Reset and Reinstall the TV, but I noticed that home menu is not reset at all, even if those app are not installed anymore on TV.

How can I fix this or force a reinstall/downgrade the firmware?

2 Answers

Control TV volume with Mibox S remote?

I'm recently switching from a Fire Stick to a Mibox S. My TV is connected a Sonos system via an HDMI port with ARC. Using the firestick remote I was able to control the TVs volume (and by extension the sound bar) and power the TV on and off. Using the Mibox remote, the remote only changes the Mibox volume but not the TV volume. I went into the settings and enabled Hdmi CEC so it should work, but isn't. Any ideas how to fix this?

2 Answers

Are there still android TV's?

Dumb question because I'm not that smart when it comes to electronics, but do they still make Android TV's? I can't find them anywhere? Or did they get replaced with something else? Thanks

4 Answers

Due to the latest home screen update, I decided to take control and give my shield home screen a makeover. Really happy with how it came out.

17 Answers

TV function audio output through USB headphones, but HDMI source output through speaker. How can I make the HDMI also output through USB?

I have a TCL A8 TV and a Corsair hs70 headphone, when I plug the USB dongle to the TV the android part of the tv(YouTube, Netflix, etc), and the menu sound come from the headphone no problem, but when I switch to HDMI source(PC and Switch) the audio output through the speaker. Can I change something so when I plugged the headphone the audio for HDMI source come from the headphone? I fiddle with the setting but there's no option to change audio output.

2 Answers

nplayer, how to play videos in removable disk PLUGGED IN TV?

Hi all,

If I plug removable disk in my router, nplayer can recognize it through SMB protocol. But if I plug it in TV, nplayer can not find it, neither in "local", nor in "network".

TV's own built-in app can recognize it, of course, but I want to use nplayer here.

Any idea?

2 Answers

2019 Shield Pro snow issue

3 Answers

Does Google TV support 4k for Prime Videos now?

I remember reading that Disney+ and Prime Video didn't support 4k video on Google TV. Is that still the case?

1 Answers

Anyone in South Africa with the new Android TV update with infuriating ads?

It seems to be happening with increasing frequency seeing complaints about the new ad-ridden Android TV on various devices.

So I'm just wondering if anyone in South Africa has it yet. I have a Mi Box S and still haven't got it (for which I'm thinking I should be grateful)

3 Answers

Is it possible to stream downloaded movies/series in H.264 or H.265 format to Android TVs?

3 Answers

Can I update my Android TV to Android 9.0?

I have a Sony Bravia 4K 2015 TV, Model Number: kd-55s8505c.

It's currently running Android 7.0 and it feels so buggy and I can't officially update it. Is it possible to mod it in a way to install a better firmware?

1 Answers

Based on these reviews, I'd say Google fucked up and ruined the Android TV experience.

39 Answers

Live Channels App not showing any EPG information

Any solutions? It's not showing anything that's playing on the guide. Just says "no information"

2 Answers

TiVo Stream 4K Android TV update fixes YouTube TV freezing issues in time for Google freebie

5 Answers

Google TV home screen gains autoplaying video ads

4 Answers

How simple are the voice controls for the Chromecast TV?

So, my grandpa is really bad with technology but is interested in things like Netflix or HBO go because our local TV has been shit lately.

I've helped him set up a normal Chromecast but he's having trouble with the HBO website so I wanted to ask if it's possible to control almost everything about it with just voice

4 Answers

Arcade Set-ups

I remember years ago, around 2014, there was an awesome arcade bundle. It was probably built on linux but I can't remember for sure, you would literally just download the entire bundle and load it onto an android tv box and it was ready to go - games included - no gathering rom files, it was ready to go - had a fun GUI and once flashed it would boot up right into the arcade

Does anybody know what I'm talking about? If so can you refresh my memory??

If you don't know what about that one, but know of something more recent - or similar - can you point me in the right direction??

preferably looking for something that had arcade, and console's. LIke NES, SNES, gameboy, sega etc etc etc and preferrably looking for something that already has the collection of ROMS included and that is a one time flash and go.

2 Answers

Stadia on Formuler GTV - (Runs Perfect) - 4K HDR works great

1 Answers

Apple TV app stops working after about 15 minutes, and often making Android TV restarting. Does anyone have the same issue? I have the latest software and app versions, on a new Chromecast TV.

2 Answers

186 / 885

Back to start