Skip to content

Commit 0ba9d15

Browse files
authored
Merge pull request #278 from adjust/v4350
Version 4.35.0
2 parents cea6349 + 172afad commit 0ba9d15

File tree

15 files changed

+41
-8
lines changed

15 files changed

+41
-8
lines changed

Assets/Adjust/Android/AdjustAndroid.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace com.adjust.sdk
88
#if UNITY_ANDROID
99
public class AdjustAndroid
1010
{
11-
private const string sdkPrefix = "unity4.34.1";
11+
private const string sdkPrefix = "unity4.35.0";
1212
private static bool launchDeferredDeeplink = 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");
@@ -87,6 +87,12 @@ public static void Start(AdjustConfig adjustConfig)
8787
ajoAdjustConfig.Call("setCoppaCompliantEnabled", adjustConfig.coppaCompliantEnabled.Value);
8888
}
8989

90+
// Check final Android attribution setting.
91+
if (adjustConfig.finalAndroidAttributionEnabled != null)
92+
{
93+
ajoAdjustConfig.Call("setFinalAttributionEnabled", adjustConfig.finalAndroidAttributionEnabled.Value);
94+
}
95+
9096
// Check Play Store Kids Apps setting.
9197
if (adjustConfig.playStoreKidsAppEnabled != null)
9298
{
321 Bytes
Binary file not shown.

Assets/Adjust/Test/CommandExecutor.cs

+7
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,13 @@ private void Config()
336336
adjustConfig.setPlayStoreKidsAppEnabled(playStoreKids);
337337
}
338338

339+
if (_command.ContainsParameter("finalAttributionEnabled"))
340+
{
341+
var finalAndroidAttributionEnabledS = _command.GetFirstParameterValue("finalAttributionEnabled");
342+
var finalAndroidAttributionEnabled = finalAndroidAttributionEnabledS.ToLower() == "true";
343+
adjustConfig.setFinalAndroidAttributionEnabled(finalAndroidAttributionEnabled);
344+
}
345+
339346
if (_command.ContainsParameter("sendInBackground"))
340347
{
341348
var sendInBackgroundS = _command.GetFirstParameterValue("sendInBackground");

Assets/Adjust/Unity/AdjustConfig.cs

+6
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public class AdjustConfig
4141
internal bool? allowSuppressLogLevel;
4242
internal bool? needsCost;
4343
internal bool launchDeferredDeeplink;
44+
internal bool? finalAndroidAttributionEnabled;
4445
internal AdjustLogLevel? logLevel;
4546
internal AdjustEnvironment environment;
4647
internal Action<string> deferredDeeplinkDelegate;
@@ -298,6 +299,11 @@ public void setPlayStoreKidsAppEnabled(bool playStoreKidsAppEnabled)
298299
this.playStoreKidsAppEnabled = playStoreKidsAppEnabled;
299300
}
300301

302+
public void setFinalAndroidAttributionEnabled(bool finalAndroidAttributionEnabled)
303+
{
304+
this.finalAndroidAttributionEnabled = finalAndroidAttributionEnabled;
305+
}
306+
301307
// Windows specific methods.
302308
public void setLogDelegate(Action<String> logDelegate)
303309
{

Assets/Adjust/Windows/AdjustWindows.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace com.adjust.sdk
1717
{
1818
public class AdjustWindows
1919
{
20-
private const string sdkPrefix = "unity4.34.1";
20+
private const string sdkPrefix = "unity4.35.0";
2121
private static bool appLaunched = false;
2222

2323
public static void Start(AdjustConfig adjustConfig)

Assets/Adjust/iOS/Adjust.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Adjust.h
33
// Adjust SDK
44
//
5-
// V4.34.2
5+
// V4.35.0
66
// Created by Christian Wellenbrock (@wellle) on 23rd July 2013.
77
// Copyright (c) 2012-2021 Adjust GmbH. All rights reserved.
88
//

Assets/Adjust/iOS/AdjustSdk.a

7.73 KB
Binary file not shown.

Assets/Adjust/iOS/AdjustiOS.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace com.adjust.sdk
88
#if UNITY_IOS
99
public class AdjustiOS
1010
{
11-
private const string sdkPrefix = "unity4.34.1";
11+
private const string sdkPrefix = "unity4.35.0";
1212

1313
[DllImport("__Internal")]
1414
private static extern void _AdjustLaunchApp(
-1.57 MB
Binary file not shown.
Binary file not shown.

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### Version 4.35.0 (27th September 2023)
2+
#### Added
3+
- Added support for SigV3 library. Update authorization header building logic to use `adj_signing_id`.
4+
- Added `setAndroidFinalAttributionEnabled` method to `AdjustConfig` to indicate if only final Android attribution is needed in attribution callback (by default attribution callback return intermediate attribution as well before final attribution if not enabled with this setter method).
5+
6+
#### Native SDKs
7+
- [[email protected]][ios_sdk_v4.35.0]
8+
- [[email protected]][android_sdk_v4.35.0]
9+
- [[email protected]][windows_sdk_v4.17.0]
10+
11+
---
12+
113
### Version 4.34.1 (6th September 2023)
214
#### Added
315
- Added more logging around ATT delay timer feature to indicate that it's activated.
@@ -1134,6 +1146,7 @@ Kudos to [Ivan](https://github.com/MatkovIvan) and [Evgeny](https://github.com/e
11341146
[ios_sdk_v4.33.4]: https://github.com/adjust/ios_sdk/tree/v4.33.4
11351147
[ios_sdk_v4.34.1]: https://github.com/adjust/ios_sdk/tree/v4.34.1
11361148
[ios_sdk_v4.34.2]: https://github.com/adjust/ios_sdk/tree/v4.34.2
1149+
[ios_sdk_v4.35.0]: https://github.com/adjust/ios_sdk/tree/v4.35.0
11371150

11381151
[android_sdk_v3.5.0]: https://github.com/adjust/android_sdk/tree/v3.5.0
11391152
[android_sdk_v4.1.0]: https://github.com/adjust/android_sdk/tree/v4.1.0
@@ -1179,6 +1192,7 @@ Kudos to [Ivan](https://github.com/MatkovIvan) and [Evgeny](https://github.com/e
11791192
[android_sdk_v4.33.2]: https://github.com/adjust/android_sdk/tree/v4.33.2
11801193
[android_sdk_v4.33.5]: https://github.com/adjust/android_sdk/tree/v4.33.5
11811194
[android_sdk_v4.34.0]: https://github.com/adjust/android_sdk/tree/v4.34.0
1195+
[android_sdk_v4.35.0]: https://github.com/adjust/android_sdk/tree/v4.35.0
11821196

11831197
[windows_sdk_v4.12.0]: https://github.com/adjust/windows_sdk/tree/v4.12.0
11841198
[windows_sdk_v4.13.0]: https://github.com/adjust/windows_sdk/tree/v4.13.0

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.34.1
1+
4.35.0

doc/english/migration/migrate.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Migrate your Adjust SDK for Unity3d to 4.34.1 from 3.4.4
1+
## Migrate your Adjust SDK for Unity3d to 4.35.0 from 3.4.4
22

33
### Migration procedure
44

0 commit comments

Comments
 (0)