Skip to content

Instantly share code, notes, and snippets.

@duynhm
Created October 6, 2016 04:06
Show Gist options
  • Save duynhm/c933e6e9e66ccbacb925dd072d78dbbb to your computer and use it in GitHub Desktop.
Save duynhm/c933e6e9e66ccbacb925dd072d78dbbb to your computer and use it in GitHub Desktop.
<intent-filter >
<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 "http://www.example.com/gizmos” -->
<data android:scheme="http"
android:host="example.tk"
android:pathPrefix="/customer" />
</intent-filter>
<intent-filter >
<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 "http://www.example.com/gizmos” -->
<data android:scheme="deeplink"
android:host="screen" />
</intent-filter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment