i want to open whatsapp chat box for some number which is not saved in user mobile.
I am using below code :
Uri uri = Uri.parse("smsto:" + str_MobileNumber);
Intent i = new Intent(Intent.ACTION_SENDTO, uri);
i.putExtra("sms_body", "Hello");
i.setPackage("com.whatsapp");
mContext.startActivity(i);
Sorry for late reply. I suppose your problem must be solved by now. You can try following code to open conversation for not saved numbers:
Method 1 - Using android component name
Method 2 - Using whatsapp api uri