Skip to content

Commit 8988c05

Browse files
committed
⬆️ Upgrade native iOS SDK to v8.0.15
1 parent e5b7070 commit 8988c05

27 files changed

+127
-76
lines changed

ios/Instabug.framework/Headers/IBGTypes.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -482,13 +482,3 @@ typedef NS_ENUM(NSInteger, IBGWelcomeMessageMode) {
482482

483483
/* CHECK NULLABILITY! */
484484
typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *response);
485-
486-
@interface UIView (Instabug)
487-
488-
/**
489-
@brief Set this to true on any UIView to mark it as private.
490-
Doing this will exclude it from all screenshots, view hierarchy captures and screen recordings.
491-
*/
492-
@property (nonatomic, assign) BOOL instabug_privateView;
493-
494-
@end

ios/Instabug.framework/Headers/Instabug.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#import "IBGCrashReporting.h"
1919
#import "IBGSurveys.h"
2020
#import "IBGFeatureRequests.h"
21+
#import "UIView+Instabug.h"
2122

2223
/**
2324
This is the API for using Instabug's SDK. For more details about the SDK integration,
@@ -112,7 +113,7 @@ NS_ASSUME_NONNULL_BEGIN
112113
@property (class, atomic, assign) BOOL trackUserSteps;
113114

114115
/**
115-
@brief Sets whether user steps tracking is visual, non visula or disabled.
116+
@brief Sets whether user steps tracking is visual, non visual or disabled.
116117
117118
@discussion Enabling user steps would give you an insight on the scenario a user has performed before encountering a
118119
bug or a crash. User steps are attached with each report being sent.
@@ -321,6 +322,10 @@ NS_ASSUME_NONNULL_BEGIN
321322
*/
322323
+ (nullable NSDictionary *)userAttributes;
323324

325+
/// -------------------
326+
/// @name SDK Reporting
327+
/// -------------------
328+
324329
/**
325330
@brief Logs a user event that happens through the lifecycle of the application.
326331
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// UIView+Instabug.h
3+
// InstabugUtilities
4+
//
5+
// Created by Aly Yakan on 7/17/18.
6+
// Copyright © 2018 Moataz. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
@interface UIView (Instabug)
12+
13+
/**
14+
@brief Set this to true on any UIView to mark it as private.
15+
Doing this will exclude it from all screenshots, view hierarchy captures and screen recordings.
16+
*/
17+
@property (nonatomic, assign) BOOL instabug_privateView;
18+
19+
@end

ios/Instabug.framework/Info.plist

0 Bytes
Binary file not shown.

ios/Instabug.framework/Instabug

356 KB
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)