AiutaExperimentalSettings

class AiutaExperimentalSettings(val shouldOpenLinksInCustomTab: Boolean)

Experimental settings for the Aiuta SDK.

This class contains opt-in settings for features that are not yet stable or that change default platform behavior. Use with caution — these settings may change or be removed in future releases.

val configuration = aiutaConfiguration {
experimentalSettings = AiutaExperimentalSettings(
shouldOpenLinksInCustomTab = true
)
// other configuration...
}

See also

Constructors

Link copied to clipboard
constructor(shouldOpenLinksInCustomTab: Boolean)

Properties

Link copied to clipboard

When true, links opened by the SDK will use Android Custom Tabs instead of the default system browser intent. This prevents Android App Links from intercepting URLs and always opens them inside the app. Defaults to false.