I'm trying to make refer and earn activity in my app
So I want to permanently display a few apps like whatsapp, etc for the user to click on them and share directly.
I'm using Intent to share the referral code but it pops up the apps list when the user clicks share.
The code I'm using is,
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, "This is a message");
intent.setType("text/plain");
startActivity(Intent.createChooser(intent, "Share via"));
How can I make the app chooser permanent for a few apps?