Comment ouvrir WhatsApp en utilisant une intention dans votre application Android

String url = "https://api.whatsapp.com/send?phone="+number;
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
Ali Moussa