adjust-icon

Additional deep link features

Method signature
static Future<String?> getLastDeeplink()

You can return the last deep link URL passed to the Adjust.processDeeplink or Adjust.appWillOpenUrl method by calling the Adjust.getLastDeeplink method.

final lastDeeplink = await Adjust.getLastDeeplink();
if (lastDeeplink != null) {
print('Last deep link: $lastDeeplink');
}

Enable LinkMe (iOS only)

Property declaration
bool? linkMeEnabled;

The Adjust SDK lets you copy deep link information from the device pasteboard. When combined with Adjust’s LinkMe solution, this feature enables deferred deep linking on devices running iOS 15 and above.

When a user clicks on a LinkMe URL they have the option to copy the link information to their system pasteboard. You can use the Adjust SDK to read the system pasteboard for deep link information. If deep link information is present, the SDK forwards the user to the correct page in your app.

To enable pasteboard checking in your app, set the linkMeEnabled property to true on your config object:

AdjustConfig adjustConfig = new AdjustConfig('{YourAppToken}', AdjustEnvironment.sandbox);
adjustConfig.linkMeEnabled = true;
Adjust.start(adjustConfig);