Anyway to get around this and avoid duplicate printing?
That's a merchant-facing screen. Are you saying your merchants are showing that screen to customers?
Intent intent = new Intent(Intents.ACTION_SECURE_PAY); int totalAmount = 120; int taxAmount = 12; TransactionSettings transactionSettings = new TransactionSettings(); transactionSettings.setDisableRestartTransactionOnFailure(true); transactionSettings.setDisableReceiptSelection(true); transactionSettings.setCardEntryMethods(CARD_ENTRY_METHOD_ALL); new PayIntent.Builder() .orderId("VALID_ORDER_ID") .amount(totalAmount) .taxAmount(taxAmount) .transactionSettings(transactionSettings). build().addTo(intent); startActivityForResult(intent, CLOVER_PAYMENT_REQUEST);
We couldn't find any sample apps that showed the usage of PayIntent, If possible can you provide us with directions on how to use them.
RegardsI don't know what is "the following behavior". If you are seeing a different problem, can you ask a new question? Please consider the guidelines on how to ask a good question https://community.clover.com/page/asking-questions and provide an MCVE that illustrates the behavior.
2 People are following this question.