Skip to content

Commit 5fe2ee2

Browse files
authored
Merge pull request #323 from adjust/v506
Version 5.0.6
2 parents 6d0ef2a + 18aa826 commit 5fe2ee2

File tree

7 files changed

+19
-37
lines changed

7 files changed

+19
-37
lines changed

Assets/Adjust/Native/Editor/Dependencies.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<dependencies>
33
<androidPackages>
4-
<androidPackage spec="com.adjust.sdk:adjust-android:5.0.1">
4+
<androidPackage spec="com.adjust.sdk:adjust-android:5.0.2">
55
</androidPackage>
66
<androidPackage spec="com.android.installreferrer:installreferrer:2.2">
77
</androidPackage>

Assets/Adjust/Scripts/Adjust.cs

-32
Original file line numberDiff line numberDiff line change
@@ -171,38 +171,6 @@ public static void Disable()
171171
#endif
172172
}
173173

174-
public static void EnablePlayStoreKidsApp()
175-
{
176-
if (IsEditor())
177-
{
178-
return;
179-
}
180-
181-
#if UNITY_IOS
182-
Debug.Log("[Adjust]: Marking apps as Play Store kids app is only supported for Android platform.");
183-
#elif UNITY_ANDROID
184-
AdjustAndroid.EnablePlayStoreKidsApp();
185-
#else
186-
Debug.Log(errorMsgPlatform);
187-
#endif
188-
}
189-
190-
public static void DisablePlayStoreKidsApp()
191-
{
192-
if (IsEditor())
193-
{
194-
return;
195-
}
196-
197-
#if UNITY_IOS
198-
Debug.Log("[Adjust]: Marking apps as Play Store kids app is only supported for Android platform.");
199-
#elif UNITY_ANDROID
200-
AdjustAndroid.DisablePlayStoreKidsApp();
201-
#else
202-
Debug.Log(errorMsgPlatform);
203-
#endif
204-
}
205-
206174
public static void IsEnabled(Action<bool> callback)
207175
{
208176
if (IsEditor())

Assets/Adjust/Scripts/AdjustAndroid.cs

+1-1
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.5";
11+
private const string sdkPrefix = "unity5.0.6";
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");

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

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

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.5",
3+
"version": "5.0.6",
44
"unity": "2019.4",
55
"displayName": "Adjust",
66
"license": "MIT",

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
### Version 5.0.6 (5th December 2024)
2+
#### Fixed
3+
- Cleaned up unused methods from the API.
4+
5+
#### Changed
6+
- Switched to native Android SDK version that depends on a specific version of the signature library.
7+
8+
#### Native SDKs
9+
- [[email protected]][ios_sdk_v5.0.1]
10+
- [[email protected]][android_sdk_v5.0.2]
11+
12+
---
13+
114
### Version 5.0.5 (24th October 2024)
215
#### Fixed
316
- 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).
@@ -1395,6 +1408,7 @@ Kudos to [Ivan](https://github.com/MatkovIvan) and [Evgeny](https://github.com/e
13951408
[android_sdk_v4.38.3]: https://github.com/adjust/android_sdk/tree/v4.38.3
13961409
[android_sdk_v5.0.0]: https://github.com/adjust/android_sdk/tree/v5.0.0
13971410
[android_sdk_v5.0.1]: https://github.com/adjust/android_sdk/tree/v5.0.1
1411+
[android_sdk_v5.0.2]: https://github.com/adjust/android_sdk/tree/v5.0.2
13981412

13991413
[windows_sdk_v4.12.0]: https://github.com/adjust/windows_sdk/tree/v4.12.0
14001414
[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-
5.0.5
1+
5.0.6

0 commit comments

Comments
 (0)