File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,23 @@ ios/.DS_Store
8
8
build /
9
9
/android /src /main /java /com /instabug /reactlibrary /wrappedAPIs
10
10
11
+ # Xcode
12
+
13
+ # # Build generated
14
+ build /
15
+ DerivedData /
16
+
17
+ # # Various settings
18
+ * .pbxuser
19
+ ! default.pbxuser
20
+ * .mode1v3
21
+ ! default.mode1v3
22
+ * .mode2v3
23
+ ! default.mode2v3
24
+ * .perspectivev3
25
+ ! default.perspectivev3
26
+ xcuserdata /
27
+
11
28
12
29
* node_modules /
13
30
* Pods /
Original file line number Diff line number Diff line change @@ -527,9 +527,9 @@ module.exports = {
527
527
* @param {array } titles titles to be shown in the list.
528
528
* @param {array } name names of icons to be shown along with titles. Use the same names you would use
529
529
*/
530
- setReportCategories : function ( titles , names ) {
530
+ setReportCategories : function ( titles ) {
531
531
if ( Platform . OS == 'ios' ) {
532
- Instabug . setReportCategories ( titles , names ) ;
532
+ Instabug . setReportCategories ( titles , null ) ;
533
533
}
534
534
} ,
535
535
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ - (dispatch_queue_t)methodQueue {
26
26
27
27
RCT_EXPORT_METHOD (startWithToken:(NSString *)token invocationEvent:(IBGInvocationEvent)invocationEvent) {
28
28
[Instabug startWithToken: token invocationEvent: invocationEvent];
29
+ [Instabug setCrashReportingEnabled: NO ];
30
+ [Instabug setNetworkLoggingEnabled: NO ];
29
31
}
30
32
31
33
RCT_EXPORT_METHOD (invoke) {
You can’t perform that action at this time.
0 commit comments