3
You have to add an Activity statement on Androidmanifest.xml <intent-filter>
including the action ACTION_SEND and the kind of content it will deal with.
Example for text content:
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
For more information see Receiving simple data from other apps.