Skip to content

Commit 2664a77

Browse files
committed
api dump
1 parent cb424d1 commit 2664a77

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

sentry-android-core/src/main/java/io/sentry/android/core/ScreenshotEventProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ private boolean isMaskingEnabled() {
201201

202202
final ViewHierarchyNode rootNode =
203203
ViewHierarchyNode.Companion.fromView(rootView, null, 0, options.getScreenshot());
204-
ViewsKt.traverse(rootView, rootNode, options.getScreenshot(), options.getLogger());
204+
ViewsKt.traverse(rootView, rootNode, options.getScreenshot(), options.getLogger(), null);
205205
return rootNode;
206206
} catch (Throwable e) {
207207
options.getLogger().log(SentryLevel.ERROR, "Failed to build view hierarchy", e);

sentry-android-replay/src/main/java/io/sentry/android/replay/util/Views.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import java.lang.NullPointerException
3434
* @param logger Logger for error reporting during Compose traversal
3535
*/
3636
@SuppressLint("UseKtx")
37-
@JvmOverloads
3837
internal fun View.traverse(
3938
parentNode: ViewHierarchyNode,
4039
options: SentryMaskingOptions,

sentry/api/sentry.api

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4039,12 +4039,14 @@ public final class io/sentry/SentryReplayOptions : io/sentry/SentryMaskingOption
40394039
public fun getSessionDuration ()J
40404040
public fun getSessionSampleRate ()Ljava/lang/Double;
40414041
public fun getSessionSegmentDuration ()J
4042+
public fun isCaptureSurfaceViews ()Z
40424043
public fun isDebug ()Z
40434044
public fun isNetworkCaptureBodies ()Z
40444045
public fun isSessionReplayEnabled ()Z
40454046
public fun isSessionReplayForErrorsEnabled ()Z
40464047
public fun isTrackConfiguration ()Z
40474048
public fun setBeforeErrorSampling (Lio/sentry/SentryReplayOptions$BeforeErrorSamplingCallback;)V
4049+
public fun setCaptureSurfaceViews (Z)V
40484050
public fun setDebug (Z)V
40494051
public fun setMaskAllImages (Z)V
40504052
public fun setMaskAllText (Z)V

0 commit comments

Comments
 (0)