We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d212f79 commit d559e11Copy full SHA for d559e11
1 file changed
packages/core/src/js/wrapper.ts
@@ -287,9 +287,19 @@ export const NATIVE: SentryNativeWrapper = {
287
integrations,
288
ignoreErrors,
289
logsOrigin,
290
+ androidProfilingOptions,
291
...filteredOptions
292
} = options;
293
/* eslint-enable @typescript-eslint/unbound-method,@typescript-eslint/no-unused-vars */
294
+
295
+ // Move androidProfilingOptions into _experiments
296
+ if (androidProfilingOptions) {
297
+ filteredOptions._experiments = {
298
+ ...filteredOptions._experiments,
299
300
+ };
301
+ }
302
303
const nativeIsReady = await RNSentry.initNativeSdk(filteredOptions);
304
305
this.nativeIsReady = nativeIsReady;
0 commit comments