Skip to content

Commit 27b92e3

Browse files
committed
Build 1.7.3
1 parent d082e2d commit 27b92e3

19 files changed

+31
-129
lines changed

LeanplumSample/Assets/Editor/LeanplumAndroidBuildProcessor.cs.meta

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LeanplumSample/Assets/Plugins/Android/com.leanplum.unity-wrapper-1.7.2.aar.meta

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

LeanplumSample/Assets/Plugins/Android/com.leanplum.unity-wrapper-1.7.1.aar.meta renamed to LeanplumSample/Assets/Plugins/Android/com.leanplum.unity-wrapper-1.7.3.aar.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LeanplumSample/Assets/Plugins/Android/mainTemplate.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ allprojects {
2424
}
2525
}
2626

27-
def LEANPLUM_SDK_VERSION = "%LP_VERSION%"
27+
def LEANPLUM_SDK_VERSION = "4.4.0"
2828

2929
apply plugin: 'com.android.application'
3030
**APPLY_PLUGINS**

LeanplumSample/Assets/Plugins/iOS/Leanplum.framework/Headers/LPConstants.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@
4949
#define IS_NOOP ((!IS_SUPPORTED_IOS_VERSION) || IS_JAILBROKEN || [LPConstantsState sharedState].isTestMode || [LPConstantsState sharedState].isInPermanentFailureState)
5050
#define RETURN_IF_NOOP if (IS_NOOP) return
5151

52-
#define LEANPLUM_SDK_VERSION @"2.2.0"
52+
#define LEANPLUM_SDK_VERSION @"2.4.0"
5353
#define LEANPLUM_CLIENT @"ios"
54+
#define LEANPLUM_SUPPORTED_ENCODING @"gzip"
5455

5556
// Can upload up to 100 files or 50 MB per request.
5657
#define MAX_UPLOAD_BATCH_SIZES (50 * (1 << 20))
@@ -188,6 +189,7 @@ OBJC_EXPORT NSString *LP_PARAM_DEVICE_MODEL;
188189
OBJC_EXPORT NSString *LP_PARAM_DEVICE_SYSTEM_NAME;
189190
OBJC_EXPORT NSString *LP_PARAM_DEVICE_SYSTEM_VERSION;
190191
OBJC_EXPORT NSString *LP_PARAM_DEV_MODE;
192+
OBJC_EXPORT NSString *LP_PARAM_REQUEST_ID;
191193
OBJC_EXPORT NSString *LP_PARAM_VARS;
192194
OBJC_EXPORT NSString *LP_PARAM_KINDS;
193195
OBJC_EXPORT NSString *LP_PARAM_EMAIL;

LeanplumSample/Assets/Plugins/iOS/Leanplum.framework/Headers/LPCountAggregator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// specific language governing permissions and limitations
2323
// under the License.
2424

25-
@import Foundation;
25+
#include <Foundation/Foundation.h>
2626

2727
@interface LPCountAggregator : NSObject
2828

LeanplumSample/Assets/Plugins/iOS/Leanplum.framework/Headers/LPEnumConstants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// specific language governing permissions and limitations
2323
// under the License.
2424

25-
@import Foundation;
25+
#include <Foundation/Foundation.h>
2626

2727
#ifndef EnumConstants_h
2828
#define EnumConstants_h

LeanplumSample/Assets/Plugins/iOS/Leanplum.framework/Headers/LPRequest.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ NS_ASSUME_NONNULL_BEGIN
3535
@property (atomic) BOOL sent;
3636
@property (nonatomic, copy, nullable) LPNetworkResponseBlock responseBlock;
3737
@property (nonatomic, copy, nullable) LPNetworkErrorBlock errorBlock;
38+
@property (nonatomic, strong) NSString *requestId;
3839

3940
+ (LPRequest *)get:(NSString *)apiMethod params:(nullable NSDictionary *)params;
4041
+ (LPRequest *)post:(NSString *)apiMethod params:(nullable NSDictionary *)params;

0 commit comments

Comments
 (0)