I have a strange issue lately when interacting with the sdk's OrderConnector.
Been developing an app where I create orders the following way:
- Disconnect, then connect to OrderConnector.
- Create order:
mCreatedOrder = mOrderConnector.createOrder(new Order(orderJSON));
The interesting thing is this has stopped working a couple of weeks ago. The error message is the following: W/ActivityManager: Unable to start service Intent { act=com.clover.intent.action.ORDER_SERVICE_V3_1 (has extras) } U=0: not found
It tries to connect 3 times after that, then throws an exception: com.clover.sdk.v1.BindingException: Could not bind to Android service
What I've tried, but had no luck:
- Checking my manifest if I miss anything, I have
clover.intent.action.ORDER
andclover.intent.action.MODIFY_ORDER
in there. - Trying an older version of my app when this functionality has worked.
- Set up another virtual device in AVD Manager
What am I missing? Does anybody have an idea where may the problem lie?
Many thanks