public object AndroidComposeUiFlags
This is a collection of flags which are used to guard against regressions in some of the "riskier" refactors or new feature support that is added to this module. These flags are always "on" in the published artifact of this module, however these flags allow end consumers of this module to toggle them "off" in case this new path is causing a regression.
These flags are considered temporary, and there should be no expectation for these flags be around for an extended period of time. If you have a regression that one of these flags fixes, it is strongly encouraged for you to file a bug ASAP.
Usage:
In order to turn a feature off in a debug environment, it is recommended to set this to false in as close to the initial loading of the application as possible. Changing this value after compose library code has already been loaded can result in undefined behavior.
class MyApplication : Application() { override fun onCreate() { AndroidComposeUiFlags.SomeFeatureEnabled = false super.onCreate() } }
In order to turn this off in a release environment, it is recommended to additionally utilize R8 rules which force a single value for the entire build artifact. This can result in the new code paths being completely removed from the artifact, which can often have nontrivial positive performance impact.
-assumevalues class androidx.compose.ui.AndroidComposeUiFlags { public static int isSharedComposeViewContextEnabled return false }
Properties
isViewBasedSemanticsHandlerEnabled
public var isViewBasedSemanticsHandlerEnabled: Boolean = true
This flag enables using the View's handler for semantics processing instead of the Main Looper. This avoids crashes in environments where Compose is used on a non-main thread.
isFrameworkVelocityTrackerEnabled
public var isFrameworkVelocityTrackerEnabled: Boolean = false
This flag enables the Android Framework implementation of VelocityTracker.
isDelayAndroidViewsHandlerCreationEnabled
public var isDelayAndroidViewsHandlerCreationEnabled: Boolean = false
If enabled, the creation of the container for AndroidViews is delayed until an AndroidView is added.
isAlwaysScrollDuringScrollCaptureEnabled
public var isAlwaysScrollDuringScrollCaptureEnabled: Boolean = true
This flag forces scroll capture to center the content being rendered even if it's already visible.
isOutOfFrameSchedulerForTextInputEventsEnabled
public var isOutOfFrameSchedulerForTextInputEventsEnabled: Boolean = true
Enables using out of frame scheduler instead of Choreographer for text input events.
isTraversalGroupSortingEnabled
public var isTraversalGroupSortingEnabled: Boolean = true
Enables sorting of accessibility children based on their traversal index when the parent is a traversal group and is a merging container.
isPropagateHideFromAccessibilityToMergingChildrenEnabled
public var isPropagateHideFromAccessibilityToMergingChildrenEnabled: Boolean = true
Enables propagation of hideFromAccessibility to children of merging parents.
isAccessibilityPerformanceEnabled
public var isAccessibilityPerformanceEnabled: Boolean = true
This flag enables performance improvements in accessibility, such as caching accessibility state and deferring listener registration.
isDelayedWindowInsetsRulersEnabled
public var isDelayedWindowInsetsRulersEnabled: Boolean = false
If enabled, WindowInsetsRulers interactions will use the delayed-initialization path to improve ComposeView startup time. If disabled, the immediate-initialization path is used instead.