Skip to content

Commit

Permalink
Merge pull request #318 from adjust/v505
Browse files Browse the repository at this point in the history
Version 5.0.5
  • Loading branch information
uerceg authored Oct 24, 2024
2 parents a5009aa + 36f5f0a commit 6d0ef2a
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Assets/Adjust/Scripts/AdjustAndroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace AdjustSdk
#if UNITY_ANDROID
public class AdjustAndroid
{
private const string sdkPrefix = "unity5.0.4";
private const string sdkPrefix = "unity5.0.5";
private static bool isDeferredDeeplinkOpeningEnabled = true;
private static AndroidJavaClass ajcAdjust = new AndroidJavaClass("com.adjust.sdk.Adjust");
private static AndroidJavaObject ajoCurrentActivity = new AndroidJavaClass("com.unity3d.player.UnityPlayer").GetStatic<AndroidJavaObject>("currentActivity");
Expand Down Expand Up @@ -57,7 +57,7 @@ public static void InitSdk(AdjustConfig adjustConfig)
AndroidJavaObject ajoLogLevel;
if (adjustConfig.LogLevel.Value.ToUppercaseString().Equals("SUPPRESS"))
{
ajoLogLevel = new AndroidJavaClass("com.adjust.sdk.LogLevel").GetStatic<AndroidJavaObject>("SUPRESS");
ajoLogLevel = new AndroidJavaClass("com.adjust.sdk.LogLevel").GetStatic<AndroidJavaObject>("SUPPRESS");
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Assets/Adjust/Scripts/AdjustiOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace AdjustSdk
#if UNITY_IOS
public class AdjustiOS
{
private const string sdkPrefix = "unity5.0.4";
private const string sdkPrefix = "unity5.0.5";

// app callbacks as method parameters
private static List<Action<bool>> appIsEnabledGetterCallbacks;
Expand Down
2 changes: 1 addition & 1 deletion Assets/Adjust/Scripts/Editor/AdjustEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
using UnityEditor.Callbacks;
#if UNITY_IOS
using UnityEditor.iOS.Xcode;
#endif
#if UNITY_2019_3_OR_NEWER
using UnityEditor.iOS.Xcode.Extensions;
#endif
#endif

namespace AdjustSdk
{
Expand Down
2 changes: 1 addition & 1 deletion Assets/Adjust/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.adjust.sdk",
"version": "5.0.4",
"version": "5.0.5",
"unity": "2019.4",
"displayName": "Adjust",
"license": "MIT",
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
### Version 5.0.5 (24th October 2024)
#### Fixed
- 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).
- 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).
- 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).

#### Native SDKs
- [[email protected]][ios_sdk_v5.0.1]
- [[email protected]][android_sdk_v5.0.1]

---

### Version 5.0.4 (18th October 2024)
#### Changed
- Updated minimal supported Unity version to `2018.2`.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.4
5.0.5
2 changes: 1 addition & 1 deletion ext/ios/sdk

0 comments on commit 6d0ef2a

Please sign in to comment.