My app from background need to send text via WhatsAPP. I applied following but WhatsAPP GUI open with number filled in and text filled in. WhatsAPP do not send the text WhatsAPP wait to push the send button manually. How do i do it automagically? (without human requirement)
B4X:
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_VIEW, $"https://api.whatsapp.com/send?phone=${myService.sms_to}&text=${myService.sms_text}"$)
StartActivity(Intent1)