We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using this library when texting long messages (more than 160 characters), it return SMS sent but the message is not sent.
The text was updated successfully, but these errors were encountered:
Solution is quite simple: Code to change here
react-native-send-direct-sms/android/src/main/java/com/senddirectsms/SendDirectSmsModule.java
Line 34 in ed06502
use sendMultipartTextMessage instead of sendTextMessage if long message
ArrayList<String> parts = smsManager.divideMessage(longMessage); smsManager.sendMultipartTextMessage(phoneNumber, null, parts, null, null);
Sorry, something went wrong.
No branches or pull requests
Using this library when texting long messages (more than 160 characters), it return SMS sent but the message is not sent.
The text was updated successfully, but these errors were encountered: