[Service] New UI

This commit is contained in:
2026-09-13 21:12:44 -07:00
parent e473d00f4f
commit 1b1ca16fdd
45 changed files with 2726 additions and 205 deletions
+6 -3
View File
@@ -1,14 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
./build-apk.sh
echo "== Gradle assembleDebug =="
gradle :app:assembleDebug
APK="app/build/outputs/apk/debug/app-debug.apk"
cp -f "$APK" portal-capability-test.apk
echo "== Installing APK via ADB =="
adb install -r portal-capability-test.apk
echo "== Starting MainActivity / PortalStreamingService =="
echo "== Starting MainActivity =="
adb shell am start -n com.portaltv.capability/.MainActivity
echo "== Done =="