Ok I found the issue. Before converting it to a UInt8 Array you need to convert it to a data object and then convert it to unit8 array for feeding. So the code in swift should look like this,
let str = "SJeOvypKWad9GzUD2GHRig=="
let data = Data(base64Encoded: str);
let buf: [UInt8] = Array(data!)
Any solution?? I am also facing the same issue. The phone is paired and the app is installed but when I try to send a message it gives Watch app is not reachable?
Ok I found the issue. Before converting it to a UInt8 Array you need to convert it to a data object and then convert it to unit8 array for feeding. So the code in swift should look like this,
let str = "SJeOvypKWad9GzUD2GHRig=="
let data = Data(base64Encoded: str);
let buf: [UInt8] = Array(data!)
Any solution?? I am also facing the same issue. The phone is paired and the app is installed but when I try to send a message it gives Watch app is not reachable?