null

Android 'Unfortunately, [App] Has Stopped' – Fix It Fast

Mobile – Android Beginner 👁 0 views 📅 May 27, 2026

A common Android error where an app crashes suddenly. Here's the real fix—from cache to updates to full reset.

Cause 1: Corrupted Cache or Data (The Most Common Fix)

I see this all the time. A client walked in with his banking app crashing every time he tried to check his balance. He'd already tried restarting the phone three times. The app icon showed a notification badge, but tapping it did nothing—just a white screen, then Unfortunately, BankApp has stopped.

The culprit? Corrupted app cache. Android apps store temporary files to load faster next time. But when those files get corrupted—often after an update or when storage is low—the app chokes on its own data. Clearing the cache is the first thing I try, and it works about 60% of the time.

How to clear cache and data

  1. Open Settings > Apps (or App Manager on some phones).
  2. Tap the app that's crashing (e.g., Instagram, Chrome, the camera app).
  3. Tap Storage & cache.
  4. Tap Clear cache first—this won't delete any of your personal data.
  5. If the app still crashes, go back and tap Clear storage (this deletes all app data, like login info and settings). You'll need to sign in again, but it fixes deeper corruption.

Pro tip: On Samsung phones running One UI 5 or later, the option is under Settings > Apps > [App name] > Storage. Same steps, different layout.

I've seen this fix work for everything from Google Play Store to Spotify. For that client with the banking app, clearing cache did nothing—but clearing storage fixed it instantly. He had to re-authenticate his fingerprint, but after that, no more crashes.

Cause 2: Outdated App or System WebView (The Silent Culprit)

In early 2021, I got ten calls in one week from different clients whose apps were crashing—Gmail, Outlook, even the phone dialer. Every single one had the same root cause: an update to Android System WebView had broken everything. Google pushed a fix within days, but if you still see this error, check your updates first.

Apps crash when they're out of sync with the system. An old version of an app might not play nice with the latest Android OS security patches. Or, a new app version might rely on a newer WebView component that you don't have.

Update everything at once

  1. Open the Google Play Store app.
  2. Tap your profile icon (top right) and select Manage apps & device.
  3. Tap Updates available and then Update all.
  4. If the crashing app is in that list, it'll be updated alongside everything else.
  5. For Android System WebView specifically, search for it in the Play Store and tap Update if it's not already up to date.

When to skip this: If the crashing app is a system app like the default phone dialer or camera, and it didn't crash before, check for an Android OS update instead. Go to Settings > System > System update and install any pending patches. I had a client whose camera app crashed on a Pixel 6—turned out a January security patch fixed a memory leak in the camera service. She was two months behind on updates.

Also, check if the app is a beta version. If you joined a beta program, the app might be less stable. Leave the beta by visiting the app's Play Store page, scrolling to the bottom, and tapping Leave under the beta section. Then uninstall and reinstall the stable version.

Cause 3: Insufficient Storage or a Corrupted App Install (The Harder Fix)

When cache clearing and updates don't work, the problem is often storage pressure or a bad install. I helped a small real estate agency whose MLS app crashed on every tablet they used. The app was only 50MB, but the tablets had less than 100MB free. Android couldn't allocate memory for the app's runtime data, so it threw the error instantly.

Also, if the app was installed from a sideloaded APK or restored from a backup, the installation might be incomplete. An app that expects a specific library or permission might not have it.

Free up storage and reinstall

  1. Check your available storage: Settings > Storage. Anything under 1GB free can cause app crashes.
  2. Delete unused apps, old downloads, or move photos to the cloud (Google Photos works well).
  3. Uninstall the crashing app: long-press its icon, tap Uninstall or go to Settings > Apps > [App name] > Uninstall.
  4. Restart the phone—this clears system caches and frees up memory.
  5. Reinstall the app from the Play Store. A fresh install picks up the latest version and correct permissions.

If the app still crashes after a fresh install: Check if the app is compatible with your Android version. For example, some older apps won't work on Android 14's new restrictions on background activity. Look up the app's minimum Android version on the Play Store page. If it says Android 6.0 and you're on Android 14, it might still work but could be unstable. Consider an alternative app.

For the real estate agency, we deleted four unused apps, cleared out 2GB of old photos, and reinstalled the MLS app. The crash stopped completely. The app just needed room to breathe.

Quick-Reference Summary Table

Cause Fix When It Works
Corrupted cache/data Clear cache, then clear storage if needed App worked before, then started crashing after an update or heavy use
Outdated app or WebView Update all apps and Android System WebView Multiple apps crash, or error appeared after an OS update
Low storage or bad install Free up space, uninstall, restart, reinstall Single app crashes, especially if sideloaded or restored from backup

One last thing: if none of these work, you might have a deeper system issue—like a corrupted system partition or malware. Try booting into Safe Mode (press and hold the power button, then long-press the Power off option). If the app works in Safe Mode, a third-party app is interfering. Uninstall recently installed apps one by one until the crashing stops. If it still crashes in Safe Mode, you're looking at a factory reset as the nuclear option. But that's a story for another day.

Was this solution helpful?