@@ -275,7 +275,7 @@ public final class io/sentry/CombinedScopeView : io/sentry/IScope {
275275 public fun removeContexts (Ljava/lang/String;)V
276276 public fun removeExtra (Ljava/lang/String;)V
277277 public fun removeTag (Ljava/lang/String;)V
278- public fun replaceOptions (Lio/sentry/SentryOptions;)Z
278+ public fun replaceOptions (Lio/sentry/SentryOptions;)V
279279 public fun setActiveSpan (Lio/sentry/ISpan;)V
280280 public fun setContexts (Ljava/lang/String;Ljava/lang/Boolean;)V
281281 public fun setContexts (Ljava/lang/String;Ljava/lang/Character;)V
@@ -459,6 +459,7 @@ public final class io/sentry/ExternalOptions {
459459 public fun isEnableBackpressureHandling ()Ljava/lang/Boolean;
460460 public fun isEnablePrettySerializationOutput ()Ljava/lang/Boolean;
461461 public fun isEnabled ()Ljava/lang/Boolean;
462+ public fun isForceInit ()Ljava/lang/Boolean;
462463 public fun isSendDefaultPii ()Ljava/lang/Boolean;
463464 public fun isSendModules ()Ljava/lang/Boolean;
464465 public fun setCron (Lio/sentry/SentryOptions$Cron;)V
@@ -472,6 +473,7 @@ public final class io/sentry/ExternalOptions {
472473 public fun setEnableUncaughtExceptionHandler (Ljava/lang/Boolean;)V
473474 public fun setEnabled (Ljava/lang/Boolean;)V
474475 public fun setEnvironment (Ljava/lang/String;)V
476+ public fun setForceInit (Ljava/lang/Boolean;)V
475477 public fun setIdleTimeout (Ljava/lang/Long;)V
476478 public fun setIgnoredCheckIns (Ljava/util/List;)V
477479 public fun setMaxRequestBodySize (Lio/sentry/SentryOptions$RequestSize;)V
@@ -769,7 +771,7 @@ public abstract interface class io/sentry/IScope {
769771 public abstract fun removeContexts (Ljava/lang/String;)V
770772 public abstract fun removeExtra (Ljava/lang/String;)V
771773 public abstract fun removeTag (Ljava/lang/String;)V
772- public abstract fun replaceOptions (Lio/sentry/SentryOptions;)Z
774+ public abstract fun replaceOptions (Lio/sentry/SentryOptions;)V
773775 public abstract fun setActiveSpan (Lio/sentry/ISpan;)V
774776 public abstract fun setContexts (Ljava/lang/String;Ljava/lang/Boolean;)V
775777 public abstract fun setContexts (Ljava/lang/String;Ljava/lang/Character;)V
@@ -1028,6 +1030,16 @@ public abstract interface class io/sentry/ITransportFactory {
10281030 public abstract fun create (Lio/sentry/SentryOptions;Lio/sentry/RequestDetails;)Lio/sentry/transport/ITransport;
10291031}
10301032
1033+ public final class io/sentry/InitPriority : java/lang/Enum {
1034+ public static final field HIGH Lio/sentry/InitPriority;
1035+ public static final field HIGHEST Lio/sentry/InitPriority;
1036+ public static final field LOW Lio/sentry/InitPriority;
1037+ public static final field LOWEST Lio/sentry/InitPriority;
1038+ public static final field MEDIUM Lio/sentry/InitPriority;
1039+ public static fun valueOf (Ljava/lang/String;)Lio/sentry/InitPriority;
1040+ public static fun values ()[Lio/sentry/InitPriority;
1041+ }
1042+
10311043public final class io/sentry/Instrumenter : java/lang/Enum {
10321044 public static final field OTEL Lio/sentry/Instrumenter;
10331045 public static final field SENTRY Lio/sentry/Instrumenter;
@@ -1449,7 +1461,7 @@ public final class io/sentry/NoOpScope : io/sentry/IScope {
14491461 public fun removeContexts (Ljava/lang/String;)V
14501462 public fun removeExtra (Ljava/lang/String;)V
14511463 public fun removeTag (Ljava/lang/String;)V
1452- public fun replaceOptions (Lio/sentry/SentryOptions;)Z
1464+ public fun replaceOptions (Lio/sentry/SentryOptions;)V
14531465 public fun setActiveSpan (Lio/sentry/ISpan;)V
14541466 public fun setContexts (Ljava/lang/String;Ljava/lang/Boolean;)V
14551467 public fun setContexts (Ljava/lang/String;Ljava/lang/Character;)V
@@ -1923,7 +1935,7 @@ public final class io/sentry/Scope : io/sentry/IScope {
19231935 public fun removeContexts (Ljava/lang/String;)V
19241936 public fun removeExtra (Ljava/lang/String;)V
19251937 public fun removeTag (Ljava/lang/String;)V
1926- public fun replaceOptions (Lio/sentry/SentryOptions;)Z
1938+ public fun replaceOptions (Lio/sentry/SentryOptions;)V
19271939 public fun setActiveSpan (Lio/sentry/ISpan;)V
19281940 public fun setContexts (Ljava/lang/String;Ljava/lang/Boolean;)V
19291941 public fun setContexts (Ljava/lang/String;Ljava/lang/Character;)V
@@ -2706,6 +2718,7 @@ public class io/sentry/SentryOptions {
27062718 public fun getIgnoredSpanOrigins ()Ljava/util/List;
27072719 public fun getInAppExcludes ()Ljava/util/List;
27082720 public fun getInAppIncludes ()Ljava/util/List;
2721+ public fun getInitPriority ()Lio/sentry/InitPriority;
27092722 public fun getInstrumenter ()Lio/sentry/Instrumenter;
27102723 public fun getIntegrations ()Ljava/util/List;
27112724 public fun getInternalTracesSampler ()Lio/sentry/TracesSampler;
@@ -2775,6 +2788,7 @@ public class io/sentry/SentryOptions {
27752788 public fun isEnableUserInteractionBreadcrumbs ()Z
27762789 public fun isEnableUserInteractionTracing ()Z
27772790 public fun isEnabled ()Z
2791+ public fun isForceInit ()Z
27782792 public fun isPrintUncaughtStackTrace ()Z
27792793 public fun isProfilingEnabled ()Z
27802794 public fun isSendClientReports ()Z
@@ -2828,10 +2842,12 @@ public class io/sentry/SentryOptions {
28282842 public fun setEnvironment (Ljava/lang/String;)V
28292843 public fun setExecutorService (Lio/sentry/ISentryExecutorService;)V
28302844 public fun setFlushTimeoutMillis (J)V
2845+ public fun setForceInit (Z)V
28312846 public fun setGestureTargetLocators (Ljava/util/List;)V
28322847 public fun setIdleTimeout (Ljava/lang/Long;)V
28332848 public fun setIgnoredCheckIns (Ljava/util/List;)V
28342849 public fun setIgnoredSpanOrigins (Ljava/util/List;)V
2850+ public fun setInitPriority (Lio/sentry/InitPriority;)V
28352851 public fun setInstrumenter (Lio/sentry/Instrumenter;)V
28362852 public fun setLogger (Lio/sentry/ILogger;)V
28372853 public fun setMainThreadChecker (Lio/sentry/util/thread/IMainThreadChecker;)V
@@ -5548,6 +5564,11 @@ public final class io/sentry/util/HttpUtils {
55485564 public static fun isSecurityCookie (Ljava/lang/String;Ljava/util/List;)Z
55495565}
55505566
5567+ public final class io/sentry/util/InitUtil {
5568+ public fun <init> ()V
5569+ public static fun shouldInit (Lio/sentry/SentryOptions;Lio/sentry/SentryOptions;Z)Z
5570+ }
5571+
55515572public final class io/sentry/util/IntegrationUtils {
55525573 public fun <init> ()V
55535574 public static fun addIntegrationToSdkVersion (Ljava/lang/Class;)V
0 commit comments