我想在PhoneGap Build中使用SocialSharing插件。PhoneGap生成:SocialSharing插件無法加載
我已經把下面進入config.ml文件:
<gap:plugin name="nl.x-services.plugins.socialsharing" version="4.0.8" />
這是我的HTML索引頁的樣本:
<html>
<head>
<script type="text/javascript" src="SocialSharing.js"></script>
</head>
<body>
<section id="landmarks" data-role="page">
<button onclick="window.plugins.socialsharing.share('My message')">share!</button>
<button onclick="window.plugins.socialsharing.share('Message only')">message only</button>
<button onclick="window.plugins.socialsharing.shareViaTwitter('Message via Twitter')">message via Twitter</button>
</section>
</body>
</html>
當我點擊的按鈕(下載後來自PhoneGapBuild的應用程序)沒有任何反應。
任何想法?