Skip to content

Commit

Permalink
Merge pull request #258 from adjust/v4322
Browse files Browse the repository at this point in the history
Version 4.32.2
  • Loading branch information
uerceg authored Nov 14, 2022
2 parents 2db63e5 + 27e8796 commit fb74fa0
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Assets/Adjust/Android/AdjustAndroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace com.adjust.sdk
#if UNITY_ANDROID
public class AdjustAndroid
{
private const string sdkPrefix = "unity4.32.1";
private const string sdkPrefix = "unity4.32.2";
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<AndroidJavaObject>("currentActivity");
Expand Down
2 changes: 1 addition & 1 deletion Assets/Adjust/Windows/AdjustWindows.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace com.adjust.sdk
{
public class AdjustWindows
{
private const string sdkPrefix = "unity4.32.1";
private const string sdkPrefix = "unity4.32.2";
private static bool appLaunched = false;

public static void Start(AdjustConfig adjustConfig)
Expand Down
2 changes: 1 addition & 1 deletion Assets/Adjust/iOS/AdjustUnity.mm
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ void _AdjustTrackAppStoreSubscription(const char* price,

// Transaction date.
if (transactionDate != NULL) {
NSTimeInterval transactionDateInterval = [[NSString stringWithUTF8String:transactionDate] doubleValue];
NSTimeInterval transactionDateInterval = [[NSString stringWithUTF8String:transactionDate] doubleValue] / 1000.0;
NSDate *oTransactionDate = [NSDate dateWithTimeIntervalSince1970:transactionDateInterval];
[subscription setTransactionDate:oTransactionDate];
}
Expand Down
2 changes: 1 addition & 1 deletion Assets/Adjust/iOS/AdjustiOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace com.adjust.sdk
#if UNITY_IOS
public class AdjustiOS
{
private const string sdkPrefix = "unity4.32.1";
private const string sdkPrefix = "unity4.32.2";

[DllImport("__Internal")]
private static extern void _AdjustLaunchApp(
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### Version 4.32.2 (14th November 2022)
#### Fixed
- Fixed conversion bug which caused `transaction_date` parameter of iOS subscription tracking to be wrongly formatted.

#### Native SDKs
- [[email protected]][ios_sdk_v4.32.0]
- [[email protected]][android_sdk_v4.32.0]
- [[email protected]][windows_sdk_v4.17.0]

---

### Version 4.32.1 (26th September 2022)
#### Fixed
- Fixed issue where signature was not being loaded for Unity IDE versions which are using `UnityFramework` Xcode target.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.32.1
4.32.2
2 changes: 1 addition & 1 deletion doc/english/migration/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your Adjust SDK for Unity3d to 4.32.1 from 3.4.4
## Migrate your Adjust SDK for Unity3d to 4.32.2 from 3.4.4

### Migration procedure

Expand Down

0 comments on commit fb74fa0

Please sign in to comment.