Skip to content

Instantly share code, notes, and snippets.

@bapspatil
Created October 9, 2018 05:51
Show Gist options
  • Save bapspatil/2f9be6d9428aeaa52ac0c1c5523dc92d to your computer and use it in GitHub Desktop.
Save bapspatil/2f9be6d9428aeaa52ac0c1c5523dc92d to your computer and use it in GitHub Desktop.
AndroidManifest.xml after creating a SliceProvider
<provider
android:name=".MySliceProvider"
android:authorities="com.bapspatil.slicesplayground"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.app.slice.category.SLICE" />
<data
android:host="bapspatil.com"
android:pathPrefix="/hello"
android:scheme="http" />
</intent-filter>
</provider>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment