First working POC

This commit is contained in:
2026-01-26 22:21:54 +01:00
commit cfddc1edea
255 changed files with 77606 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# Build and deploy Android APK in one command
set -e
BUILD_TYPE="${1:-debug}"
echo "🚀 Build and Deploy Android APK"
echo ""
# Build APK
./scripts/build-android.sh "$BUILD_TYPE"
echo ""
# Deploy APK
./scripts/deploy-android.sh "$BUILD_TYPE"