Releases: adjust/flutter_sdk
Releases · adjust/flutter_sdk
Version 5.6.1
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
Added
- Added support for direct deep link callbacks. You can now receive direct deep links by assigning the
directDeeplinkCallbackmember of yourAdjustConfiginstance. - Added support for remote trigger callbacks. You can now receive remote trigger updates by assigning the
remoteTriggerCallbackmember of yourAdjustConfiginstance.
Native SDKs
Pull Request #190
Version 5.5.1
Fixed
- Fixed an Android build failure (
Cannot run Project.afterEvaluate(Action) when the project is already evaluated) by handling Gradle evaluation order when:adjust_sdkis evaluated before the host:appproject.
Changed
- Updated the example app to showcase recommended
app_linksusage for deep link handling with Adjust.
Native SDKs
Pull Request #187
Version 5.5.0
Added
- Added
getAdidWithTimeoutmethod to theAdjustAPI to allow retrieving the ADID with a specified timeout. If the value is not obtained in time, nil is returned. - Added
getAttributionWithTimeoutmethod to theAdjustAPI 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
isAppSetIdReadingEnabledmember on yourAdjustConfiginstance tofalse.
Changed
- Updated the Adjust Signature library version to 3.62.0.
Native SDKs
Pull Request #183
Version 5.4.5
Version 5.4.4
Version 5.4.3
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
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
Added
- Added support for Google On-Device-Measurement. For more details about this feature, refer to the official documentation.
- Optimized the logic behind the
processAndResolveDeeplinkmethod 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
Added
- Added support for configuring store information via the
AdjustStoreInfoobject. You can now specify the store name and store app ID by assigning thestoreInfomember of yourAdjustConfiginstance. 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
isFirstSessionDelayEnabledmember on yourAdjustConfiginstance totrue. To end the delay, make sure to callendFirstSessionDelaymethod ofAdjustinstance. 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
referrermember of theAdjustDeeplinkinstance. For more details about this feature, refer to the official documentation. - Added ability to disable SDK's interaction with
AppTrackingTransparency.frameworkAPI. You can disable it by setting theisAppTrackingTransparencyUsageEnabledmember on yourAdjustConfiginstance tofalse. For more details about this feature, refer to the official documentation.
Native SDKs
Pull Request #168