Created
June 5, 2024 20:41
-
-
Save MkhytarMkhoian/252ff1c94afa8a7d380779fce8c59b50 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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