You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use sendInDirect all goes well as documented.
But when I use sendDirect nothing happened. No error and no SMS sent.
Can you please let me know what it could be?
I added the SEND_SMS permission in the manifest...
The text was updated successfully, but these errors were encountered:
working fine on my end
SmsAndroid.sms(sender, body, "sendDirect", (err, message) => {
if (err) {
console.log("error");
ToastAndroid.show( ${err.message}, ToastAndroid.SHORT);
} else {
console.log("else block", message); // callback message
ToastAndroid.show( ${message}, ToastAndroid.SHORT);
}
});
make sure you have added permissions
When I use sendInDirect all goes well as documented.
But when I use sendDirect nothing happened. No error and no SMS sent.
Can you please let me know what it could be?
I added the SEND_SMS permission in the manifest...
The text was updated successfully, but these errors were encountered: