If sending SMS to any of these two systems:
The message appears in "sent messages" of the device
As I can send an SMS, without appearing in "sent messages" of the device?
thanks
B4X:
'1)
Dim ps As PhoneSms
Dim r As Reflector
r.Target = r.RunStaticMethod("android.telephony.SmsManager", "getDefault", Null, Null)
r.RunMethod4("sendTextMessage", Array As Object("phone number", Null, "Hello", Null, Null), _
Array As String("java.lang.String", "java.lang.String", "java.lang.String","android.app.PendingIntent", "android.app.PendingIntent"))
'-------------------------------------------------------------------------------------------------
'2)
Dim Sms1 As PhoneSms
Sms1.Send(phone number,"hello")
The message appears in "sent messages" of the device
As I can send an SMS, without appearing in "sent messages" of the device?
thanks