Skip to content

Releases: adjust/flutter_sdk

Version 5.6.1

17 Apr 13:20
60495e5

Choose a tag to compare

Fixed

  • Fixed an iOS issue where cold-start deep link handling could interfere with other plugins that listen for URL opens or universal links.

Changed

  • Updated the Adjust Signature library version to 3.67.0.

Native SDKs


Pull Request #191

Version 5.6.0

31 Mar 19:58
4523aa8

Choose a tag to compare

Added

  • Added support for direct deep link callbacks. You can now receive direct deep links by assigning the directDeeplinkCallback member of your AdjustConfig instance.
  • Added support for remote trigger callbacks. You can now receive remote trigger updates by assigning the remoteTriggerCallback member of your AdjustConfig instance.

Native SDKs


Pull Request #190

Version 5.5.1

09 Mar 14:50
6b60dbd

Choose a tag to compare

Fixed

  • Fixed an Android build failure (Cannot run Project.afterEvaluate(Action) when the project is already evaluated) by handling Gradle evaluation order when :adjust_sdk is evaluated before the host :app project.

Changed

  • Updated the example app to showcase recommended app_links usage for deep link handling with Adjust.

Native SDKs


Pull Request #187

Version 5.5.0

06 Dec 12:12
9320386

Choose a tag to compare

Added

  • Added getAdidWithTimeout method to the Adjust API to allow retrieving the ADID with a specified timeout. If the value is not obtained in time, nil is returned.
  • Added getAttributionWithTimeout method to the Adjust API to allow retrieving the current attribution information with a specified timeout. If the value is not obtained in time, nil is returned.
  • Added ability to disable the reading of the app set ID. You can do this by setting the isAppSetIdReadingEnabled member on your AdjustConfig instance to false.

Changed

  • Updated the Adjust Signature library version to 3.62.0.

Native SDKs


Pull Request #183

Version 5.4.5

23 Oct 13:31
72713b3

Choose a tag to compare

Changed

  • Updated the Adjust Signature library version to 3.61.0.

Native SDKs


Pull Request #180

Version 5.4.4

25 Sep 14:02
45df17b

Choose a tag to compare

Changed

  • Updated Gradle version of the plugin, example and test Android apps to 8.13.0 and compileSdk and targetSdk to 36 (#178).

Native SDKs


Pull Request #179

Version 5.4.3

23 Sep 11:37
11f9322

Choose a tag to compare

Added

  • Added support for processing deferred deep links in session responses.
  • Added support for Google License Verification (LVL). For more details about this feature, refer to the official documentation.

Native SDKs


Pull Request #177

Version 5.4.2

11 Aug 23:11
0f918de

Choose a tag to compare

Fixed

  • Fixed first session delay pre-init actions array lazy initialization.

Changed

  • Updated purchase verification handler (internal changes).

Native SDKs


Pull Request #173

Version 5.4.1

01 Jul 11:58
bf0a548

Choose a tag to compare

Added

  • Added support for Google On-Device-Measurement. For more details about this feature, refer to the official documentation.
  • Optimized the logic behind the processAndResolveDeeplink method to immediately return links that have already been resolved.

Changed

  • Updated the Adjust Signature library version to 3.47.0.
  • Updated look & feel of example and test apps.

Native SDKs


Pull Request #172

Version 5.4.0

13 Jun 10:06
dcc0115

Choose a tag to compare

Added

  • Added support for configuring store information via the AdjustStoreInfo object. You can now specify the store name and store app ID by assigning the storeInfo member of your AdjustConfig instance. This enables the SDK to record the intended app store source during initialization. For more details about this feature, refer to the official documentation.
  • Added ability to initialize the SDK for the first session in delayed mode. You can start the SDK in the delayed mode by setting the isFirstSessionDelayEnabled member on your AdjustConfig instance to true. To end the delay, make sure to call endFirstSessionDelay method of Adjust instance. For more details about this feature, refer to the official documentation.
  • Added ability to send organic search referrer together with deep link. You can send it via referrer member of the AdjustDeeplink instance. For more details about this feature, refer to the official documentation.
  • Added ability to disable SDK's interaction with AppTrackingTransparency.framework API. You can disable it by setting the isAppTrackingTransparencyUsageEnabled member on your AdjustConfig instance to false. For more details about this feature, refer to the official documentation.

Native SDKs


Pull Request #168