I have used Sharing-type intents before, such as:
Intent intent = new Intent(Intent.ACTION_SEND); intent.setType(\"plain/text\"); intent.putExtra(Intent.EXTR
In kotlin we can do like this
var intent = Intent(Intent.ACTION_SEND) intent.type = "text/plain" intent.putExtra(Intent.EXTRA_TEXT,"I suggest this app for you : ${APP_URL}") startActivity(Intent(intent))