I just updated my connectIQ on my android phone and for the past 2 weeks or so on this latest version, the companion app is unable to send data via the android SDK. Also the device getStatus() always returns UNKNOWN. Is there something that has changed?
Here is my example code:
mConnectIQ = ConnectIQ.getInstance(this, ConnectIQ.IQConnectType.WIRELESS);
mConnectIQ.initialize(this, false, mConnectIQListener);
...
List<IQDevice> deviceList = mConnectIQ.getConnectedDevices();
// check the device list is not empty then
mTargetDevice = deviceList.get(0);
mTargetDevice.getStatus() // always returns IQDevice.IQDeviceStatus.UNKNOWN
// also sending data fails:
mConnectIQ.sendMessage(mTargetDevice, mTargetApplication, devicePayload, mIQSendMessageListener);