adjust / flutter_sdk

This is the Flutter SDK of
MIT License
58 stars 49 forks source link

deferredDeeplinkCallback don't have label parameter #134

Closed Kibakuss closed 4 months ago

Kibakuss commented 5 months ago

Hello,

In campaign lab I have a custom link, I didn't specify a label parameter, my server fills it up, I use this for a referral campaign, it works correctly, the store opens, the app downloads, but when I open the app, i don't have label param in link. What could be the problem?

Here is my codebase:

final config = AdjustConfig(
    'myAppToken',
     AdjustEnvironment.production,
  );
  config.logLevel = AdjustLogLevel.verbose;

  config.deferredDeeplinkCallback = (uri) {
   FirebaseCrashlytics.instance
          .log('deffered deferredDeeplinkCallback $uri');
  };

  Adjust.start(config);

  //Link structure from fb:  host://?adj_t=my_token&{my_fallback}&adjust_no_sdkclick=1"
PauloReiis commented 5 months ago

Hi, have you tried adding (launchDeferredDeeplink = true):

final config = AdjustConfig(
    'myAppToken',
     AdjustEnvironment.production,
  );

config.launchDeferredDeeplink = true;

...