我正在使用[链接文字[地址https://github.com/react-native-google-cast/react-native-google-cast)库来集成Google Cast和iOS的react native。
我正在获取频道初始化成功,但是稍后尝试向该频道发送消息时,出现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'react-native-google-cast / NoBluetooth',路径:'../ node_modules / react-native-google-cast / ios /'
google-cast-sdk-no-bluetooth(4.4.6)Xcode 10.3
注意:使用自定义接收器应用进行chromecast。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。