Files
jellytau/scripts/logcat.sh
T
2026-01-26 22:21:54 +01:00

14 lines
276 B
Bash
Executable File

#!/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"