You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ios/Classes/CountlyiOS/CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@
18
18
- Added `enableAutomaticViewTracking` config for automatic track views
19
19
- Added `automaticViewTrackingExclusionList` config for automatic view tracking exclusion list
20
20
- Added `globalViewSegmentation` config to add set global view segmentation.
21
+
- Added `enrollABOnRCDownload` config method to auto enroll users to AB tests when downloading RC values.
22
+
- Added `enableManualSessionControlHybridMode` config. With this mode 'updateSession' calls will automatically be handled by SDK for manual session handling.
21
23
- Deprecated `giveConsentForAllFeatures` method
22
24
- Deprecated `CLYAutoViewTracking` in config
23
25
- Deprecated existing view tracking methods and variables:
Copy file name to clipboardExpand all lines: ios/Classes/CountlyiOS/CountlyConfig.h
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -403,6 +403,14 @@ typedef enum : NSUInteger
403
403
*/
404
404
@property (nonatomic) BOOL manualSessionHandling;
405
405
406
+
/**
407
+
* For handling start and stop sessions manually.
408
+
* @discussion If set, SDK does not handle beginning and ending sessions automatically. Methods @c beginSession and @c endSession need to be called manually.
409
+
* update session will handle auto automatically, no need to call @c updateSession when hybrid mode is enabled.
410
+
* NOTE: It will work only when manualSessionHandling is enabled.
0 commit comments