A messaging app has an activity with the intent filter below:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
Finish the sendMessage() function below by creating an implicit intent that can be used to start the activity above passing the message parameter of the function as an extra with the key Intent.EXTRA_TEXT.
You have access to
startActivity() and the Intent class in the scope.