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

Commit 3dc7beea authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Catching DeadObjectException and TransactionTooLarge

Bug: 23796965
Bug: 23796963
Change-Id: I4c6ed217b9925b2e6014adc374b8b21f1ba559bc
parent 4abaf133
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ import android.content.pm.ResolveInfo;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.DeadObjectException;
import android.os.Environment;
import android.os.Handler;
import android.os.HandlerThread;
@@ -3305,9 +3306,14 @@ public class LauncherModel extends BroadcastReceiver
                    // Refresh widget list, if there is any newly added widget
                    PackageManager pm = context.getPackageManager();
                    for (String pkg : mPackages) {
                        try {
                            needToRefresh |= !pm.queryBroadcastReceivers(
                                    new Intent(AppWidgetManager.ACTION_APPWIDGET_UPDATE)
                                            .setPackage(pkg), 0).isEmpty();
                        } catch (RuntimeException e) {
                            // Ignore the crash. We can live with a state widget list.
                            Log.e(TAG, "PM call failed for " + pkg, e);
                        }
                    }
                }

@@ -3359,7 +3365,8 @@ public class LauncherModel extends BroadcastReceiver
                return results;
            }
        } catch (Exception e) {
            if (e.getCause() instanceof TransactionTooLargeException) {
            if (e.getCause() instanceof TransactionTooLargeException ||
                    e.getCause() instanceof DeadObjectException) {
                // the returned value may be incomplete and will not be refreshed until the next
                // time Launcher starts.
                // TODO: after figuring out a repro step, introduce a dirty bit to check when