Phonegapを使用してバックグラウンドでSMSを送信するのを手伝ってくれる人はいますか?
Git-hub でサンプルを試しましたが、エラー メッセージが表示されます。
Uncaught TypeError: Cannot read property 'sms' of undefined at file:///android_asset/www/sendingsms.html:
誰でもこの問題で私を助けることができます.
Phonegapを使用してバックグラウンドでSMSを送信するのを手伝ってくれる人はいますか?
Git-hub でサンプルを試しましたが、エラー メッセージが表示されます。
Uncaught TypeError: Cannot read property 'sms' of undefined at file:///android_asset/www/sendingsms.html:
誰でもこの問題で私を助けることができます.
ネイティブの SMS Manager を使用するプラグインを使用する必要があります。
そのようなプラグインを作成しました(Phonegap 2.5で動作):https://github.com/Pyo25/phonegap-sms-sending-plugin
必要なファイルを含めたら、send メソッドを呼び出すだけです。例:
var smsSendingPlugin = cordova.require('cordova/plugin/smssendingplugin');
smsSendingPlugin.send ("0032472345678", "Hello World !", function() {
// message sent
}, function() {
// message not sent
});