Custom Dynamic Link
Mobile App
📖 Deep Linking & App Scheme Setup
🔧 Current Configuration
1. Android Setup
<!-- Handle custom scheme -->
<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="glover"/>
</intent-filter>
<!-- Handle HTTPS host -->
<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"/>
<data
android:scheme="https"
android:host="glover.edentech.online"/>
</intent-filter>🔄 To update:
2. iOS Setup
🔄 To update:
⚙️ Dynamic Link Settings (Backend)
1. Navigation
2. Fields Description
Field
Description
Example
3. Updating Steps
4. Notes
Last updated