here my code, I don't understand why I get success status but the message in not received from handheld because the handheld App is off... How can I know if the message is sended and recived on handheld?
for (Node node : nodes.getNodes()) {
MessageApi.SendMessageResult result = Wearable.MessageApi
.sendMessage(mGoogleAppiClient, node.getId(), START_ACTIVITY_PATH, canaleByte)
.await();
if (!result.getStatus().isSuccess()) {
return false;
} else {
return true;
}
}