Skip to content

Instantly share code, notes, and snippets.

@shivam-gupta007
Created November 5, 2022 13:16
Show Gist options
  • Save shivam-gupta007/bfa82669fb373a37554b1cc8ed26e34b to your computer and use it in GitHub Desktop.
Save shivam-gupta007/bfa82669fb373a37554b1cc8ed26e34b to your computer and use it in GitHub Desktop.
<activity android:name=".MainActivity" >
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name=" android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment