/mobile-app-debugging
Mobile app debugging for iOS, Android, cross-platform frameworks. Use for crashes, memory leaks, performance issues, network problems, or encountering Xcode instruments, Android Profiler, React Native debugger, native bridge errors.
One skill from claude-skills.
shell
$ npx -y skills add secondsky/claude-skills --skill mobile-app-debugging --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/mobile-app-debugging
Context preview
The summary Claude sees to decide when to auto-load this skill.
Mobile app debugging for iOS, Android, cross-platform frameworks. Use for crashes, memory leaks, performance issues, network problems, or encountering Xcode instruments, Android Profiler, React Native debugger, native bridge errors.
Stats
Stars194
Forks29
LanguageTypeScript
LicenseMIT
Ships with claude-skills
SKILL.md
mobile-app-debugging.SKILL.md
--- name: mobile-app-debugging description: Mobile app debugging for iOS, Android, cross-platform frameworks. Use for crashes, memory leaks, performance issues, network problems, or encountering Xcode instruments, Android Profiler, React Native debugger, native bridge errors. license: MIT --- # Mobile App Debugging Debug mobile applications across iOS, Android, and cross-platform frameworks. ## iOS Debugging (Xcode) ```swift // Breakpoint with condition // Right-click breakpoint > Edit > Condition: userId == "123" // LLDB commands po variable // Print object p expression // Evaluate expression bt // Backtrace ``` ### Memory Debugging - Use Memory Graph Debugger to find retain cycles - Enable Zombie Objects for use-after-free bugs - Profile with Instruments > Leaks ## Android Debugging (Android Studio) ```kotlin // Logcat filtering Log.d("TAG", "Debug message") Log.e("TAG", "Error", exception) // Filter: tag:MyApp level:error ```
