ワンクリックで
android-debug
Debug Android Flutter app runtime errors, crashes, device issues, and performance problems
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Debug Android Flutter app runtime errors, crashes, device issues, and performance problems
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Diagnose and fix Flutter build failures including dependency conflicts, Gradle errors, compilation issues, and platform-specific build problems
Debug GitHub Actions workflow failures, CI build issues, test failures in CI, and deployment problems
Generate app launcher icons and UI icon assets for Android Flutter apps with proper sizing and flutter_launcher_icons integration
Debug Android Flutter apps including runtime errors, build issues, device connection problems, and performance issues. Use when troubleshooting Android-specific problems, crashes, or deployment issues.
| name | android-debug |
| description | Debug Android Flutter app runtime errors, crashes, device issues, and performance problems |
Expert guidance for debugging Android Flutter applications - runtime errors, device connectivity, and performance.
flutter doctor -v # System check
flutter devices # Connected devices
flutter run --verbose # Verbose app launch
flutter logs # App logs (or: adb logcat)
adb devices # List devices
adb kill-server && adb start-server # Restart ADB
adb connect <ip>:5555 # Network device
flutter run -d <device-id> --verbose # Run with logging
flutter run --profile # Profile mode
flutter run --profile --trace-skia # Skia tracing
flutter logs | grep -i "flutter" # Filter Flutter logs
adb logcat -s flutter # Android-specific
adb logcat -c # Clear logs
adb logcat > debug.log # Save to file
flutter logsandroid/app/build.gradle.ktsflutter run --profile # Profile mode
flutter run --profile --trace-skia # With Skia tracing
const constructors, use RepaintBoundaryflutter build apk --analyze-size
flutter pub global activate devtools
flutter pub global run devtools
Features: Widget Inspector, Timeline, Memory, Network, Logging, Debugger
adb shell screencap /sdcard/screen.png && adb pull /sdcard/screen.png # Screenshot
adb shell dumpsys package com.cmwen.private_chat_hub # App info
adb shell am force-stop com.cmwen.private_chat_hub # Force stop
adb shell pm clear com.cmwen.private_chat_hub # Clear data