Flutter apps require platform-specific configuration for deep linking. Follow the native platform guides to configure deep link settings for your app:
The Adjust SDK needs to process deep links before your app navigates, so your app needs to receive deep links separately from routing. Since Flutter 3.27, Flutter’s built-in deep link handling is enabled by default on both platforms. This couples reception and routing, so you need to disable it on each platform.
On iOS, add the following to your Info.plist:
<key>FlutterDeepLinkingEnabled</key><false/>On Android, add the following to your main FlutterActivity’s <activity> tag in AndroidManifest.xml:
<meta-data android:name="flutter_deeplinking_enabled" android:value="false" />This only disables Flutter’s built-in deep link reception. You can still use Flutter’s routing libraries (such as go_router) for navigation.