We would like to clarity if ACTION_SECURE_PAY is supported for Clover Station and Station 2018.
We ran the following code on a clover Mini Dev kit and it worked as expected
Intent intent = new Intent(Intents.ACTION_SECURE_PAY); intent.putExtra(Intents.EXTRA_ORDER_ID, order.getTransactionId()); int totalAmount = (int)(order.getTotalAmount() * 100); intent.putExtra(Intents.EXTRA_AMOUNT,Long.valueOf(totalAmount)); startActivityForResult(intent, CLOVER_PAYMENT_REQUEST)But when we run the same code on a Clover Station 2018 Dev Kit it crashes with the following error
No Activity found to handle intent {act=clover.intent.action.START_SECURE_PAYMENT(has extras)}We came across the following post which say that ACTION_SECURE_PAY is supported on Clover station
and the following post's comment says " equivalent secure payments interface that will run on Station."
If it does not support, is there an alternative for ACTION_SECURE_PAY for the above clover models