Skip to content

Instantly share code, notes, and snippets.

@S64
Created August 22, 2016 01:28
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 S64/e1520a0a3aafaf4139142f6132a5c795 to your computer and use it in GitHub Desktop.
Save S64/e1520a0a3aafaf4139142f6132a5c795 to your computer and use it in GitHub Desktop.
<activity android:name=".ImplicitIntentActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="example.wantedly.com"
android:pathPattern="/example_content/.*"
android:scheme="https" />
</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" />
<data
android:host="example_content"
android:pathPattern="/.*"
android:scheme="wtd-example" />
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment