我在用https://github.com/react-native-google-cast/react-native-google-cast用于集成Google CAST的库和用于IOS的Reaction本机。
我得到了频道成功但后来在试图向频道发送信息的时候,我得到sendTextMessage错误通道没有连接或没有注册到会话。
这是代码-
sendMediaGetMessage() {
console.debug("entry: sendMediaGetMessage");
console.debug("WatchV:registering channel " + CastConstant.MESSAGE_CHANNEL);
GoogleCast.initChannel(CastConstant.MESSAGE_CHANNEL)
.then(() => {
console.debug("WatchV:channel init success");
GoogleCast.sendMessage(
CastConstant.MESSAGE_CHANNEL,
JSON.stringify({ intent: "get_media" })
)
.then(() => {})
.catch(error => {
console.log(error);
});
})
.catch(function(err) {
console.debug("WatchV:error: sendMediaGetMessage");
console.log(err);
});
}
我在用-
POD‘Reaction-本机-Google-cast/No蓝牙’,PATH:‘../node_modules/react-native-google-cast/ios/’ Googlecast-SDK-无蓝牙(4.4.6) Xcode 10.3 反应本机0.59 注:使用自定义接收应用程序的Chromecast。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。