我想知道是否可以将我的PhoneGap应用程序添加到android和ios" share"屏幕。
这基本上就是我所说的:
我正在使用PhoneGap Build服务来构建我的应用程序。
我一直在网上搜索StackOverflow并且有Android的插件解决方案,但我似乎无法为ios找到任何东西。另外,我找到的解决方案是针对相反的情况(即从我的应用程序共享数据到另一个应用程序)
有人通过PhoneGap和PhoneGap Build实现了这个吗?
谢谢。
答案 0 :(得分:0)
要在phonegap Build中实现这一点,您需要创建一个自定义插件。 如果您在本地安装了phonegap / cordova,则可以添加以下内容
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
进入android-manifest.xml,它位于项目的platforms/android
文件夹中。
有关更多信息,请查看this answer。