Posts by Dion Ribeiro • 11 points
1 post
-
0
votes2
answers2782
viewsA: Send a message via Whatsapp to a specific contact
Try this: String url = "https://api.whatsapp.com/send?phone=559599111111"; Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url)); startActivity(i);