Skip to content

Commit 6d0ef2a

Browse files
authored
Merge pull request #318 from adjust/v505
Version 5.0.5
2 parents a5009aa + 36f5f0a commit 6d0ef2a

File tree

7 files changed

+19
-7
lines changed

7 files changed

+19
-7
lines changed

Assets/Adjust/Scripts/AdjustAndroid.cs

+2-2
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.0.4";
11+
private const string sdkPrefix = "unity5.0.5";
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");
@@ -57,7 +57,7 @@ public static void InitSdk(AdjustConfig adjustConfig)
5757
AndroidJavaObject ajoLogLevel;
5858
if (adjustConfig.LogLevel.Value.ToUppercaseString().Equals("SUPPRESS"))
5959
{
60-
ajoLogLevel = new AndroidJavaClass("com.adjust.sdk.LogLevel").GetStatic<AndroidJavaObject>("SUPRESS");
60+
ajoLogLevel = new AndroidJavaClass("com.adjust.sdk.LogLevel").GetStatic<AndroidJavaObject>("SUPPRESS");
6161
}
6262
else
6363
{

Assets/Adjust/Scripts/AdjustiOS.cs

+1-1
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.0.4";
11+
private const string sdkPrefix = "unity5.0.5";
1212

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

Assets/Adjust/Scripts/Editor/AdjustEditor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
using UnityEditor.Callbacks;
1010
#if UNITY_IOS
1111
using UnityEditor.iOS.Xcode;
12-
#endif
1312
#if UNITY_2019_3_OR_NEWER
1413
using UnityEditor.iOS.Xcode.Extensions;
1514
#endif
15+
#endif
1616

1717
namespace AdjustSdk
1818
{

Assets/Adjust/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.adjust.sdk",
3-
"version": "5.0.4",
3+
"version": "5.0.5",
44
"unity": "2019.4",
55
"displayName": "Adjust",
66
"license": "MIT",

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### Version 5.0.5 (24th October 2024)
2+
#### Fixed
3+
- Tagged the version which is now having submodules pointing to public repositories allowing OpenUPM to properly clone this repository (https://github.com/adjust/unity_sdk/issues/314).
4+
- Fixed issue introduced with Unity SDK v5.0.4 where the old name of native Android log level enum was being referenced (https://github.com/adjust/unity_sdk/issues/316).
5+
- Fixed error being thrown because of Adjust editor script in cases where iOS Build Support Unity module was not installed (https://github.com/adjust/unity_sdk/issues/317).
6+
7+
#### Native SDKs
8+
- [[email protected]][ios_sdk_v5.0.1]
9+
- [[email protected]][android_sdk_v5.0.1]
10+
11+
---
12+
113
### Version 5.0.4 (18th October 2024)
214
#### Changed
315
- Updated minimal supported Unity version to `2018.2`.

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.4
1+
5.0.5

0 commit comments

Comments
 (0)