mobile-app-debugging

Solid

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.

Code & Development 162 stars 25 forks Updated 2 weeks ago MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
74
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
88
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# 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 ``` ### Common Issues - ANR: Check main thread blocking - OOM: Profile with Memory Profiler - Layout issues: Use Layout Inspector ## React Native ```javascript // Remote debugging // Shake device > Debug JS Remotely // Console logging console.log('Debug:', variable); console.warn('Warning'); console.error('Error'); // Performance Monitor // Shake > Show Perf Monitor // Target: 60 FPS, <16ms per frame ``` ## Network Debugging ```javascript // Intercept requests XMLHttpRequest.prototype._send = XMLHttpRequest.prototype.send; XMLHttpRequest.prototype.send = function() { console.log('Request:', this._url); this._send.apply(this, arguments); }; ``` ## Debug Checklist - [ ] Test on physical devices (not just simulators) - [ ] Test on older device models - [ ] Simulate slow 3G network - [ ] Test...

Details

Author
secondsky
Repository
secondsky/claude-skills
Created
6 months ago
Last Updated
2 weeks ago
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category