So having created an order on our own system through my android app I am trying to open the Register app with:
Intent cloverpay = new Intent(Intents.ACTION_START_REGISTER);and passing the order ID with:
cloverpay.putExtra(Intents.EXTRA_CLOVER_ORDER_ID, orderId);The order ID is not null.
Register opens and immediately gives a dialog with the message:
Error
The current order has been deleted
I get the following error:
06-26 14:56:01.766 17075-17075/? E/PointOfSaleActivity: getOrderAndRun(OrderAppCompatActivity.java:403): order is null, will not run
and eventually:
06-26 14:56:56.570 2101-21659/? E/ActivityThread: Failed to find provider info for com.clover.android.device.attributes
Does anyone know what the problem is here or how to proceed? How is the order null when the id and amount have been given?