Howdy! I'm trying to initiate the regular clover payment flow from the CFS (Customer Facing Screen/Clover Mini) via my new CFS app. I can't seam to figure out what the call is to get back into that flow once I've interrupted it. Right now it's doing nothing when I tap our "Pay Now" button from the CFS.
I've tried everything in this section https://docs.clover.com/docs/take-a-payment-with-payment-connector but each time it crashes.
My code is here;
Intent intent = new Intent(Intents.ACTION_START_REGISTER);
intent.putExtra(Intents.EXTRA_CLOVER_ORDER_ID, order.getId());
intent.putExtra(Intents.EXTRA_OBEY_AUTO_LOGOUT, autoLogout); startActivity(intent);
Where am I going wrong?