E/JavaBinder: *** Uncaught remote exception! (Exceptions are not yet supported across processes.) java.lang.StackOverflowError at com.clover.engine.order.v3.OrderEndpoints.queueVoid(OrderEndpoints.java:366) at com.clover.engine.order.v3.OrderEndpoints.queueVoid(OrderEndpoints.java:366) at com.clover.engine.order.v3.OrderEndpoints.queueVoid(OrderEndpoints.java:366) at com.clover.engine.order.v3.OrderEndpoints.queueVoid(OrderEndpoints.java:366) ...Is this a known issue with the "Orders" app? Have I done something wrong in creating the order with my app? Here's the code that launches the Activity to create the order.
val order = orderConnector.createOrder(Order()) val intent = Intent(Intents.ACTION_SECURE_PAY) intent.putExtra(Intents.EXTRA_ORDER_ID, order.id) intent.putExtra(Intents.EXTRA_AMOUNT, 100L) intent.putExtra(Intents.EXTRA_TRANSACTION_TYPE, Intents.TRANSACTION_TYPE_AUTH) startActivityForResult(intent, SECURE_PAY_REQUEST_CODE)