Skip to content

Commit 21f0992

Browse files
Update Instabug.xcframework
1 parent 6980703 commit 21f0992

File tree

90 files changed

+6001
-5279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+6001
-5279
lines changed
Lines changed: 2846 additions & 2537 deletions
Large diffs are not rendered by default.
Lines changed: 2823 additions & 2520 deletions
Large diffs are not rendered by default.

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGAPM.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 10.11.2
8+
Version: 10.11.8
99
*/
1010

1111
#import <Foundation/Foundation.h>
@@ -88,6 +88,12 @@ NS_SWIFT_NAME(APM)
8888
/// Ends the current running Custom UI Trace.
8989
+ (void)endUITrace;
9090

91+
92+
/// Ends the current view's Screen Loading occurence. Calling this API is optional, Screen Loadings will still be captured and ended automatically by the SDK;
93+
/// this API just allows you to change when a Screen Loading actually ends.
94+
/// @param viewController The view controller whose loading you want to mark as ended. This view has to still be visible on screen.
95+
+ (void)endScreenLoadingForViewController:(UIViewController * _Nullable)viewController;
96+
9197
/// Ends the current session’s App Launch. Calling this API is optional, App Launches will still be captured and ended automatically by the SDK;
9298
/// this API just allows you to change when an App Launch actually ends.
9399
+ (void)endAppLaunch;

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGBugReporting.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 10.11.2
8+
Version: 10.11.8
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGChats.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 10.11.2
8+
Version: 10.11.8
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGCrashReporting.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2019 by Instabug, Inc., all rights reserved.
77
8-
Version: 10.11.2
8+
Version: 10.11.8
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGExecutionTrace.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 10.11.2
8+
Version: 10.11.8
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGFeatureRequests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 10.11.2
8+
Version: 10.11.8
99
*/
1010

1111

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGLog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 10.11.2
8+
Version: 10.11.8
99
*/
1010

1111
#import <Foundation/Foundation.h>

ios/Instabug.xcframework/ios-arm64_armv7/Instabug.framework/Headers/IBGNetworkLogger.h

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2013-2020 by Instabug, Inc., all rights reserved.
77
8-
Version: 10.11.2
8+
Version: 10.11.8
99
*/
1010

1111
#import <Foundation/Foundation.h>
@@ -120,4 +120,38 @@ NS_SWIFT_NAME(NetworkLogger)
120120
*/
121121
+ (void)setTaskWillPerformHTTPRedirectionBlock:(nullable NSURLRequest * _Nullable (^)(NSURLSession * _Nonnull session, NSURLSessionTask * _Nonnull task, NSURLResponse * _Nonnull response, NSURLRequest * _Nonnull request))redirectionHandler;
122122

123+
/**
124+
125+
@brief Use to add gRPC network log.
126+
127+
@param url URL should be constructed from `host_ip`, `host_port`, `service_name` example grpc://{host_ip}:{host_port}/{service_name}
128+
@param requestBody request body as string.
129+
@param requestBodySize request body size.
130+
@param response response body as string.
131+
@param responseCode status code in case of success or server side error only.
132+
@param requestHeaders request metadata.
133+
@param responseHeaders response metadata.
134+
@param contentType from response content-type.
135+
@param startTime when the request started.
136+
@param errorDomain domain of the client side error.
137+
@param errorCode code of the error in case of client side error.
138+
@param duration duration of the request.
139+
@param gRPCMethod gRPC method.
140+
@param serverErrorMessage server error message in case of server side error
141+
*/
142+
+ (void)addGrpcNetworkLogWithUrl:(NSString *_Nullable)url
143+
requestBody:(NSString *_Nullable)requestBody
144+
requestBodySize:(int64_t)requestBodySize
145+
responseBody:(NSString *_Nullable)response
146+
responseBodySize:(int64_t)responseBodySize
147+
responseCode:(int32_t)responseCode
148+
requestHeaders:(NSDictionary *_Nullable)requestHeaders
149+
responseHeaders:(NSDictionary *_Nullable)responseHeaders
150+
contentType:(NSString *_Nullable)contentType
151+
startTime:(int64_t)startTime
152+
errorDomain:(NSString *_Nullable)errorDomain
153+
errorCode:(int32_t)errorCode
154+
duration:(int64_t)duration
155+
gRPCMethod:(NSString * _Nullable)gRPCMethod
156+
serverErrorMessage:(NSString *_Nullable)serverErrorMessage;
123157
@end

0 commit comments

Comments
 (0)