Last active
December 6, 2017 10:44
-
-
Save sathyapriya31/f6f282cf3a06f7eb0602d1a612214675 to your computer and use it in GitHub Desktop.
This file contains 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
<activity | |
android:name=".MainActivity"> | |
<intent-filter android:label="Shooter"> | |
<action android:name="android.intent.action.VIEW" /> | |
<category android:name="android.intent.category.DEFAULT" /> | |
<category android:name="android.intent.category.BROWSABLE" /> | |
<!-- Accepts URIs that begin with "link://exampleurl” --> | |
<data android:scheme="link" | |
android:host="exampleurl" /> | |
</intent-filter> | |
</activity> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment