Skip to content

Commit

Permalink
Merge pull request #123 from UserLeap/release/ios/v4.21.5
Browse files Browse the repository at this point in the history
SDK release 4.21.5
  • Loading branch information
kghsprig committed Apr 12, 2024
2 parents 49e12a9 + 5dd238e commit 7e37e2f
Show file tree
Hide file tree
Showing 32 changed files with 1,253 additions and 993 deletions.
4 changes: 4 additions & 0 deletions CHANGE_LOG.md
Expand Up @@ -4,6 +4,10 @@
<!-- fix: A bug fix -->
<!-- chore: Changes to the build process or auxiliary tools and libraries -->

### 4.21.5
- add: Ability to turn off session replay capture.
- fix: Duplicate event listener callbacks fixed.

### 4.21.4
- add: Privacy Manifest.
- fix: Added logic to dimiss active survey if it is never presented.
Expand Down
3 changes: 2 additions & 1 deletion UserLeapKit.json
Expand Up @@ -58,5 +58,6 @@
"4.21.1": "https://github.com/UserLeap/userleap-ios-sdk-releases/archive/4.21.1.zip",
"4.21.2": "https://github.com/UserLeap/userleap-ios-sdk-releases/archive/4.21.2.zip",
"4.21.3": "https://github.com/UserLeap/userleap-ios-sdk-releases/archive/4.21.3.zip",
"4.21.4": "https://github.com/UserLeap/userleap-ios-sdk-releases/archive/4.21.4.zip"
"4.21.4": "https://github.com/UserLeap/userleap-ios-sdk-releases/archive/4.21.4.zip",
"4.21.5": "https://github.com/UserLeap/userleap-ios-sdk-releases/archive/4.21.5.zip"
}
2 changes: 1 addition & 1 deletion UserLeapKit.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "UserLeapKit"
s.version = "4.21.4"
s.version = "4.21.5"
s.summary = "UserLeap surveys in iOS"
s.description = <<-DESC
Access the power of Sprig inside of your iOS applications. Track visitor progress and deliver surveys natively across
Expand Down
10 changes: 5 additions & 5 deletions UserLeapKit.xcframework/Info.plist
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>UserLeapKit.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>UserLeapKit.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Expand Up @@ -431,6 +431,8 @@ SWIFT_PROTOCOL("_TtP11UserLeapKit8SprigAPI_")
- (void)setPreviewKey:(NSString * _Nonnull)previewKey;
/// Clear the current user state and resets the visitor id
- (void)logout;
/// Turn off session replays capture.
- (void)turnOffSessionReplayCapture;
@end

enum SprigAPIResultStatus : NSInteger;
Expand Down Expand Up @@ -621,6 +623,8 @@ typedef SWIFT_ENUM(NSInteger, SurveyState, open) {
- (void)setPreviewKey:(NSString * _Nonnull)previewKey;
/// Clear the current user state
- (void)logout;
/// Turn off session replays capture.
- (void)turnOffSessionReplayCapture;
@end

#endif
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 7e37e2f

Please sign in to comment.