Is there an option to instruct the intent to not prompt for tip?
Our current code to start the payment activity is like this.
Intent payIntent = new Intent(Intents.ACTION_CLOVER_PAY); payIntent.putExtra(Intents.EXTRA_CLOVER_ORDER_ID, order.getId()); payIntent.putExtra(Intents.EXTRA_OBEY_AUTO_LOGOUT, true); startActivityForResult(payIntent, CloverAppConstants.COLLECT_PAYMENT_REQUEST);