DeepLink Integration
1. Configuration Check
Standard Deep Links
<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><key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>yourapp</string>
</array>
</dict>
</array>
<key>FlutterDeepLinkingEnabled</key>
<true/>2. Handling Links
Last updated