14 lines
276 B
Bash
Executable File
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"
|