Skip to content

Instantly share code, notes, and snippets.

@saiday
Created March 21, 2017 14:48
Show Gist options
  • Save saiday/e3c6727e183fe2021c4361afea5e002a to your computer and use it in GitHub Desktop.
Save saiday/e3c6727e183fe2021c4361afea5e002a to your computer and use it in GitHub Desktop.
Android Intents on manifest
<activity ..>
<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:scheme="http" />
<data android:scheme="https" />
<data android:host="www.mysite.com" />
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment