You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Experiment: A more reliable way to report unhandled C++ exceptions in iOS.
287
287
*
288
-
* This approach hooks into all instances of the `__cxa_throw` function, which provides a more comprehensive and consistent exception handling across an app’s runtime, regardless of the number of C++ modules or how they’re linked. It helps in obtaining accurate stack traces.
288
+
* This approach hooks into all instances of the `__cxa_throw` function, which provides a more comprehensive and consistent exception handling across an app's runtime, regardless of the number of C++ modules or how they're linked. It helps in obtaining accurate stack traces.
289
289
*
290
290
* - Note: The mechanism of hooking into `__cxa_throw` could cause issues with symbolication on iOS due to caching of symbol references.
291
291
*
292
292
* @default false
293
293
* @platform ios
294
294
*/
295
295
enableUnhandledCPPExceptionsV2?: boolean;
296
+
297
+
/**
298
+
* Configuration options for Android UI profiling.
299
+
* UI profiling supports two modes: `manual` and `trace`.
300
+
* - In `trace` mode, the profiler runs based on active sampled spans.
301
+
* - In `manual` mode, profiling is controlled via start/stop API calls.
0 commit comments