This commit is contained in:
2026-09-13 12:15:36 -07:00
commit e473d00f4f
104 changed files with 16080 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
./build-apk.sh
echo "== Installing APK via ADB =="
adb install -r portal-capability-test.apk
echo "== Starting MainActivity / PortalStreamingService =="
adb shell am start -n com.portaltv.capability/.MainActivity
echo "== Done =="