Skip to content

Commit 6fb552d

Browse files
authored
Merge pull request #237 from adjust/v4295
Version 4.29.5
2 parents 8b6b222 + 8287222 commit 6fb552d

18 files changed

+34
-10
lines changed

Assets/Adjust/Android/AdjustAndroid.cs

+1-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.29.4";
11+
private const string sdkPrefix = "unity4.29.5";
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");
Binary file not shown.
Binary file not shown.
3.26 KB
Binary file not shown.

Assets/Adjust/Test/CommandExecutor.cs

+10
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,16 @@ private void Config()
346346
adjustConfig.allowIdfaReading = allowIdfaReading;
347347
}
348348

349+
if (_command.ContainsParameter("allowSkAdNetworkHandling"))
350+
{
351+
var allowSkAdNetworkHandlingS = _command.GetFirstParameterValue("allowSkAdNetworkHandling");
352+
var allowSkAdNetworkHandling = allowSkAdNetworkHandlingS.ToLower() == "true";
353+
if (allowSkAdNetworkHandling == false)
354+
{
355+
adjustConfig.deactivateSKAdNetworkHandling();
356+
}
357+
}
358+
349359
if (_command.ContainsParameter("userAgent"))
350360
{
351361
var userAgent = _command.GetFirstParameterValue("userAgent");

Assets/Adjust/Test/TestApp.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ public class TestApp : MonoBehaviour
1616
#elif UNITY_ANDROID
1717
private const string PORT = ":8443";
1818
private const string PROTOCOL = "https://";
19-
private const string IP = "192.168.86.32";
19+
private const string IP = "192.168.86.80";
2020
#elif UNITY_IOS
2121
private const string PORT = ":8080";
2222
private const string PROTOCOL = "http://";
23-
private const string IP = "192.168.86.32";
23+
private const string IP = "192.168.86.80";
2424
private TestLibraryiOS _testLibraryiOS;
2525
#endif
2626
private const string BASE_URL = PROTOCOL + IP + PORT;

Assets/Adjust/Unity/AdjustConfig.cs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public class AdjustConfig
1515
public const string AdjustAdRevenueSourceMopub = "mopub";
1616
public const string AdjustAdRevenueSourceAdMob = "admob_sdk";
1717
public const string AdjustAdRevenueSourceIronSource = "ironsource_sdk";
18+
public const string AdjustAdRevenueSourceAdmost = "admost_sdk";
1819

1920
internal string appToken;
2021
internal string sceneName;

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.29.4";
20+
private const string sdkPrefix = "unity4.29.5";
2121
private static bool appLaunched = false;
2222

2323
public static void Start(AdjustConfig adjustConfig)

Assets/Adjust/iOS/Adjust.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Adjust.h
33
// Adjust SDK
44
//
5-
// V4.29.5
5+
// V4.29.6
66
// Created by Christian Wellenbrock (@wellle) on 23rd July 2013.
77
// Copyright (c) 2012-2021 Adjust GmbH. All rights reserved.
88
//
@@ -48,6 +48,7 @@ extern NSString * __nonnull const ADJAdRevenueSourceAppLovinMAX;
4848
extern NSString * __nonnull const ADJAdRevenueSourceMopub;
4949
extern NSString * __nonnull const ADJAdRevenueSourceAdMob;
5050
extern NSString * __nonnull const ADJAdRevenueSourceIronSource;
51+
extern NSString * __nonnull const ADJAdRevenueSourceAdMost;
5152

5253
/**
5354
* Constants for country app's URL strategies.

Assets/Adjust/iOS/AdjustSdk.a

11.7 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.29.4";
11+
private const string sdkPrefix = "unity4.29.5";
1212

1313
[DllImport("__Internal")]
1414
private static extern void _AdjustLaunchApp(
0 Bytes
Binary file not shown.
Binary file not shown.

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### Version 4.29.5 (7th December 2021)
2+
#### Added
3+
- Added support for Admost ad revenue tracking.
4+
5+
#### Native SDKs
6+
- [[email protected]][ios_sdk_v4.29.6]
7+
- [[email protected]][android_sdk_v4.28.8]
8+
9+
---
10+
111
### Version 4.29.4 (7th September 2021)
212
#### Added
313
- Added support to OAID plugin for MSA SDK v1.0.26.
@@ -947,6 +957,7 @@
947957
[ios_sdk_v4.29.2]: https://github.com/adjust/ios_sdk/tree/v4.29.2
948958
[ios_sdk_v4.29.3]: https://github.com/adjust/ios_sdk/tree/v4.29.3
949959
[ios_sdk_v4.29.5]: https://github.com/adjust/ios_sdk/tree/v4.29.5
960+
[ios_sdk_v4.29.6]: https://github.com/adjust/ios_sdk/tree/v4.29.6
950961

951962
[android_sdk_v3.5.0]: https://github.com/adjust/android_sdk/tree/v3.5.0
952963
[android_sdk_v4.1.0]: https://github.com/adjust/android_sdk/tree/v4.1.0
@@ -984,6 +995,7 @@
984995
[android_sdk_v4.28.2]: https://github.com/adjust/android_sdk/tree/v4.28.2
985996
[android_sdk_v4.28.3]: https://github.com/adjust/android_sdk/tree/v4.28.3
986997
[android_sdk_v4.28.4]: https://github.com/adjust/android_sdk/tree/v4.28.4
998+
[android_sdk_v4.28.8]: https://github.com/adjust/android_sdk/tree/v4.28.8
987999

9881000
[windows_sdk_v4.12.0]: https://github.com/adjust/windows_sdk/tree/v4.12.0
9891001
[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.29.4
1+
4.29.5

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.29.4 from 3.4.4
1+
## Migrate your Adjust SDK for Unity3d to 4.29.5 from 3.4.4
22

33
### Migration procedure
44

ext/android/sdk

Submodule sdk updated 63 files

0 commit comments

Comments
 (0)