Skip to content

Commit bf10ebd

Browse files
committed
SentryFeedbackOptions.set/getDialogHandler is now internal
1 parent 7f6bcab commit bf10ebd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

sentry-compose/api/android/sentry-compose.api

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public final class io/sentry/compose/SentryNavigationIntegrationKt {
2727
}
2828

2929
public final class io/sentry/compose/SentryUserFeedbackButtonKt {
30-
public static final fun SentryUserFeedbackButton (Landroidx/compose/ui/Modifier;Lio/sentry/SentryFeedbackOptions$OptionsConfigurator;Ljava/lang/String;Landroidx/compose/runtime/Composer;II)V
30+
public static final fun SentryUserFeedbackButton (Landroidx/compose/ui/Modifier;Ljava/lang/String;Lio/sentry/SentryFeedbackOptions$OptionsConfigurator;Landroidx/compose/runtime/Composer;II)V
3131
}
3232

3333
public final class io/sentry/compose/gestures/ComposeGestureTargetLocator : io/sentry/internal/gestures/GestureTargetLocator {

sentry/src/main/java/io/sentry/SentryFeedbackOptions.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,7 @@ public void setOnSubmitError(final @Nullable SentryFeedbackCallback onSubmitErro
517517
*
518518
* @param iDialogHandler the dialog handler to be used to show the feedback form
519519
*/
520+
@ApiStatus.Internal
520521
public void setDialogHandler(final @NotNull IDialogHandler iDialogHandler) {
521522
this.iDialogHandler = iDialogHandler;
522523
}
@@ -526,6 +527,7 @@ public void setDialogHandler(final @NotNull IDialogHandler iDialogHandler) {
526527
*
527528
* @return the dialog handler to be used to show the feedback form
528529
*/
530+
@ApiStatus.Internal
529531
public @NotNull IDialogHandler getDialogHandler() {
530532
return iDialogHandler;
531533
}

0 commit comments

Comments
 (0)