This seems to happen intermittently, and from what I understand only on the Mini.
Code looks like;
Intent intent; switch (mPurchaseType) { case "Pay Now": intent = new Intent(Intents.ACTION_CLOVER_PAY); break; default: intent = new Intent(Intents.ACTION_START_REGISTER); } AccountModel.sLogger.Append("Start clover pay activity", Logger.Level.INFO); intent.putExtra(Intents.EXTRA_CLOVER_ORDER_ID, CloverData.sCloverOrderId); intent.putExtra(Intents.EXTRA_OBEY_AUTO_LOGOUT, true); intent.setFlags(FLAG_ACTIVITY_CLEAR_TASK); mContext.startActivity(intent)