Hi,
The Tip window opens for clover mini while using the below code snippets
Intent intent = new Intent(Intents.ACTION_CUSTOMER_ADD_TIP); intent.putExtra(Intents.EXTRA_ORDER_ID, order_X); intent.putExtra(Intents.EXTRA_AMOUNT, amount_X); startActivityForResult(intent, TIP_REQUEST_CODE);
But for Clover station devices I'm getting crash when opening the Tip window for the above code snippets. I have followed many reference link but there was no proper code snippets for clover station tip window view to adjust the final payment. I can understand for Sale request the Tip occurs before payment but only for Auth request the Tip occurs after payment. The clover station works by the way. But I need it in intent firing.
Because our entire project was done based on Clover intent, So i need to use intent way to open Tip window for clover station
- I Tried using ACTION_STATION_SECURE_PAY but the Tip window is not popping out after payment but failed,
- Tried using this reference link but no code snippets found to follow https://community.clover.com/questions/18887/paymentconnector-tip-mode-isnt-honored-on-clover-s.html
It will be very much appreciable if anyone help me to achieve how to fire intent for Clover station to open tip window after payment using INTENT.