Skip to content

Commit

Permalink
v13.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Feb 6, 2024
1 parent 3820557 commit 4bdd413
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 11 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -701,8 +701,8 @@
filePath = "../Sources/ObjCSources/GleapFrameManagerViewController.m"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "519"
endingLineNumber = "519"
startingLineNumber = "515"
endingLineNumber = "515"
landmarkName = "-openURLExternally:fromViewController:"
landmarkType = "7">
</BreakpointContent>
Expand All @@ -717,8 +717,8 @@
filePath = "../Sources/ObjCSources/GleapFrameManagerViewController.m"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "531"
endingLineNumber = "531"
startingLineNumber = "527"
endingLineNumber = "527"
landmarkName = "-openURLExternally:fromViewController:"
landmarkType = "7">
</BreakpointContent>
Expand Down
14 changes: 14 additions & 0 deletions Example/Example/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,20 @@ class AppDelegate: UIResponder, UIApplicationDelegate, GleapDelegate {
Gleap.addAttachment(with: data, andName: "text.txt")
}

let userProperty = GleapUserProperty()
userProperty.name = "Franz"
userProperty.email = "[email protected]"
userProperty.phone = "+1 (902) 123123"
userProperty.value = 199.95
userProperty.plan = "Pro plan";
userProperty.companyId = "29883";
userProperty.companyName = "ACME inc.";
userProperty.customData = ["key1": "Custom data"];

Gleap.identifyContact("user_1234", andData: userProperty)

Gleap.setNetworkLogsBlacklist(["https://api.gleap.io", "..."])

// Some demo logs.
print("App started.")
print("User logged in.")
Expand Down
2 changes: 1 addition & 1 deletion Gleap.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = "Gleap"
s.version = "13.2.1"
s.version = "13.2.2"
s.summary = "In-App Bug Reporting and Testing for Apps. Learn more at https://gleap.io"
s.homepage = "https://gleap.io"
s.license = { :type => 'Commercial', :file => 'LICENSE.md' }
Expand Down
6 changes: 1 addition & 5 deletions Sources/ObjCSources/GleapFrameManagerViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -428,11 +428,7 @@ - (void)createWebView {
self.webView.scrollView.alwaysBounceVertical = NO;
self.webView.scrollView.alwaysBounceHorizontal = NO;
self.webView.allowsBackForwardNavigationGestures = NO;
if (@available(iOS 16.4, *)) {
[self.webView setInspectable: YES];
} else {
// Fallback on earlier versions
}

if (@available(iOS 11.0, *)) {
[self.webView.scrollView setContentInsetAdjustmentBehavior: UIScrollViewContentInsetAdjustmentNever];
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/ObjCSources/GleapMetaDataHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

#define SDK_VERSION @"13.0.0"
#define SDK_VERSION @"13.2.2"

NS_ASSUME_NONNULL_BEGIN

Expand Down

0 comments on commit 4bdd413

Please sign in to comment.