@@ -43,9 +43,7 @@ public String getName() {
43
43
}
44
44
45
45
/**
46
- * This method is exporting a method
47
- * named `ibgSleep` to be accessible from JavaScript side. When this method is
48
- * called from JavaScript, it (sleeps) the current thread for 3 seconds.
46
+ * Pauses the current thread for 3 seconds.
49
47
*/
50
48
@ ReactMethod
51
49
public void ibgSleep () {
@@ -60,13 +58,6 @@ public void run() {
60
58
/**
61
59
* Enables or disables APM.
62
60
*
63
- * This function is exporting a method named
64
- * [setEnabled] to be accessible from JavaScript side. When this method is
65
- * called from JavaScript, it will set the `enabled` property of the [APM] class provided by the
66
- * Instabug SDK to the value passed as the `isEnabled` parameter. This property controls whether the
67
- * APM (Application Performance Monitoring) feature of Instabug is enabled or disabled based on the
68
- * boolean value passed to it.
69
- *
70
61
* @param isEnabled boolean indicating enabled or disabled.
71
62
*/
72
63
@ ReactMethod
@@ -86,11 +77,6 @@ public void run() {
86
77
/**
87
78
* Enables or disables app launch tracking.
88
79
*
89
- * This function is exporting a method named
90
- * `setAppLaunchEnabled` to be accessible from JavaScript side. When this
91
- * method is called from JavaScript, it will set the `coldAppLaunchEnabled` property of the `IBGAPM`
92
- * class provided by the Instabug SDK to the value passed as the `isEnabled` parameter.
93
- *
94
80
* @param isEnabled boolean indicating enabled or disabled.
95
81
*/
96
82
@ ReactMethod
@@ -108,10 +94,7 @@ public void run() {
108
94
}
109
95
110
96
/**
111
- * This function is exporting a method named `endAppLaunch` to be
112
- * accessible from JavaScript side. When this method is called from
113
- * JavaScript, it will invoke the `endAppLaunch` method from the [APM] class provided by the
114
- * Instabug SDK. This method is used to signal the end of the app launch process.
97
+ * This method is used to signal the end of the app launch process.
115
98
*/
116
99
@ ReactMethod
117
100
public void endAppLaunch () {
@@ -130,14 +113,6 @@ public void run() {
130
113
/**
131
114
* Enables or disables auto UI tracing
132
115
*
133
- * This function is exporting a method named
134
- * [setAutoUITraceEnabled] to be accessible from JavaScript side. When this
135
- * method is called from JavaScript, it will set the `autoUITraceEnabled` property of the [APM]
136
- * class provided by the Instabug SDK to the value passed as the `isEnabled` parameter. This property
137
- * controls whether automatic tracing of UI interactions is enabled or disabled within the SDK. By
138
- * toggling this property, you can control whether the SDK captures data related to user interface
139
- * performance and behavior automatically.
140
- *
141
116
* @param isEnabled boolean indicating enabled or disabled.
142
117
*/
143
118
@ ReactMethod
@@ -310,11 +285,6 @@ public void run() {
310
285
/**
311
286
* Starts a UI trace
312
287
*
313
- * This function is exporting a method named
314
- * [startUITrace] to be accessible from JavaScript side. When this method is
315
- * called from JavaScript, it will invoke the [startUITrace] method from the [APM] class
316
- * provided by the Instabug SDK to start a new UI trace.
317
- *
318
288
* @param name string name of the UI trace.
319
289
*/
320
290
@ ReactMethod
@@ -332,10 +302,7 @@ public void run() {
332
302
}
333
303
334
304
/**
335
- * This function is exporting a method named [endUITrace] to be
336
- * accessible from JavaScript side. When this method is called from
337
- * JavaScript, it will invoke the `endUITrace` method from the []APM] class provided by the Instabug
338
- * SDK. This method is used to terminate the currently active UI trace.
305
+ * This method is used to terminate the currently active UI trace.
339
306
*/
340
307
@ ReactMethod
341
308
public void endUITrace () {
0 commit comments