このプラグインがどのように機能するかを確認するための例を作成しようとしています。これは私が従った手順です:
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 Developer App を使用してアプリをテストしていますが、画面が読み込まれて [メッセージのみ] ボタンを押しても何も起こりません。Androidデバイスでテストしています
ありがとう