diff --git a/Assets/Adjust/Android/AdjustAndroid.cs b/Assets/Adjust/Android/AdjustAndroid.cs index 1c075c7f..4af0b88d 100644 --- a/Assets/Adjust/Android/AdjustAndroid.cs +++ b/Assets/Adjust/Android/AdjustAndroid.cs @@ -8,7 +8,7 @@ namespace com.adjust.sdk #if UNITY_ANDROID public class AdjustAndroid { - private const string sdkPrefix = "unity4.29.4"; + private const string sdkPrefix = "unity4.29.5"; private static bool launchDeferredDeeplink = true; private static AndroidJavaClass ajcAdjust = new AndroidJavaClass("com.adjust.sdk.Adjust"); private static AndroidJavaObject ajoCurrentActivity = new AndroidJavaClass("com.unity3d.player.UnityPlayer").GetStatic("currentActivity"); diff --git a/Assets/Adjust/Android/Test/adjust-test-library.aar b/Assets/Adjust/Android/Test/adjust-test-library.aar index 22d9dea1..a26a0622 100644 Binary files a/Assets/Adjust/Android/Test/adjust-test-library.aar and b/Assets/Adjust/Android/Test/adjust-test-library.aar differ diff --git a/Assets/Adjust/Android/Test/adjust-test-options.aar b/Assets/Adjust/Android/Test/adjust-test-options.aar index b19395c8..d2ad9da4 100644 Binary files a/Assets/Adjust/Android/Test/adjust-test-options.aar and b/Assets/Adjust/Android/Test/adjust-test-options.aar differ diff --git a/Assets/Adjust/Android/adjust-android.jar b/Assets/Adjust/Android/adjust-android.jar index 8e53918a..b94dc92f 100644 Binary files a/Assets/Adjust/Android/adjust-android.jar and b/Assets/Adjust/Android/adjust-android.jar differ diff --git a/Assets/Adjust/Test/CommandExecutor.cs b/Assets/Adjust/Test/CommandExecutor.cs index cfe09df0..8915cae0 100644 --- a/Assets/Adjust/Test/CommandExecutor.cs +++ b/Assets/Adjust/Test/CommandExecutor.cs @@ -346,6 +346,16 @@ private void Config() adjustConfig.allowIdfaReading = allowIdfaReading; } + if (_command.ContainsParameter("allowSkAdNetworkHandling")) + { + var allowSkAdNetworkHandlingS = _command.GetFirstParameterValue("allowSkAdNetworkHandling"); + var allowSkAdNetworkHandling = allowSkAdNetworkHandlingS.ToLower() == "true"; + if (allowSkAdNetworkHandling == false) + { + adjustConfig.deactivateSKAdNetworkHandling(); + } + } + if (_command.ContainsParameter("userAgent")) { var userAgent = _command.GetFirstParameterValue("userAgent"); diff --git a/Assets/Adjust/Test/TestApp.cs b/Assets/Adjust/Test/TestApp.cs index ce62e184..7b75a26c 100644 --- a/Assets/Adjust/Test/TestApp.cs +++ b/Assets/Adjust/Test/TestApp.cs @@ -16,11 +16,11 @@ public class TestApp : MonoBehaviour #elif UNITY_ANDROID private const string PORT = ":8443"; private const string PROTOCOL = "https://"; - private const string IP = "192.168.86.32"; + private const string IP = "192.168.86.80"; #elif UNITY_IOS private const string PORT = ":8080"; private const string PROTOCOL = "http://"; - private const string IP = "192.168.86.32"; + private const string IP = "192.168.86.80"; private TestLibraryiOS _testLibraryiOS; #endif private const string BASE_URL = PROTOCOL + IP + PORT; diff --git a/Assets/Adjust/Unity/AdjustConfig.cs b/Assets/Adjust/Unity/AdjustConfig.cs index b819a77d..288c48a6 100644 --- a/Assets/Adjust/Unity/AdjustConfig.cs +++ b/Assets/Adjust/Unity/AdjustConfig.cs @@ -15,6 +15,7 @@ public class AdjustConfig public const string AdjustAdRevenueSourceMopub = "mopub"; public const string AdjustAdRevenueSourceAdMob = "admob_sdk"; public const string AdjustAdRevenueSourceIronSource = "ironsource_sdk"; + public const string AdjustAdRevenueSourceAdmost = "admost_sdk"; internal string appToken; internal string sceneName; diff --git a/Assets/Adjust/Windows/AdjustWindows.cs b/Assets/Adjust/Windows/AdjustWindows.cs index 7b91cca5..8f8688bb 100644 --- a/Assets/Adjust/Windows/AdjustWindows.cs +++ b/Assets/Adjust/Windows/AdjustWindows.cs @@ -17,7 +17,7 @@ namespace com.adjust.sdk { public class AdjustWindows { - private const string sdkPrefix = "unity4.29.4"; + private const string sdkPrefix = "unity4.29.5"; private static bool appLaunched = false; public static void Start(AdjustConfig adjustConfig) diff --git a/Assets/Adjust/iOS/Adjust.h b/Assets/Adjust/iOS/Adjust.h index 2778cb74..90102401 100644 --- a/Assets/Adjust/iOS/Adjust.h +++ b/Assets/Adjust/iOS/Adjust.h @@ -2,7 +2,7 @@ // Adjust.h // Adjust SDK // -// V4.29.5 +// V4.29.6 // Created by Christian Wellenbrock (@wellle) on 23rd July 2013. // Copyright (c) 2012-2021 Adjust GmbH. All rights reserved. // @@ -48,6 +48,7 @@ extern NSString * __nonnull const ADJAdRevenueSourceAppLovinMAX; extern NSString * __nonnull const ADJAdRevenueSourceMopub; extern NSString * __nonnull const ADJAdRevenueSourceAdMob; extern NSString * __nonnull const ADJAdRevenueSourceIronSource; +extern NSString * __nonnull const ADJAdRevenueSourceAdMost; /** * Constants for country app's URL strategies. diff --git a/Assets/Adjust/iOS/AdjustSdk.a b/Assets/Adjust/iOS/AdjustSdk.a index 2b9efab6..17fec25b 100644 Binary files a/Assets/Adjust/iOS/AdjustSdk.a and b/Assets/Adjust/iOS/AdjustSdk.a differ diff --git a/Assets/Adjust/iOS/AdjustiOS.cs b/Assets/Adjust/iOS/AdjustiOS.cs index 817a1610..fdecec46 100644 --- a/Assets/Adjust/iOS/AdjustiOS.cs +++ b/Assets/Adjust/iOS/AdjustiOS.cs @@ -8,7 +8,7 @@ namespace com.adjust.sdk #if UNITY_IOS public class AdjustiOS { - private const string sdkPrefix = "unity4.29.4"; + private const string sdkPrefix = "unity4.29.5"; [DllImport("__Internal")] private static extern void _AdjustLaunchApp( diff --git a/Assets/Adjust/iOS/Test/AdjustTestLibrary.a b/Assets/Adjust/iOS/Test/AdjustTestLibrary.a index 797a3157..c2f30ff6 100644 Binary files a/Assets/Adjust/iOS/Test/AdjustTestLibrary.a and b/Assets/Adjust/iOS/Test/AdjustTestLibrary.a differ diff --git a/Assets/AdjustOaid/Android/adjust-android-oaid.jar b/Assets/AdjustOaid/Android/adjust-android-oaid.jar index 14b68c9f..90774d9a 100644 Binary files a/Assets/AdjustOaid/Android/adjust-android-oaid.jar and b/Assets/AdjustOaid/Android/adjust-android-oaid.jar differ diff --git a/CHANGELOG.md b/CHANGELOG.md index 343e1875..a4d44edc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### Version 4.29.5 (7th December 2021) +#### Added +- Added support for Admost ad revenue tracking. + +#### Native SDKs +- [iOS@v4.29.6][ios_sdk_v4.29.6] +- [Android@v4.28.8][android_sdk_v4.28.8] + +--- + ### Version 4.29.4 (7th September 2021) #### Added - Added support to OAID plugin for MSA SDK v1.0.26. @@ -947,6 +957,7 @@ [ios_sdk_v4.29.2]: https://github.com/adjust/ios_sdk/tree/v4.29.2 [ios_sdk_v4.29.3]: https://github.com/adjust/ios_sdk/tree/v4.29.3 [ios_sdk_v4.29.5]: https://github.com/adjust/ios_sdk/tree/v4.29.5 +[ios_sdk_v4.29.6]: https://github.com/adjust/ios_sdk/tree/v4.29.6 [android_sdk_v3.5.0]: https://github.com/adjust/android_sdk/tree/v3.5.0 [android_sdk_v4.1.0]: https://github.com/adjust/android_sdk/tree/v4.1.0 @@ -984,6 +995,7 @@ [android_sdk_v4.28.2]: https://github.com/adjust/android_sdk/tree/v4.28.2 [android_sdk_v4.28.3]: https://github.com/adjust/android_sdk/tree/v4.28.3 [android_sdk_v4.28.4]: https://github.com/adjust/android_sdk/tree/v4.28.4 +[android_sdk_v4.28.8]: https://github.com/adjust/android_sdk/tree/v4.28.8 [windows_sdk_v4.12.0]: https://github.com/adjust/windows_sdk/tree/v4.12.0 [windows_sdk_v4.13.0]: https://github.com/adjust/windows_sdk/tree/v4.13.0 diff --git a/VERSION b/VERSION index 28a021bf..f57b1bce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.29.4 +4.29.5 diff --git a/doc/english/migration/migrate.md b/doc/english/migration/migrate.md index fa5146c2..c3117e01 100644 --- a/doc/english/migration/migrate.md +++ b/doc/english/migration/migrate.md @@ -1,4 +1,4 @@ -## Migrate your Adjust SDK for Unity3d to 4.29.4 from 3.4.4 +## Migrate your Adjust SDK for Unity3d to 4.29.5 from 3.4.4 ### Migration procedure diff --git a/ext/android/sdk b/ext/android/sdk index b45e397e..d937600e 160000 --- a/ext/android/sdk +++ b/ext/android/sdk @@ -1 +1 @@ -Subproject commit b45e397e69e9e98ecec0f470b39647e4d1552985 +Subproject commit d937600e077a9a8e071450ce758e5bdecb03a3f3 diff --git a/ext/ios/sdk b/ext/ios/sdk index 340a26c9..0a126dd2 160000 --- a/ext/ios/sdk +++ b/ext/ios/sdk @@ -1 +1 @@ -Subproject commit 340a26c972599c8703de9cdc5a832ff0af483cd2 +Subproject commit 0a126dd237edcae3caff075241d4463cf1259611