RequiresDebugBuild

Marks a class or function as only available in debug builds.

Security (ISO 27001 A.14.2): Debug features must not be accessible in production builds. Classes annotated with this annotation should check BuildConfig.DEBUG before execution.

Usage:

@RequiresDebugBuild
class EventInspector {
init {
DebugUtils.requireDebugBuild()
}
}

Since

0.4.0