Skip to content

Instantly share code, notes, and snippets.

@grishko188
Last active February 1, 2023 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grishko188/97939bd9ae4a62e76f25eca047f2ca65 to your computer and use it in GitHub Desktop.
Save grishko188/97939bd9ae4a62e76f25eca047f2ca65 to your computer and use it in GitHub Desktop.
Share target activity with intent filter
<activity
android:name=".features.main.MainActivity"
android:theme="@style/Theme.AppSplash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<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