void startAppProblemLocked(ProcessRecord app) {
    // If this app is not running under the current user, then we
    // can't give it a report button because that would require
    // launching the report UI under a different user.
    app.errorReportReceiver = null;

    for (int userId : mService.mUserController.getCurrentProfileIdsLocked()) {
      if (app.userId == userId) {
        app.errorReportReceiver =
            ApplicationErrorReport.getErrorReportReceiver(
                mContext, app.info.packageName, app.info.flags);
      }
    }
    mService.skipCurrentReceiverLocked(app);
  }