You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wearSocket = WearSocket.getInstance();
wearSocket.setupAndConnect(getApplicationContext(), "chillen", new WearSocket.onErrorListener() {
@Override
public void onError(Throwable throwable) {
Log.d("MEx", throwable.getLocalizedMessage());
//Throws an error here if there is a problem connecting to the other device.
}
});
"Error, cannot find a connected device"
That's the error I get when I try
wearSocket.startDataListener(WatchActivity.this, "myDataPath");
wearSocket.setKeyDataType("myKey", new TypeToken<List<String>>() {
}.getType());
wearSocket.updateDataItem("myDataPath","myKey", drawView.publicPath);
Im trying to pass a Path object. My WearOS device also prints the same error message. How do I fix this?
The text was updated successfully, but these errors were encountered:
Hi.
"Error, cannot find a connected device"
That's the error I get when I try
wearSocket.updateDataItem("myDataPath","myKey", drawView.publicPath);
Im trying to pass a Path object. My WearOS device also prints the same error message. How do I fix this?
The text was updated successfully, but these errors were encountered: