Skip to content

Commit dcc0115

Browse files
authored
Merge pull request #168 from adjust/v540
Version 5.4.0
2 parents 57feeb4 + 2147f5b commit dcc0115

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1000
-1158
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
### Version 5.4.0 (13th June 2025)
2+
#### Added
3+
- 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](https://dev.adjust.com/en/sdk/flutter/setup/store-type).
4+
- 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](https://dev.adjust.com/en/sdk/flutter/features/first-session-delay).
5+
- 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](https://dev.adjust.com/en/sdk/flutter/features/deep-links#handling-deeplinks-with-referrer).
6+
- 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](https://dev.adjust.com/en/sdk/flutter/features/att#disable-att-framework).
7+
8+
#### Native SDKs
9+
- [[email protected]][ios_sdk_v5.4.0]
10+
- [[email protected]][android_sdk_v5.4.0]
11+
12+
---
13+
114
### Version 5.1.1 (March 5th 2025)
215
#### Fixed
316
- Fixed crashes happening in cases where native iOS `jsonResponse` is `nil` (https://github.com/adjust/flutter_sdk/pull/160).
@@ -536,6 +549,7 @@ In case you were using beta version of the SDK v5, please switch to the official
536549
[ios_sdk_v5.0.0]: https://github.com/adjust/ios_sdk/tree/v5.0.0
537550
[ios_sdk_v5.0.1]: https://github.com/adjust/ios_sdk/tree/v5.0.1
538551
[ios_sdk_v5.1.1]: https://github.com/adjust/ios_sdk/tree/v5.1.1
552+
[ios_sdk_v5.4.0]: https://github.com/adjust/ios_sdk/tree/v5.4.0
539553

540554
[android_sdk_v4.17.0]: https://github.com/adjust/android_sdk/tree/v4.17.0
541555
[android_sdk_v4.18.0]: https://github.com/adjust/android_sdk/tree/v4.18.0
@@ -564,3 +578,4 @@ In case you were using beta version of the SDK v5, please switch to the official
564578
[android_sdk_v5.0.1]: https://github.com/adjust/android_sdk/tree/v5.0.1
565579
[android_sdk_v5.0.2]: https://github.com/adjust/android_sdk/tree/v5.0.2
566580
[android_sdk_v5.1.0]: https://github.com/adjust/android_sdk/tree/v5.1.0
581+
[android_sdk_v5.4.0]: https://github.com/adjust/android_sdk/tree/v5.4.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.1
1+
5.4.0

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ android {
3737
}
3838

3939
dependencies {
40-
implementation 'com.adjust.sdk:adjust-android:5.1.0'
40+
implementation 'com.adjust.sdk:adjust-android:5.4.0'
4141
}

0 commit comments

Comments
 (0)