R riano_defretes Member Licensed User Oct 7, 2015 #1 hi, can we encripted send item sms? just in the sent item, but normally in operator? thx
Erel B4X founder Staff member Licensed User Longtime User Oct 8, 2015 #2 Do you want to encrypt the message that is saved on the device? Upvote 0
R riano_defretes Member Licensed User Oct 8, 2015 #3 yes, but just sent item (like pin number) Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Oct 8, 2015 #4 Messages sent with PhoneSms will not be added automatically to the device sms store. Upvote 0
R riano_defretes Member Licensed User Oct 8, 2015 #5 but in my case, it will be added automatically in sent item storage Upvote 0
R riano_defretes Member Licensed User Oct 8, 2015 #6 in emulator, it will not be added automatically, but in real phone, it will be added automatically Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Oct 8, 2015 #7 You cannot change the way that the sms is stored. Upvote 0
R riano_defretes Member Licensed User Oct 9, 2015 #8 hi erel, i don't want to change the way that the sms is stored. i just want to encrypt the sms who sent by my app. can b4a do that? Upvote 0
hi erel, i don't want to change the way that the sms is stored. i just want to encrypt the sms who sent by my app. can b4a do that?
Erel B4X founder Staff member Licensed User Longtime User Oct 9, 2015 #10 SMS is limited to 160 text characters. If the message is short enough then you can encrypt it, convert it to a string with base 64 encoding and send it. For longer messages you can the code posted here: https://www.b4x.com/android/forum/threads/max-length-of-sms-message.20006/#post-115689 Upvote 0
SMS is limited to 160 text characters. If the message is short enough then you can encrypt it, convert it to a string with base 64 encoding and send it. For longer messages you can the code posted here: https://www.b4x.com/android/forum/threads/max-length-of-sms-message.20006/#post-115689
Tayfur Well-Known Member Licensed User Longtime User Oct 9, 2015 #12 You can send with multi, part sms. Not importanst your message char length . Only change your sms cost I thiink you can fisrt step ecrypt your mesage. After you convert hex code. ;After you can send with out problem. You can use my lib SMS Extra or Phone lib. tjhose lib automatic cut your message and send. your customer (Reciver phone) get only 1 long message. links for long mesaage calculate and test: http://www.urlsms.com/sms-calculator/ http://spin.atomicobject.com/2011/04/20/concatenated-sms-messages-and-character-counts/ http://messente.com/documentation/sms-length-calculator https://en.wikipedia.org/wiki/GSM_03.38 Upvote 0
You can send with multi, part sms. Not importanst your message char length . Only change your sms cost I thiink you can fisrt step ecrypt your mesage. After you convert hex code. ;After you can send with out problem. You can use my lib SMS Extra or Phone lib. tjhose lib automatic cut your message and send. your customer (Reciver phone) get only 1 long message. links for long mesaage calculate and test: http://www.urlsms.com/sms-calculator/ http://spin.atomicobject.com/2011/04/20/concatenated-sms-messages-and-character-counts/ http://messente.com/documentation/sms-length-calculator https://en.wikipedia.org/wiki/GSM_03.38