DeepLink Integration

Link directly into specific pages of your App. Digia UI supports deep linking on both Flutter and Android.

1. Configuration Check

Format: yourapp://home or https://yourdomain.com/product/123

Add intent filters to your android/app/src/main/AndroidManifest.xml inside the <activity> tag:

<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" />
    <!-- Custom Scheme -->
    <data android:scheme="yourapp" />
    <!-- App Links (Universal) -->
    <data android:scheme="https" android:host="yourdomain.com" />
</intent-filter>

We recommend using the app_linksarrow-up-right package.

Last updated