I have a TCL running Google TV that I use Flauncher on - a nice little FOSS lightweight launcher that I like a lot. However, I am only able to switch inputs (for gaming etc.) when using the default launcher. Anyone found a way around this? Pretty sure its a Google/TCL hardware thing and not due to any alt launcher just not wanting to include that
Yes, I might be able to help. I changed my Onn set top box (which uses Android TV) fairly recently to use FLauncher (or Projectivity, I don’t remember which one I chose in the end), but it kept defaulting back to the default launcher. So I jacked it to change what the detail launcher was. After enabling some options (
developer options, USB debugging, verify apps over USB) on my Onn box, I plugged the box into my computer and then used the adb command line tool to change the default launcher (launcherx).
I imagine you could do the same to your Android TV. As long as it has a USB port.
Hope this helps.
ETA: Here are some more detailed instructions I took when I did this:
On the ONN tv box installer flauncher and/or projectivity launcher via the Google Play store
Make sure developer options is enabled on the ONN tv box (hit okay on Android TV OS build several times)
Look up IPv4 address on the ONN TV box under Settings > System > Status
Go to the new Developer Options menu item on ONN > settings > system, and make sure:
a) Enable developer options is set to on
b) USB debugging is set to on
c) Verify apps over USB is set to on
On the ONN tv box go to Settings > System > Developer Options and make sure Select USB Configuration is set to MTP (Media Transfer Protocol)
On Windows, open a command line as administrator and go to the adb path
In the command line window on windows type:
a) adb start-server
b) adb connect [ONN ip address]
(Note: it might initially say “failed to authenticate to [ip]”, that’s okay, see the next step)
On the ONN tv box a pop-up window should appear asking to allow access from windows pc IP address, say OK
In the command line window on windows type: adb devices
You should see the device as active on the ip you stated and on port 5555
Next in the terminal window type the following to disable the default ONN tv default launcher and listener:
adb shell pm disable-user --user 0 com.google.android.apps.tv.launcherx
Then in the terminal window type:
adb shell pm disable-user --user 0 com.google.android.tungsten.setupwraith
On the ONN tv box click the home button. It should now either a) go to the additional launcher you installed or b) prompt you for the home app (if you installed multiple additional launchers) so select the one you want (e.g. FLauncher)
Now when you hit the home button on the ONN tv box it should always take you to the FLauncher launcher, not the default ONN launcher
Note: If you need to re-enable launcherx, you can use these commands in adb:
I have a TCL running Google TV that I use Flauncher on - a nice little FOSS lightweight launcher that I like a lot. However, I am only able to switch inputs (for gaming etc.) when using the default launcher. Anyone found a way around this? Pretty sure its a Google/TCL hardware thing and not due to any alt launcher just not wanting to include that
Yes, I might be able to help. I changed my Onn set top box (which uses Android TV) fairly recently to use FLauncher (or Projectivity, I don’t remember which one I chose in the end), but it kept defaulting back to the default launcher. So I jacked it to change what the detail launcher was. After enabling some options ( developer options, USB debugging, verify apps over USB) on my Onn box, I plugged the box into my computer and then used the adb command line tool to change the default launcher (launcherx).
I imagine you could do the same to your Android TV. As long as it has a USB port.
Hope this helps.
ETA: Here are some more detailed instructions I took when I did this:
On the ONN tv box installer flauncher and/or projectivity launcher via the Google Play store
Make sure developer options is enabled on the ONN tv box (hit okay on Android TV OS build several times)
Look up IPv4 address on the ONN TV box under Settings > System > Status
Go to the new Developer Options menu item on ONN > settings > system, and make sure: a) Enable developer options is set to on b) USB debugging is set to on c) Verify apps over USB is set to on
Download adb platform tools on windows from here: https://developer.android.com/tools/releases/platform-tools8
Plug in usb cable between PC and ONN tv box
On the ONN tv box go to Settings > System > Developer Options and make sure Select USB Configuration is set to MTP (Media Transfer Protocol)
On Windows, open a command line as administrator and go to the adb path
In the command line window on windows type: a) adb start-server b) adb connect [ONN ip address] (Note: it might initially say “failed to authenticate to [ip]”, that’s okay, see the next step)
On the ONN tv box a pop-up window should appear asking to allow access from windows pc IP address, say OK
In the command line window on windows type: adb devices
You should see the device as active on the ip you stated and on port 5555
Next in the terminal window type the following to disable the default ONN tv default launcher and listener: adb shell pm disable-user --user 0 com.google.android.apps.tv.launcherx
Then in the terminal window type: adb shell pm disable-user --user 0 com.google.android.tungsten.setupwraith
On the ONN tv box click the home button. It should now either a) go to the additional launcher you installed or b) prompt you for the home app (if you installed multiple additional launchers) so select the one you want (e.g. FLauncher)
Now when you hit the home button on the ONN tv box it should always take you to the FLauncher launcher, not the default ONN launcher
Note: If you need to re-enable launcherx, you can use these commands in adb:
adb shell pm enable --user 0 com.google.android.apps.tv.launcherx
adb shell pm enable --user 0 com.google.android.tungsten.setupwraith
My adventures with doing this were based on this post on reddit.
Thanks for the detailed response will look into it!
Try Projectivy.
Will look into it thanks!