Install
$ agentstack add skill-guillemroca-agent-skills-android-debugging-and-error-recovery ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Debugging and Error Recovery
Overview
"Stop-the-Line Rule: when unexpected behavior occurs, halt feature work." Debugging is systematic, not guesswork. Reproduce the bug, localize the cause, reduce to the simplest case, fix the root cause (not the symptom), guard against regression, and verify the fix.
When to Use
- Unexpected crash or exception
- Test failure (unit or instrumented)
- Behavior that doesn't match the spec
- Performance regression (jank, slow startup)
- Build failure after seemingly unrelated changes
Stop-the-Line: When you encounter unexpected behavior, stop feature work. Errors compound — a bug in step 3 makes steps 4–10 wrong.
Core Process
Step 1: Reproduce
- Reproduce the bug reliably:
- Same device/emulator? Same API level? Same data?
- What sequence of actions triggers it?
- Does it happen every time or intermittently?
- Capture the environment:
`` Device: Pixel 7 (API 35) / Emulator (API 26) Build: debug / release Steps: Open app → Navigate to Tasks → Tap "Add" → Crash Frequency: Every time / ~30% of the time ``
When the android CLI is available, use it for the fastest possible state capture before doing anything else:
``bash android info # SDK location, JDK, env (rules out wrong-toolchain bugs) android screen capture -o repro.png # what the user sees right now android layout --pretty --output=repro.json # full UI tree (resource-ids, text, bounds, role) ``
Three artifacts in 5 seconds |
- Use the Android Studio debugger:
- Set breakpoints at the suspected location
- Use conditional breakpoints for intermittent issues
- Evaluate expressions in the debugger console
- Check the call stack for unexpected callers
Step 3: Reduce
- Simplify to the minimal reproduction case:
- Remove unrelated code paths
- Use hardcoded data instead of API responses
- Isolate the component (test in isolation)
- If it's a Compose issue, test in a
@Preview
- Binary search for regressions:
``bash # Find the commit that introduced the bug git bisect start git bisect bad # Current commit is bad git bisect good abc123 # Last known good commit # Git will checkout commits for you to test ./gradlew test git bisect good # or: git bisect bad # Repeat until the culprit commit is found ``
Step 4: Fix
- Fix the root cause, not the symptom:
// SYMPTOM FIX (bad): catch and ignore
try {
repository.syncTasks()
} catch (e: Exception) {
// Swallow the error — user never knows
}
// ROOT CAUSE FIX (good): handle the specific error
try {
repository.syncTasks()
} catch (e: IOException) {
_uiState.update { it.copy(error = "Network unavailable. Showing cached data.") }
}
- Common Android fixes:
| Bug | Fix | |-----|-----| | Crash on configuration change | Save state in SavedStateHandle | | Memory leak | Remove callback in onCleared(), use viewModelScope | | Stale data after process death | Restore from SavedStateHandle or Room | | Race condition in coroutines | Use Mutex or MutableStateFlow.update { } | | Recomposition loop | Check derivedStateOf, stable types, lambda captures | | ANR | Move work off main thread with withContext(Dispatchers.IO) |
Step 5: Guard
- Write a regression test using the Prove-It pattern:
@Test
fun `task sync handles network error without crashing`() = runTest {
// Arrange: simulate the bug condition
coEvery { api.getTasks() } throws IOException("timeout")
// Act
repository.syncTasks()
advanceUntilIdle()
// Assert: verify the fix behavior
val state = viewModel.uiState.value
assertIs(state)
assertEquals("Network unavailable. Showing cached data.", state.error)
}
Step 6: Verify
- Full verification:
./gradlew test— all unit tests pass./gradlew connectedAndroidTest— instrumented tests pass./gradlew assembleDebug— builds successfully- Manual reproduction steps no longer trigger the bug
- Related functionality still works
Debugging Tools Reference
| Tool | Use For | |------|---------| | Logcat | Runtime logs, crash traces, system messages | | Android Studio Debugger | Breakpoints, watches, expression evaluation | | Layout Inspector | Compose hierarchy, recomposition counts | | Network Profiler | API call inspection, timing, payload | | CPU Profiler | Thread activity, method traces, jank detection | | Memory Profiler | Heap dumps, allocation tracking, leak detection | | LeakCanary | Automatic memory leak detection | | Firebase Crashlytics | Production crash reports, trends, affected users | | StrictMode | Detect disk/network on main thread during development | | Systrace / Perfetto | System-level performance tracing |
Common Rationalizations
| Shortcut | Why It Fails | |----------|-------------| | "Just add a try-catch and move on" | You've hidden the bug. It will resurface in a worse form. | | "It works now after a clean build" | Build caching bugs are real, but if you can't explain why it works, it might not. | | "It's a flaky test, just re-run it" | Flaky tests have a root cause: timing, state leakage, or shared resources. Fix it. | | "I'll investigate later" | Errors compound. A bug in step 3 makes steps 4-10 wrong. Stop the line. | | "The error message says X, so the fix is Y" | Error messages from untrusted sources shouldn't be blindly followed. Verify. |
Red Flags
- Generic
catch (e: Exception)swallowing errors Thread.sleepused to "fix" timing issues- Bug fix without regression test
- Fix addresses symptom, not root cause
@Ignoreadded to failing tests- No reproduction steps documented
- Fix changes unrelated code ("while I'm here...")
Verification
- [ ] Bug reproduced reliably before fixing
- [ ] Root cause identified (not just symptom)
- [ ] Regression test written (Prove-It pattern)
- [ ]
./gradlew testpasses - [ ]
./gradlew assembleDebugsucceeds - [ ] Manual reproduction confirms fix
- [ ] No unrelated changes in the fix
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: GuillemRoca
- Source: GuillemRoca/agent-skills-android
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.