Setup Deep Link
Follow the common Flutter app guide for the full deep-link configuration (Android intent filters, iOS URL schemes, .well-known files):
eBroker-specific notes
Deep links in eBroker are configured in three places — all three must agree or links will not open the app.
- Admin Panel → Settings → System Settings → Deep Link Settings → set your Schema.
lib/settings.dart→ setshareNavigationWebUrlto your domain (web domain if you want web fallback redirect; otherwise admin panel domain).- Android
AndroidManifest.xmland iOSInfo.plist→ use the same schema and domain (covered in the common doc).
iOS Info.plist snippet (schema must match Admin Panel value):
<key>CFBundleURLSchemes</key>
<array>
<string>your_schema</string>
</array>
Quick test
Send https://yourdomain.com/<link_path> to a device with the app installed. If the app does not open, mismatch between the three locations above is the usual cause.