Here I am trying to send the message hello world to a number. Here is My code snippet:
public void openWhatsappContact(String number) {
Uri uri = Uri.parse("smsto:" + number);
Intent i = new Intent(Intent.ACTION_SENDTO,uri);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_TEXT, "Hello World");
i.putExtra("chat",true);
i.setPackage("com.whatsapp");
startActivity(Intent.createChooser(i, ""));
}
But its showing error:
No applications can perform this action