Skip to content

Commit 6cfbe9d

Browse files
committed
⬆️ Upgrade native iOS dependency and update the linking and unlinking scripts to account for the change in the native iOS SDK
1 parent 413972b commit 6cfbe9d

File tree

139 files changed

+322
-1687
lines changed

Some content is hidden

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

139 files changed

+322
-1687
lines changed

ios/Instabug.framework/Headers/Instabug.h

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

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

1515
/**
1616
This is the API for using Instabug's SDK. For more details about the SDK integration,
@@ -118,6 +118,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
118118
*/
119119
+ (void)addFileAttachmentWithURL:(NSURL *)fileURL;
120120

121+
121122
/**
122123
@brief Add a set of data as a file attachment to be sent with each report.
123124
@@ -129,7 +130,6 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
129130
*/
130131
+(void)addFileAttachmentWithData:(NSData *)data;
131132

132-
133133
/**
134134
@brief Clear list of files to be attached with each report.
135135
@@ -451,6 +451,15 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
451451
*/
452452
+ (void)setFloatingButtonEdge:(CGRectEdge)floatingButtonEdge withTopOffset:(double)floatingButtonOffsetFromTop;
453453

454+
/**
455+
@brief Sets the default position at which the Instabug screen recording button will be shown. Different orientations are already handled.
456+
457+
@discussion Default for `position` is `bottomRight`.
458+
459+
@param position `topLeft` to show on the top left of screen , or `bottomRight` to show on the bottom right of scrren.
460+
*/
461+
+ (void)setVideoRecordingFloatingButtonPosition:(IBGPosition)position;
462+
454463
/**
455464
@brief Sets the SDK's locale.
456465
@@ -630,7 +639,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
630639
631640
@discussion When only a single option is enabled, it become the default invocation mode.
632641
If all options are disabled, bug reporting becomes the default invocation mode.
633-
642+
634643
By default, all three options are enabled.
635644
636645
@param bugReportEnabled A boolean to indicate whether bug reports are enabled or disabled.
@@ -667,7 +676,7 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r
667676
@brief Remove all extra fields.
668677
669678
@discussion Use this method to remove all added extra fields.
670-
*/
679+
*/
671680
+ (void)removeExtraReportFields;
672681

673682
/**
@@ -865,7 +874,7 @@ OBJC_EXTERN void IBGLogError(NSString *format, ...) NS_FORMAT_FUNCTION(1, 2);
865874
/**
866875
@brief Used to reroute all your NSLogs to Instabug to be able to automatically include them with reports.
867876
868-
@discussion For details on how to reroute your NSLogs to Instabug, see https://docs.instabug.com/docs/ios-logging
877+
@discussion For details on how to reroute your NSLogs to Instabug, see http://docs.instabug.com/docs/logging
869878
870879
@param format Format string.
871880
@param args Arguments list.
@@ -1095,7 +1104,7 @@ OBJC_EXTERN void IBGNSLogWithLevel(NSString *format, va_list args, IBGLogLevel l
10951104
10961105
To manually display any available surveys, call `+ [Instabug showSurveyIfAvailable]`.
10971106
1098-
Defaults to NO.
1107+
Defaults to YES.
10991108
11001109
@param autoShowingSurveysEnabled A boolean to indicate whether the surveys auto showing are enabled or not.
11011110
*/
@@ -1148,10 +1157,14 @@ OBJC_EXTERN void IBGNSLogWithLevel(NSString *format, va_list args, IBGLogLevel l
11481157

11491158
/**
11501159
@brief Sets the verbosity level of logs used to debug the Instabug SDK itself.
1160+
1161+
@discussion This API sets the verbosity level of logs used to debug The SDK. The defualt value in debug mode is IBGSDKDebugLogsLevelVerbose and in production is IBGSDKDebugLogsLevelError.
11511162
11521163
@param level Logs verbosity level.
11531164
*/
11541165
+ (void)setSDKDebugLogsLevel:(IBGSDKDebugLogsLevel)level;
11551166

11561167
@end
1168+
1169+
11571170
NS_ASSUME_NONNULL_END

ios/Instabug.framework/Info.plist

41 Bytes
Binary file not shown.

ios/Instabug.framework/Instabug

-13.4 MB
Binary file not shown.
-3.8 KB
Binary file not shown.
-4.18 KB
Binary file not shown.
-3.51 KB
Binary file not shown.
-8.11 KB
Binary file not shown.
-3.77 KB
Binary file not shown.
-3.74 KB
Binary file not shown.
-3.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)