Skip to content

Commit

Permalink
release 4.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Carrera committed May 24, 2018
1 parent f986c29 commit d3f431e
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# CHANGELOG
### 4.2.8 - 24/05/2018
[NEW] Enable/disable track screen events.

### 4.2.7 - 23/05/2018
[IMPROVE] GDPR adaptation.

Expand Down
Binary file modified EMMA_iOS-armonly.framework/Assets.car
Binary file not shown.
Binary file modified EMMA_iOS-armonly.framework/EMMA_iOS
Binary file not shown.
14 changes: 14 additions & 0 deletions EMMA_iOS-armonly.framework/Headers/EMMA.h
Original file line number Diff line number Diff line change
Expand Up @@ -711,4 +711,18 @@ For a simple configuration put this in you AppDelegate's method:
*/
+(BOOL) isUserTrackingEnabled;


/**
* Clears caches and reset instance
*/
+ (void) reset;


/**
* This method enable or disable screen events. Default: YES
*
* @param trackScreenEvents if YES track screen events
*/
+ (void) trackScreenEvents: (BOOL) trackScreenEvents;

@end
1 change: 1 addition & 0 deletions EMMA_iOS-armonly.framework/Headers/EMMAConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
@property (nonatomic, strong) NSArray<NSString*>* customPowlinkDomains;
@property (nonatomic, assign) id<EMMAPushDelegate> pushDelegate;
@property (nonatomic, assign) id<UNUserNotificationCenterDelegate> pushNotificationsDelegate;
@property BOOL trackScreenEvents;


-(id) initWithSessionKey:(NSString*) sessionKey;
Expand Down
Binary file modified EMMA_iOS-armonly.framework/Info.plist
Binary file not shown.
Binary file modified EMMA_iOS.framework/Assets.car
Binary file not shown.
Binary file modified EMMA_iOS.framework/EMMA_iOS
Binary file not shown.
1 change: 1 addition & 0 deletions EMMA_iOS.framework/Headers/EMMAConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
@property (nonatomic, strong) NSArray<NSString*>* customPowlinkDomains;
@property (nonatomic, assign) id<EMMAPushDelegate> pushDelegate;
@property (nonatomic, assign) id<UNUserNotificationCenterDelegate> pushNotificationsDelegate;
@property BOOL trackScreenEvents;


-(id) initWithSessionKey:(NSString*) sessionKey;
Expand Down
14 changes: 14 additions & 0 deletions EMMA_iOS.framework/Headers/eMMa.h
Original file line number Diff line number Diff line change
Expand Up @@ -711,4 +711,18 @@ For a simple configuration put this in you AppDelegate's method:
*/
+(BOOL) isUserTrackingEnabled;


/**
* Clears caches and reset instance
*/
+ (void) reset;


/**
* This method enable or disable screen events. Default: YES
*
* @param trackScreenEvents if YES track screen events
*/
+ (void) trackScreenEvents: (BOOL) trackScreenEvents;

@end
Binary file modified EMMA_iOS.framework/Info.plist
Binary file not shown.

0 comments on commit d3f431e

Please sign in to comment.