can i check whether the B4A is able to set the whatsapp intent ?
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(sendIntent);
as i believe we can find all but not the Intent.EXTRA_TEXT ?
Thanks,