如何使用我的cordova app

时间:2016-08-22 22:34:02

标签: javascript android cordova android-intent webintents

我正在使用webintent cordova plugin希望打开Dropbox或收件箱发送到我的应用的文件。

我在清单中添加了以下内容:

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:mimeType="*/*" />
    <data android:pathPattern="*.json" />
</intent-filter>

当使用Dropbox中的“open with”时,我的应用程序会显示在候选列表中。到目前为止一切都很好。

但是,当我运行示例代码段来接收意图时:

window.plugins.webintent.getExtra(window.plugins.webintent.ACTION_VIEW,
  function(extra) {debugger}, function() {debugger}
);

我从cordova.js第1097行收到错误。邮件为F09 WebIntent1422948397 sError

错误意味着什么?我应该如何进一步排查?

此外,欢迎使用Dropbox中的“打开方式”或将收件箱从Inbox共享到另一个应用程序时所发生的事情的文档链接。

0 个答案:

没有答案