From cfa28298bc0fb276933815f6e822235bb70bff91 Mon Sep 17 00:00:00 2001 From: Oleks Date: Fri, 29 May 2026 19:16:23 +0300 Subject: [PATCH] justfile: add tv-launch (leanback activity) for Android TV --- justfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/justfile b/justfile index 402a709f..073de8fe 100644 --- a/justfile +++ b/justfile @@ -53,6 +53,11 @@ tv-connect host: install-to host: build {{ adb }} -s {{ host }} install -r result/app-nonRoot-debug.apk +# launch Moonlight (Debug) on an Android TV target — uses the LEANBACK activity +# directly (monkey's LAUNCHER category no-ops on TV): just tv-launch 192.168.88.19:43079 +tv-launch host: + {{ adb }} -s {{ host }} shell am start -n com.limelight.debug/com.limelight.PcView + # disconnect a network adb device (e.g. the TV) when done tv-disconnect ip: {{ adb }} disconnect {{ ip }}:5555