I have a webview from which user can share a link to whatsapp but i want that when ever user share a link via whatsapp from webview my app name should also be sent in that t
Use the below code to share text to WhatsApp
Intent intent = new Intent(); intent.setAction(Intent.ACTION_SEND); intent.putExtra(Intent.EXTRA_TEXT, "my app name"); intent.setType("text/plain"); intent.setPackage("com.whatsapp"); startActivity(intent);