我只是想把工作作为一个例子来检查这个插件是如何工作的,这是我遵循的步骤:
phonegap create test
cd test
phonegap local plugin add https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin.git
phonegap prepare
然后我将以下标记添加到 index.html 以创建一个简单的共享按钮:
<button onclick="window.plugins.socialsharing.share('Message only')">message only</button>
然后这一行到 config.xml
<plugin name="nl.x-services.plugins.socialsharing" />
我运行服务器
phonegap serve
并使用 Android 开发者应用程序测试应用程序,但是当屏幕加载并按下“仅消息按钮”时,什么也没有发生,我错过了什么吗?我正在安卓设备上进行测试
谢谢