Is it possible to open Whatsapp with a especific number, I don't want to send or share anything.
I just want to click on a button on my app and open Whatsapp ready to send a message or click on call
I am achieving this in B4A with
looking to do the same with B4i
I just want to click on a button on my app and open Whatsapp ready to send a message or click on call
I am achieving this in B4A with
B4X:
Dim i As Intent
i.Initialize("android.intent.action.SENDTO", "smsto:" & numphone)
Dim jo As JavaObject = i
jo.RunMethod("setPackage", Array("com.whatsapp"))
StartActivity(i)
looking to do the same with B4i