I am looking for any working library for sending SMS directly from B4A code without user intervention .
By using "Intet" , it need user action to click "Send" Button in messaging app.
By using "Intet" , it need user action to click "Send" Button in messaging app.
B4X:
Dim In As Intent
In.Initialize(In.ACTION_VIEW, "sms:" & number)
In.PutExtra("sms_body", "this is the body")
StartActivity(In)