ExperimentalTrayAppApi

@Target(allowedTargets = [AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY, AnnotationTarget.TYPEALIAS])
annotation class ExperimentalTrayAppApi

Marks the TrayApp API as experimental. This API is subject to change and may be modified or removed in future releases without prior notice.

Consumers must explicitly opt in:

  • @OptIn(ExperimentalTrayAppApi::class) or use the compiler flag:

  • -Xopt-in=com.kdroid.composetray.tray.api.ExperimentalTrayAppApi