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
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
# View Android logcat output filtered for the app
set -e
APP_PACKAGE="com.jellytau.app"
echo "📱 Showing logcat for $APP_PACKAGE"
echo "Press Ctrl+C to stop"
echo ""
# Filter logcat for the app's package name
adb logcat | grep -i "$APP_PACKAGE\|tauri\|rust"