使用MessagePort API为Samsung Gear Apps

时间:2014-10-09 10:57:44

标签: javascript ipc tizen tizen-wearable-sdk samsung-galaxy-gear

我想在两个Gear应用之间创建与MessagePort API的App通信。 基于“基本项目”模板,我添加了一些代码行来打开LocalMessagePortRemoteMessagePort

window.onload = function () {

var localMsgPort = tizen.messageport.requestLocalMessagePort('MessagePortA');
var remoteMsgPort = tizen.messageport.requestRemoteMessagePort('RKlH7XellU.Demo', 'MessagePortB');
var watchId = localMsgPort.addMessagePortListener(...);

};

但是在运行时我收到以下错误:

TypeError: 'undefined' is not an object (evaluating 'tizen.messageport.requestLocalMessagePort')

我是否需要任何其他包含或其他内容?

我是否必须在config.xml文件中添加更多权限或功能?

提前致谢。

0 个答案:

没有答案