Skip to content

Instantly share code, notes, and snippets.

@jirawatee
Created September 29, 2017 18:01
Show Gist options
  • Select an option

  • Save jirawatee/9887a2544b95a1c4fc3ecf361121badf to your computer and use it in GitHub Desktop.

Select an option

Save jirawatee/9887a2544b95a1c4fc3ecf361121badf to your computer and use it in GitHub Desktop.
Firebase Invites - Support DeepLink
<activity android:name=".DeepLinkActivity">
<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.com"
android:scheme="http"/>
<data
android:host="example.com"
android:scheme="https"/>
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment