Skip to content

Commit 88a232d

Browse files
authored
Merge pull request #353 from adjust/v551
Version 5.5.1
2 parents 9fdaf1a + 0fc6fdc commit 88a232d

9 files changed

Lines changed: 22 additions & 7 deletions

File tree

Assets/Adjust/Native/Editor/Dependencies.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
</androidPackage>
88
</androidPackages>
99
<iosPods>
10-
<iosPod name="Adjust" version="5.5.0" minTargetSdk="12.0"/>
10+
<iosPod name="Adjust" version="5.5.2" minTargetSdk="12.0"/>
1111
</iosPods>
1212
</dependencies>

Assets/Adjust/Native/iOS/AdjustUnity.mm

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,9 @@ void _AdjustTrackMeasurementConsent(int enabled) {
738738

739739
void _AdjustRequestAppTrackingAuthorization(AdjustDelegateAttCallback callback) {
740740
[Adjust requestAppTrackingAuthorizationWithCompletionHandler:^(NSUInteger status) {
741-
callback((int)status);
741+
// NSUIntegerMax represents error in native world
742+
int mappedStatus = (status == NSUIntegerMax) ? -1 : (int)status;
743+
callback(mappedStatus);
742744
}];
743745
}
744746

Assets/Adjust/Scripts/AdjustAndroid.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace AdjustSdk
88
#if UNITY_ANDROID
99
public class AdjustAndroid
1010
{
11-
private const string sdkPrefix = "unity5.5.0";
11+
private const string sdkPrefix = "unity5.5.1";
1212
private static bool isDeferredDeeplinkOpeningEnabled = true;
1313
private static AndroidJavaClass ajcAdjust = new AndroidJavaClass("com.adjust.sdk.Adjust");
1414
private static AndroidJavaObject ajoCurrentActivity = new AndroidJavaClass("com.unity3d.player.UnityPlayer").GetStatic<AndroidJavaObject>("currentActivity");

Assets/Adjust/Scripts/AdjustiOS.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace AdjustSdk
88
#if UNITY_IOS
99
public class AdjustiOS
1010
{
11-
private const string sdkPrefix = "unity5.5.0";
11+
private const string sdkPrefix = "unity5.5.1";
1212

1313
// app callbacks as method parameters
1414
private static List<Action<bool>> appIsEnabledGetterCallbacks;

Assets/Adjust/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.adjust.sdk",
3-
"version": "5.5.0",
3+
"version": "5.5.1",
44
"unity": "2019.4",
55
"displayName": "Adjust",
66
"license": "MIT",
-966 Bytes
Binary file not shown.

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### Version 5.5.1 (23rd January 2026)
2+
#### Changed
3+
- Updated `RequestAppTrackingAuthorization` to return `-1` as an error indicator when the device doesn't support `AppTrackingTransparency.framework` or when the framework isn't linked.
4+
- Replaced `NSLog` with Unified Logging (`os_log`) for iOS SDK log output.
5+
- Improved iOS backoff strategy and Apple Ads flows.
6+
7+
#### Native SDKs
8+
- [iOS@v5.5.2][ios_sdk_v5.5.2]
9+
- [Android@v5.5.0][android_sdk_v5.5.0]
10+
11+
---
12+
113
### Version 5.5.0 (6th December 2025)
214
#### Added
315
- 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.
@@ -1519,6 +1531,7 @@ Kudos to [Ivan](https://github.com/MatkovIvan) and [Evgeny](https://github.com/e
15191531
[ios_sdk_v5.4.4]: https://github.com/adjust/ios_sdk/tree/v5.4.4
15201532
[ios_sdk_v5.4.6]: https://github.com/adjust/ios_sdk/tree/v5.4.6
15211533
[ios_sdk_v5.5.0]: https://github.com/adjust/ios_sdk/tree/v5.5.0
1534+
[ios_sdk_v5.5.2]: https://github.com/adjust/ios_sdk/tree/v5.5.2
15221535

15231536
[android_sdk_v3.5.0]: https://github.com/adjust/android_sdk/tree/v3.5.0
15241537
[android_sdk_v4.1.0]: https://github.com/adjust/android_sdk/tree/v4.1.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.5.0
1+
5.5.1

0 commit comments

Comments
 (0)