单击共享按钮+ Meteor显示应用程序图标

时间:2016-01-08 07:15:41

标签: cordova mobile meteor

我在维基页面上选择了一些文字,然后点击手机的“分享”按钮。 会有很多图标,如" Gmail"," Facebook"," Whatsapp"还有更多,我的应用程序图标应该在我的网络应用程序上共享。

1 个答案:

答案 0 :(得分:0)

谷歌搜索让我想到了这一点。在Android中你可以使用像这样的https://github.com/stample/cordova-sharingreceptor这样的cordova插件。

要将此插件添加到您的meteor应用程序,请将以下JavaScript添加到其package.js:

Cordova.depends({
    'com.phonegap.plugins.sharingreceptor': 'https://github.com/stample/cordova-sharingreceptor'
});

来自https://github.com/meteor/meteor/wiki/Meteor-Cordova-integration#meteor-packages-with-cordova-dependencies

对于ios,我发现了Cordova: sharing browser URL to my iOS app (Clipper ios share extension)

创建您自己的扩展程序,然后将扩展程序内容复制到cordova/platforms/ios/将根据上面的堆栈帖子

工作