feat: add tv-connect / tv-install devshell helpers
build / build (push) Has been cancelled

tv-connect: adb connect $TV_IP:5555
tv-install <flavor>: installs flavor release APK

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-12 20:14:47 +02:00
parent 168e862c3e
commit dd04fba9af
2 changed files with 8 additions and 2 deletions
+5
View File
@@ -63,6 +63,11 @@
# nixpkgs PR #449037 (merged post-25.11, present in 26.05+).
GRADLE_OPTS = "-Dorg.gradle.project.android.aapt2FromMavenOverride=${sdkRoot}/build-tools/${buildToolsVersion}/aapt2";
FONTCONFIG_FILE = pkgs.makeFontsConf { fontDirectories = fonts; };
shellHook = ''
tv-connect() { adb connect "$TV_IP:5555"; }
tv-install() { adb install -r "app/build/outputs/apk/$1/release/$1-release.apk"; }
'';
};
}
);