I\'m trying to send an Asset to my Sony SmartWatch3. I followed the Google\'s documentation (https://developer.android.com/training/wearables/data-layer/assets.html) but it
It's tricky, but in order to get invoked the content of the data has to change. Try adding the timestamp to the DataMap. E.g.
PutDataMapRequest request = PutDataMapRequest.create("/image");
Asset asset = createAssetFromBitmap(bitmap);
request.putAsset("profileImage", asset);
DataMap dataMap = request.getDataMap();
dataMap.putLong("timestamp", System.currentTimeMillis());
PutDataRequest dataRequest = request.asPutDataRequest();
Wearable.DataApi.putDataItem(mGoogleApiClient, dataRequest);