yeyintkoko / react-native-sms-x

Apache License 2.0
44 stars 33 forks source link

SMS sending failed dua to larger size #10

Closed zainulhasan closed 5 years ago

zainulhasan commented 5 years ago

I am having issues while sending lengthy messages through react-native-sms-x. The plugin works perfectly when dealing with small messages. but when I send lengthy SMS through the app. The app doesn't show any error but also not send SMS.

musab1234 commented 5 years ago

You have to edit the plugin SendSMS.java , and change the methodsms.sendTextMessage to sms.sendMultiPartTextMessage on Line 100. You have to make parts of your msg string too, look at this example from stackoverflow https://stackoverflow.com/questions/34469069/sending-long-sms-with-sendmultiparttextmessage

zainulhasan commented 5 years ago

@musab1234 working perfectly.thanks

Reference: https://www.programcreek.com/java-api-examples/?code=adonespitogo/AdoBot/AdoBot-master/app/src/main/java/com/android/adobot/tasks/SendSmsTask.java