<< All versions
Skill v1.0.1
currentAutomated scan100/100aj-geddes/useful-ai-prompts/mobile-app-debugging
8 files
──Details
PublishedMay 14, 2026 at 07:47 PM
Content Hashsha256:05c8298a2b820d1b...
Git SHA3f5182cfd739
Bump Typepatch
──Files
Files (1 file, 2.0 KB)
SKILL.md2.0 KBactive
SKILL.md · 89 lines · 2.0 KB
version: "1.0.1" name: mobile-app-debugging description: > Debug issues specific to mobile applications including platform-specific problems, device constraints, and connectivity issues.
Mobile App Debugging
Table of Contents
Overview
Mobile app debugging addresses platform-specific issues, device hardware limitations, and mobile-specific network conditions.
When to Use
- App crashes on mobile
- Performance issues on device
- Platform-specific bugs
- Network connectivity issues
- Device-specific problems
Quick Start
Minimal working example:
yaml
Xcode Debugging:Attach Debugger:- Xcode → Run on device- Set breakpoints in code- Step through execution- View variables- Console logsView Logs:- Xcode → Window → Devices & Simulators- Select device → View Device Logs- Filter by app name- Check system logs for crashesInspect Memory:- Xcode → Debug → View Memory Graph- Identify retain cycles- Check object count- Monitor allocation growth---Common iOS Issues:App Crash (SIGABRT):// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents | |
|---|---|---|
| iOS Debugging | iOS Debugging | |
| Android Debugging | Android Debugging | |
| Cross-Platform Issues | Cross-Platform Issues | |
| Mobile Testing & Debugging Checklist | Mobile Testing & Debugging Checklist |
Best Practices
✅ DO
- Follow established patterns and conventions
- Write clean, maintainable code
- Add appropriate documentation
- Test thoroughly before deploying
❌ DON'T
- Skip testing or validation
- Ignore error handling
- Hard-code configuration values