Being naturally lazy, I write programs to make my life easier. One daily task is to send fairly fixed SMS to several contacts, so I wrote a small program that sends my SMS to the fixed contacts. Basically it is:
Now I want to save money too. I installed Viber and I wonder if there's a way to interface into Viber for sending SMS.
What I'm looking is the equivalent of Windows VB:
rc = Shell("viber.exe parms")
Any idea how to do that?
B4X:
Dim smsmsg As PhoneSms
smsmsg.Send("0123456789","my msg here")
... more numbers to send
smsmsg.Send("0987654321","my msg here")
Now I want to save money too. I installed Viber and I wonder if there's a way to interface into Viber for sending SMS.
What I'm looking is the equivalent of Windows VB:
rc = Shell("viber.exe parms")
Any idea how to do that?