-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathRNInstabug.h
32 lines (21 loc) · 1.12 KB
/
RNInstabug.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef RNInstabug_h
#define RNInstabug_h
#import <Instabug/Instabug.h>
@interface RNInstabug : NSObject
+ (void)initWithToken:(NSString *)token invocationEvents:(IBGInvocationEvent)invocationEvents debugLogsLevel:(IBGSDKDebugLogsLevel)debugLogsLevel;
+ (void)initWithToken:(NSString *)token invocationEvents:(IBGInvocationEvent)invocationEvents debugLogsLevel:(IBGSDKDebugLogsLevel)debugLogsLevel
useNativeNetworkInterception:(BOOL)useNativeNetworkInterception;
+ (void)initWithToken:(NSString *)token
invocationEvents:(IBGInvocationEvent)invocationEvents
useNativeNetworkInterception:(BOOL)useNativeNetworkInterception;
+ (void)initWithToken:(NSString *)token invocationEvents:(IBGInvocationEvent)invocationEvents;
/**
@brief Set codePush version before starting the SDK.
@discussion Sets Code Push version to be used for all reports.
should be called from `-[UIApplicationDelegate application:didFinishLaunchingWithOptions:]`
and before `startWithToken`.
@param codePushVersion the Code Push version to be used for all reports.
*/
+ (void)setCodePushVersion:(NSString *)codePushVersion;
@end
#endif /* RNInstabug_h */