Skip to content

Commit e73a28d

Browse files
committed
⬆️ Upgrade native iOS SDK dependency
1 parent 20fde87 commit e73a28d

29 files changed

+94
-73
lines changed

ios/Instabug.framework/Headers/Instabug.h

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

1111
#import <Foundation/Foundation.h>
@@ -160,6 +160,18 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
160160
*/
161161
+ (void)setUserStepsEnabled:(BOOL)isUserStepsEnabled;
162162

163+
/**
164+
@brief Sets whether user steps tracking is visual, non visula or disabled.
165+
166+
@discussion Enabling user steps would give you an insight on the scenario a user has performed before encountering a
167+
bug or a crash. User steps are attached with each report being sent.
168+
169+
User Steps tracking is enabled by default if it's available in your current plan.
170+
171+
@param userStepsMode An enum to set user steps tracking to be enabled , non visual or disabled.
172+
*/
173+
+ (void)setReproStepsMode:(IBGUserStepsMode)userStepsMode;
174+
163175
/**
164176
@brief Sets whether to track and report crashes or not.
165177

ios/Instabug.framework/Info.plist

-2 Bytes
Binary file not shown.

ios/Instabug.framework/Instabug

240 Bytes
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-
dv9gxbikDAknu/WGzN8gkc/4u1w=
9+
7FmPOnvoZEOelRoF+rakHgJyT1E=
1010
</data>
1111
<key>Info.plist</key>
1212
<data>
13-
PqPlFUga6XC2bwuhVcghAFTYUrk=
13+
Hdm1Q2muThmGWWJRk3FelfsOPV0=
1414
</data>
1515
<key>Modules/module.modulemap</key>
1616
<data>
@@ -23,11 +23,11 @@
2323
<dict>
2424
<key>hash</key>
2525
<data>
26-
dv9gxbikDAknu/WGzN8gkc/4u1w=
26+
7FmPOnvoZEOelRoF+rakHgJyT1E=
2727
</data>
2828
<key>hash2</key>
2929
<data>
30-
Q8wTarNHp6QYAK/yMLfV3pYSGDqe2DwJ1aNPIzdKKLk=
30+
5xZDYfSvxBVD8Xgv2mFfPXWRhCe78P/MG6sCti+sFec=
3131
</data>
3232
</dict>
3333
<key>Modules/module.modulemap</key>

ios/InstabugCore.framework/Headers/IBGTypes.h

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,16 @@ typedef NS_ENUM(NSInteger, IBGLogLevel) {
294294
};
295295

296296
/**
297-
The attachment types selected in Attachment action sheet.
297+
The user steps option.
298+
*/
299+
typedef NS_ENUM(NSInteger, IBGUserStepsMode) {
300+
IBGUserStepsModeEnable,
301+
IBGUserStepsModeEnabledWithNoScreenshots,
302+
IBGUserStepsModeDisable
303+
};
304+
305+
/**
306+
The attachment types selected in Attachment action sheet.
298307
*/
299308
typedef NS_OPTIONS(NSInteger, IBGAttachmentType) {
300309
IBGAttachmentTypeScreenShot = 1 << 1,
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)