Skip to content

Commit 0d6e4ae

Browse files
committed
⬆️ Upgrade native iOS SDK dependency
1 parent 94fcfc2 commit 0d6e4ae

26 files changed

+80
-64
lines changed

ios/Instabug.framework/Headers/Instabug.h

Lines changed: 8 additions & 2 deletions
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.6
8+
Version: 7.6.1
99
*/
1010

1111
#import <Foundation/Foundation.h>
@@ -618,8 +618,14 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
618618
extraScreenShot:(BOOL)extraScreenShot
619619
galleryImage:(BOOL)galleryImage
620620
voiceNote:(BOOL)voiceNote
621-
screenRecording:(BOOL)screenRecording;
621+
screenRecording:(BOOL)screenRecording DEPRECATED_MSG_ATTRIBUTE("Starting from v8.0, use setAttachmentOptions: instead");
622622

623+
/**
624+
@brief Sets whether attachments in bug reporting and in-app messaging are enabled.
625+
626+
@param attachmentTypes A NS_OPTIONS to add enabled attachments type.
627+
*/
628+
+ (void)setEnabledAttachmentTypes:(IBGAttachmentType)attachmentTypes;
623629
/**
624630
@brief Enables/disables showing in-app notifications when the user receives a new message.
625631

ios/Instabug.framework/Info.plist

2 Bytes
Binary file not shown.

ios/Instabug.framework/Instabug

-432 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-
BfsBz56unTcAbZ94XgCeCH4hLiA=
9+
wbRGHXdBl0uQRZhJAsvdO+5ARfU=
1010
</data>
1111
<key>Info.plist</key>
1212
<data>
13-
GBrcvErX2xz9tnmYH6xjSxlG2w8=
13+
lCGWkFUMspzePxMCyoe61a364pw=
1414
</data>
1515
<key>Modules/module.modulemap</key>
1616
<data>
@@ -23,11 +23,11 @@
2323
<dict>
2424
<key>hash</key>
2525
<data>
26-
BfsBz56unTcAbZ94XgCeCH4hLiA=
26+
wbRGHXdBl0uQRZhJAsvdO+5ARfU=
2727
</data>
2828
<key>hash2</key>
2929
<data>
30-
3dXqAVUmyI5WNvmhyqz38J4NQ5+VDt2a97m1Ja3T+Tk=
30+
/beRz83/JfRE3ERsVSNwUaAFbEc3w28rX4aVpoNOC9k=
3131
</data>
3232
</dict>
3333
<key>Modules/module.modulemap</key>

ios/InstabugCore.framework/Headers/IBGTypes.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,16 @@ typedef NS_ENUM(NSInteger, IBGLogLevel) {
291291
IBGLogLevelFatal
292292
};
293293

294+
/**
295+
The attachment types selected in Attachment action sheet.
296+
*/
297+
typedef NS_OPTIONS(NSInteger, IBGAttachmentType) {
298+
IBGAttachmentTypeScreenShot = 1 << 1,
299+
IBGAttachmentTypeExtraScreenShot = 1 << 2,
300+
IBGAttachmentTypeGalleryImage = 1 << 4,
301+
IBGAttachmentTypeScreenRecording = 1 << 6,
302+
};
303+
294304
@interface UIView (Instabug)
295305

296306
/**
-3 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 Bytes
Binary file not shown.
4 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)