Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a8fca993 authored by Alex Buynytskyy's avatar Alex Buynytskyy
Browse files

Catch yet another exception while obtaining app data size.

Fixes: 238568145
Test: Try to uninstall 3rd party system cleaning app (com.levine.easy.boost.clean, Easy booster)
Change-Id: I883894ee2faa347d5d5a1f37e1a7037f37054c59
parent f0fd60b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ public class UninstallAlertDialogFragment extends DialogFragment implements
                    getContext().getPackageManager().getApplicationInfo(pkg, 0).storageUuid,
                    pkg, user);
            return stats.getDataBytes();
        } catch (PackageManager.NameNotFoundException | IOException e) {
        } catch (PackageManager.NameNotFoundException | IOException | SecurityException e) {
            Log.e(LOG_TAG, "Cannot determine amount of app data for " + pkg, e);
        }