Anyone seen this screen before?
It's not the usual one and once it appears we can't get out of it.
The calling code is;
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);