Skip to content

Commit 98945cd

Browse files
committed
⬆️ Upgrade native iOS SDK dependency
1 parent 9a09d73 commit 98945cd

28 files changed

+135
-68
lines changed

ios/Instabug.framework/Headers/Instabug.h

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
66
Copyright: (c) 2013-2018 by Instabug, Inc., all rights reserved.
77
8-
Version: 7.8.4
8+
Version: 7.9.1
99
*/
1010

1111
#import <Foundation/Foundation.h>
1212
#import <UIKit/UIKit.h>
13-
#import <InstabugCore/IBGTypes.h>
13+
#import <InstabugCore/InstabugCore.h>
1414

1515
/**
1616
This is the API for using Instabug's SDK. For more details about the SDK integration,
@@ -161,6 +161,25 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
161161
*/
162162
+ (void)setUserStepsEnabled:(BOOL)isUserStepsEnabled;
163163

164+
/**
165+
@brief Sets whether the SDK is recording the screen or not.
166+
167+
@discussion Enabling auto screen recording would give you an insight on the scenario a user has performed before encountering a bug or a crash. screen recording is attached with each report being sent.
168+
169+
Auto screen recording is disabled by default.
170+
171+
@param enabled A boolean to set auto screen recording to being enabled or disabled.
172+
*/
173+
+ (void)setAutoScreenRecordingEnabled:(BOOL)enabled;
174+
175+
/**
176+
@brief Sets maximum auto screen recording video duration.
177+
178+
@discussion sets maximum auto screen recording video duration with max value 30 seconds and min value greater than 1 sec.
179+
180+
@param duration A float to set maximum auto screen recording video duration.
181+
*/
182+
+ (void)setAutoScreenRecordingDuration:(CGFloat)duration;
164183
/**
165184
@brief Sets whether user steps tracking is visual, non visula or disabled.
166185
@@ -631,7 +650,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
631650
extraScreenShot:(BOOL)extraScreenShot
632651
galleryImage:(BOOL)galleryImage
633652
voiceNote:(BOOL)voiceNote
634-
screenRecording:(BOOL)screenRecording DEPRECATED_MSG_ATTRIBUTE("Starting from v8.0, use setAttachmentOptions: instead");
653+
screenRecording:(BOOL)screenRecording DEPRECATED_MSG_ATTRIBUTE("Starting from v7.6.1, use setEnabledAttachmentTypes: instead");
635654

636655
/**
637656
@brief Sets whether attachments in bug reporting and in-app messaging are enabled.

ios/Instabug.framework/Info.plist

0 Bytes
Binary file not shown.

ios/Instabug.framework/Instabug

82.2 KB
Binary file not shown.

ios/Instabug.framework/_CodeSignature/CodeResources

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<dict>
77
<key>Headers/Instabug.h</key>
88
<data>
9-
kr5SpG3Jhs9F5FuE3vSiQ3MlNtU=
9+
QBpq+Ij2Wm2lDnacn3+fsy3X0pE=
1010
</data>
1111
<key>Info.plist</key>
1212
<data>
13-
i2FlS+GuXa5k+lrsMwBv57rG7nQ=
13+
wS/j0NU/yNgCQFnGCA2MArLdDfA=
1414
</data>
1515
<key>Modules/module.modulemap</key>
1616
<data>
@@ -23,11 +23,11 @@
2323
<dict>
2424
<key>hash</key>
2525
<data>
26-
kr5SpG3Jhs9F5FuE3vSiQ3MlNtU=
26+
QBpq+Ij2Wm2lDnacn3+fsy3X0pE=
2727
</data>
2828
<key>hash2</key>
2929
<data>
30-
frNQv8duFZd2A/4rNMffvE703HhRISWbNSWio6Y4otE=
30+
LBpl5bfRVAvQGontLB4zAKs7MNCxFVAFEQgw1lpFNSI=
3131
</data>
3232
</dict>
3333
<key>Modules/module.modulemap</key>

ios/InstabugCore.framework/Headers/IBGTypes.h

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

1111
#import <UIKit/UIKit.h>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
File: InstabugCore/InstabugCore.h
3+
4+
Contains: Enums and Constants for using Instabug's SDK.
5+
6+
Copyright: (c) 2013-2018 by Instabug, Inc., all rights reserved.
7+
8+
Version: 7.9.1
9+
*/
10+
11+
#import <Foundation/Foundation.h>
12+
#import "IBGTypes.h"
13+
14+
@interface InstabugCore : NSObject
15+
16+
@end

0 commit comments

Comments
 (0)