在 cordova android 中无需用户确认即可自动发送消息
Automatic message send without user confirmation in cordova android
我已经使用 this plugin 从我的应用程序发送消息。它将使用我的消息内容和号码在 phone 中打开默认短信应用程序,但我需要自动发送短信而不提示默认短信应用程序,有什么方法可以在 cordova 中实现此目的吗?
最后我找到了解决方案,只需将 Intent
留空即可获得所需的结果。
var intent =''; //leave this empty for sending sms automatically
var message='Test message';
sms.send(number, message, intent, success, error)
我已经使用 this plugin 从我的应用程序发送消息。它将使用我的消息内容和号码在 phone 中打开默认短信应用程序,但我需要自动发送短信而不提示默认短信应用程序,有什么方法可以在 cordova 中实现此目的吗?
最后我找到了解决方案,只需将 Intent
留空即可获得所需的结果。
var intent =''; //leave this empty for sending sms automatically
var message='Test message';
sms.send(number, message, intent, success, error)