get ApplicationContext on react-native
I have a watchKit app connected with a react-native iOS app with react-native-watch-connectivity. I want to use the applicationContext to communicate between the devices. From react-native, I use watch.updateApplicationContext({ dataFromRN: "data" }) to define it and I can get it in iWatch side. But when I use updateApplicationContext(["data":"data"]) in iWatch side, an updated context event is catch by react-native but the data is not updated. // iWatch try session?.updateApplicationContext(["dataFromWatch":"data"]) print(session?.applicationContext ?? "") ["dataFromWatch": "data"] but in react-native, I have the following output for this event: // react-native iOS receiveApplicationContext(err, applicationContext) { console.log("receiveApplicationContext()", applicationContext) receiveApplicationContext() {dataFromRN: "data"} dataFromRN is a previous a...