Skip to content

Commit ad883da

Browse files
authored
Merge pull request #104 from adjust/v4113
Version 4.11.3
2 parents 3ff672d + 2c78a75 commit ad883da

File tree

17 files changed

+28
-41
lines changed

17 files changed

+28
-41
lines changed

Assets/Adjust/Android/AdjustAndroid.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace com.adjust.sdk {
88
#if UNITY_ANDROID
99
public class AdjustAndroid : IAdjust {
1010
#region Fields
11-
private const string sdkPrefix = "unity4.11.2";
11+
private const string sdkPrefix = "unity4.11.3";
1212

1313
private static bool launchDeferredDeeplink = true;
1414

2.77 KB
Binary file not shown.

Assets/Adjust/Android/adjust-android.jar.meta

Lines changed: 0 additions & 24 deletions
This file was deleted.

Assets/Adjust/Metro/AdjustMetro.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#endif
1212
namespace com.adjust.sdk {
1313
public class AdjustMetro : IAdjust {
14-
private const string sdkPrefix = "unity4.11.2";
14+
private const string sdkPrefix = "unity4.11.3";
1515

1616
public bool isEnabled() {
1717
#if UNITY_WSA_10_0

Assets/Adjust/WP8/AdjustWP8.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace com.adjust.sdk {
1010
public class AdjustWP8 : IAdjust {
11-
private const string sdkPrefix = "unity4.11.2";
11+
private const string sdkPrefix = "unity4.11.3";
1212

1313
public bool isEnabled() {
1414
return AdjustWP.IsEnabled();

Assets/Adjust/iOS/ADJLogger.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ typedef enum {
2727
*
2828
* @param logLevel Level of the logs to be displayed.
2929
*/
30-
- (void)setLogLevel:(ADJLogLevel)logLevel;
30+
- (void)setLogLevel:(ADJLogLevel)logLevel isProductionEnvironment:(BOOL)isProductionEnvironment;
3131

3232
/**
3333
* @brief Prevent log level changes.
@@ -53,6 +53,7 @@ typedef enum {
5353
* @brief Print warn logs.
5454
*/
5555
- (void)warn:(nonnull NSString *)message, ...;
56+
- (void)warnInProduction:(nonnull NSString *)message, ...;
5657

5758
/**
5859
* @brief Print error logs.

Assets/Adjust/iOS/Adjust.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Adjust.h
33
// Adjust
44
//
5-
// V4.11.3
5+
// V4.11.4
66
// Created by Christian Wellenbrock on 2012-07-23.
77
// Copyright (c) 2012-2014 adjust GmbH. All rights reserved.
88
//

Assets/Adjust/iOS/AdjustSdk.a

117 KB
Binary file not shown.

Assets/Adjust/iOS/AdjustiOS.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace com.adjust.sdk {
88
#if UNITY_IOS
99
public class AdjustiOS : IAdjust {
1010
#region Fields
11-
private const string sdkPrefix = "unity4.11.2";
11+
private const string sdkPrefix = "unity4.11.3";
1212
#endregion
1313

1414
#region External methods

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### Version 4.11.3 (19th May 2017)
2+
#### Added
3+
- **[IOS][AND]** Added check if `sdk_click` package response contains attribution information.
4+
- **[IOS][AND]** Added sending of attributable parameters with every `sdk_click` package.
5+
6+
#### Changed
7+
- **[IOS][AND]** Replaced `assert` level logs with `warn` level.
8+
9+
---
10+
111
### Version 4.11.2 (6th March 2017)
212
#### Changed
313
- **[AND]** Removed connection validity checks.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ These are the minimal steps required to integrate the Adjust SDK into your Unity
5656

5757
Download the latest version from our [releases page][releases]. In there you will find two Unity packages:
5858

59-
* **Adjust_v4.11.2_Unity_4.unitypackage** - Use this package if you are using **Unity IDE version 4**.
60-
* **Adjust_v4.11.2_Unity_5.unitypackage** - Use this package if you are using **Unity IDE version 5**.
59+
* **Adjust_v4.11.3_Unity_4.unitypackage** - Use this package if you are using **Unity IDE version 4**.
60+
* **Adjust_v4.11.3_Unity_5.unitypackage** - Use this package if you are using **Unity IDE version 5**.
6161

6262
### <a id="sdk-add">Add the SDK to your project
6363

Scripts/Unity4Backup/Metro/AdjustMetro.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#endif
1212
namespace com.adjust.sdk {
1313
public class AdjustMetro : IAdjust {
14-
private const string sdkPrefix = "unity4.11.2";
14+
private const string sdkPrefix = "unity4.11.3";
1515

1616
public bool isEnabled() {
1717
#if UNITY_WSA_10_0

Scripts/Unity4Backup/WP8/AdjustWP8.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace com.adjust.sdk {
1010
public class AdjustWP8 : IAdjust {
11-
private const string sdkPrefix = "unity4.11.2";
11+
private const string sdkPrefix = "unity4.11.3";
1212

1313
public bool isEnabled() {
1414
return AdjustWP.IsEnabled();

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.11.2
1+
4.11.3

doc/migrate.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Migrate your adjust SDK for Unity3d to 4.11.2 from 3.4.4
1+
## Migrate your adjust SDK for Unity3d to 4.11.3 from 3.4.4
22

33
### Migration procedure
44

@@ -9,12 +9,12 @@ keeping in `Assets/Plugins` folder.
99

1010
For migration purposes, we have prepared two Unity packages:
1111

12-
* `Adjust_v4.11.2_Unity_4.unitypackage` (for Unity 4 users)
13-
* `Adjust_v4.11.2_Unity_5.unitypackage` (for Unity 5 users)
12+
* `Adjust_v4.11.3_Unity_4.unitypackage` (for Unity 4 users)
13+
* `Adjust_v4.11.3_Unity_5.unitypackage` (for Unity 5 users)
1414

1515
and the adjust SDK uninstall script written in Python (`adjust_uninstall.py`).
1616

17-
Migration to version 4.11.2 of our SDK requires the following steps:
17+
Migration to version 4.11.3 of our SDK requires the following steps:
1818

1919
1. Copy the `adjust_uninstall.py` script to your root Unity project directory and run it. This script should
2020
delete all adjust source files from the previous SDK version you had.

ext/Android/sdk

Submodule sdk updated 39 files

0 commit comments

Comments
 (0)