Below is the part of an Intent that is supposed to send an SMS message. Which action should you specify for it to work?
val intent = Intent()
intent.action = Intent. // here you should specify the action
intent.putExtra(Intent.EXTRA_TEXT, "Hello!")
intent.type = "text/plain"
...
val shareIntent = Intent.createChooser(intent, null)
startActivity(shareIntent)
Tip: You can check all the available actions in the official documentation.