Created
October 9, 2018 05:51
-
-
Save bapspatil/2f9be6d9428aeaa52ac0c1c5523dc92d to your computer and use it in GitHub Desktop.
AndroidManifest.xml after creating a SliceProvider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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