I try to get message and phone number in my app and then send a message to that number, I want to send this message via Viber application. I can send message with this code :
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(android.content.Intent.EXTRA_TEXT, "test test test");
intent.setpackage("com.viber.voip");
startActivity(intent);
How can I send phone number to Viber?