Skip to content

Commit ff299c0

Browse files
antonisclaude
andcommitted
fix(android): Wrap executorService in lambda for AndroidProfiler in 8.33.0
AndroidProfiler constructor changed in sentry-android 8.33.0 to accept `LazyEvaluator.Evaluator<ISentryExecutorService>` instead of a plain `ISentryExecutorService` for the timeout executor parameter. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 07dfb6e commit ff299c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/android/src/main/java/io/sentry/react/RNSentryModuleImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ private void initializeAndroidProfiler() {
667667
tracesFilesDirPath,
668668
(int) SECONDS.toMicros(1) / profilingTracesHz,
669669
new SentryFrameMetricsCollector(reactApplicationContext, logger, buildInfo),
670-
executorService,
670+
() -> executorService,
671671
logger);
672672
}
673673

0 commit comments

Comments
 (0)