Skip to content

Instantly share code, notes, and snippets.

@MkhytarMkhoian
Created June 5, 2024 20:41
Show Gist options
  • Save MkhytarMkhoian/252ff1c94afa8a7d380779fce8c59b50 to your computer and use it in GitHub Desktop.
Save MkhytarMkhoian/252ff1c94afa8a7d380779fce8c59b50 to your computer and use it in GitHub Desktop.
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Supported schemes -->
<data android:scheme="moove" />
<!-- Corporate subdomains -->
<data android:host="app" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Supported schemes -->
<data android:scheme="https" />
<data android:scheme="http" />
<!-- Corporate subdomains -->
<data android:host="moove.com" />
<data android:pathPattern="/ticket/confirmation" />
<data android:pathPattern="/home" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Supported schemes -->
<data android:scheme="https" />
<data android:scheme="http" />
<!-- Corporate subdomains -->
<data android:host="${firebaseDynamicLinkHost}" />
</intent-filter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment