Skip to content

Commit 240b216

Browse files
authored
Merge pull request #225 from adjust/v4293
Version 4.29.3
2 parents 8b68602 + 6e6a561 commit 240b216

File tree

10 files changed

+19
-8
lines changed

10 files changed

+19
-8
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.2";
11+
private const string sdkPrefix = "unity4.29.3";
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");
116 Bytes
Binary file not shown.

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.75";
19+
private const string IP = "192.168.86.32";
2020
#elif UNITY_IOS
2121
private const string PORT = ":8080";
2222
private const string PROTOCOL = "http://";
23-
private const string IP = "192.168.86.75";
23+
private const string IP = "192.168.86.32";
2424
private TestLibraryiOS _testLibraryiOS;
2525
#endif
2626
private const string BASE_URL = PROTOCOL + IP + PORT;

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

2323
public static void Start(AdjustConfig adjustConfig)

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

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

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### Version 4.29.3 (27th July 2021)
2+
#### Fixed
3+
- Fixed missing authorization header in retry requests on Android.
4+
5+
#### Native SDKs
6+
- [[email protected]][ios_sdk_v4.29.3]
7+
- [[email protected]][android_sdk_v4.28.3]
8+
9+
---
10+
111
### Version 4.29.2 (23rd June 2021)
212
#### Changed
313
- Added deep link URL decoding before parsing its parameters for Android platform.
@@ -960,6 +970,7 @@
960970
[android_sdk_v4.28.0]: https://github.com/adjust/android_sdk/tree/v4.28.0
961971
[android_sdk_v4.28.1]: https://github.com/adjust/android_sdk/tree/v4.28.1
962972
[android_sdk_v4.28.2]: https://github.com/adjust/android_sdk/tree/v4.28.2
973+
[android_sdk_v4.28.3]: https://github.com/adjust/android_sdk/tree/v4.28.3
963974

964975
[windows_sdk_v4.12.0]: https://github.com/adjust/windows_sdk/tree/v4.12.0
965976
[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.2
1+
4.29.3

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

33
### Migration procedure
44

0 commit comments

Comments
 (0)