원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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
flutter run --profile --trace-skia
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 am force-stop <package-id> # Force stop
adb shell pm clear <package-id> # Clear data