Skip to content

Instantly share code, notes, and snippets.

@RikAzerion
Created February 8, 2019 12:07
Show Gist options
  • Save RikAzerion/db1fddc7d63ee448fd9fae6746926eae to your computer and use it in GitHub Desktop.
Save RikAzerion/db1fddc7d63ee448fd9fae6746926eae to your computer and use it in GitHub Desktop.
Deep linking Android manifest additions
<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="<BASE_URL>" android:scheme="http" />
<data android:host="<BASE_URL>" android:scheme="https" />
<data android:scheme="<URL_SCHEME>" />
</intent-filter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment