Android 'Unfortunately, (App) has stopped' Error Fix
That annoying popup kills your app mid-use. Here's the real fix—cache clear first, then data reset, and only uninstall as a last resort.
#1 Cause: App cache is corrupted (clear cache first)
This is the most common reason you see that popup. The app's temporary files got scrambled—maybe from an update that went sideways, a low-storage write failure, or just time. I had a client last month whose Gmail crashed every 30 seconds. Cleared the cache, and it was smooth again for months.
Here's how to do it:
- Go to Settings > Apps (or App Manager, depends on your Android version).
- Tap the app that's crashing.
- Tap Storage & cache (on some phones it's just Storage).
- Tap Clear cache—do not tap Clear storage yet.
- Restart the phone. Seriously. I've seen cache clears that don't stick without a reboot.
This clears the junk without losing your login or settings. Test the app. If it works, you're done. Skip the rest.
#2 Cause: App data is broken (clear storage / reset app)
If clearing cache didn't cut it, the app's internal data—like settings, login tokens, or saved games—is likely toast. This happens after a bad app update, especially if you interrupted it mid-install. I've seen this on Google Play Store itself: client's phone couldn't download anything because the store's data was hosed.
Clearing storage will reset the app to factory-fresh state. You'll lose local data (game progress, offline notes), but it often fixes the crash.
- Back to Settings > Apps > [app name] > Storage & cache.
- Tap Clear storage (sometimes labeled Manage space or Clear data).
- Confirm the warning. The app will act like it's newly installed.
- Open the app, sign in again, and see if the error's gone.
For system apps like Google Play Services, the same steps apply. On Samsung phones, I've had to clear data on One UI Home when the launcher kept crashing. It resets your home screen layout, but it works.
#3 Cause: Outdated app or OS mismatch (update both)
Sometimes the app is just too old for your current Android version, or vice versa. I had a client whose banking app crashed on Android 14 because the bank hadn't updated it in two years. Update fixed it.
Do this:
- Update the app: Open Google Play Store, tap your profile icon (top right), then Manage apps & device. See if the crashing app has an update pending. Update and reboot.
- Update your OS: Go to Settings > System > System update (or Software update on Samsung). Install any pending updates. Android 13 to 14 had specific changes that broke some apps—patches fixed them.
- Check for known bugs: Google the app name + "crash Android 14 (or your version)". If it's a known issue, the fix might be to downgrade—uninstall updates via App info > three-dot menu > Uninstall updates. That rolls the app back to the factory version, which is often more stable.
Last resort: Uninstall and reinstall
If none of the above worked, wipe it clean. This is the nuclear option—you lose all app data, including any cached files that might have been corrupt.
- Long-press the app icon, tap Uninstall (or go to Settings > Apps > [app name] > Uninstall).
- Reboot your phone. I always do this to clear out any leftover system handles.
- Reinstall from Google Play Store. Test immediately.
If the crash returns right away, the problem isn't the app—it's your phone's environment. Try booting into Safe Mode (hold power, then long-press Power off prompt). If it works in safe mode, a third-party app is interfering. Uninstall recently installed apps until you find the culprit.
Quick-reference summary table
| Cause | Fix | Data loss risk |
|---|---|---|
| Corrupted cache | Clear cache, reboot | None |
| Broken app data | Clear storage / data | Loses local settings & saves |
| Outdated app or OS | Update app or system, or uninstall updates | Minimal (downgrade may reset data) |
| Persistent issue | Uninstall & reinstall, then safe mode test | Total data loss |
Was this solution helpful?