Skip to content

Instantly share code, notes, and snippets.

@ademirqueiroga
Created February 22, 2023 22:22
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 ademirqueiroga/10b624bde9a0d288bba5c0370a6c2c88 to your computer and use it in GitHub Desktop.
Save ademirqueiroga/10b624bde9a0d288bba5c0370a6c2c88 to your computer and use it in GitHub Desktop.
Channel/Program App link intent filters
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="content" />
<data android:host="channelsample.com" android:pathPrefix="/discover"/>
<data android:host="channelsample.com" android:pathPrefix="/category"/>
<data android:host="channelsample.com" android:pathPrefix="/movie"/>
</intent-filter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment