
Integrates ConfigCat with OpenFeature, enabling feature flag management and configuration. Configures providers, evaluates feature flags, and supports advanced options for user targeting based on attributes.
This repository contains an OpenFeature provider that allows ConfigCat to be used with the OpenFeature Kotlin SDK.
dependencies {
implementation("com.configcat:configcat-openfeature-provider:$providerVersion")
}The ConfigCatProvider function takes the SDK key and an optional ConfigCatOptions
argument containing the additional configuration options for
the ConfigCat Kotlin SDK:
import com.configcat.*
import dev.openfeature.kotlin.sdk.*
coroutineScope.launch(Dispatchers.IO) {
// Configure the provider.
val provider = ConfigCatProvider("<YOUR-CONFIGCAT-SDK-KEY>") {
pollingMode = autoPoll { pollingInterval = 60.seconds }
}
// Configure the OpenFeature API with the ConfigCat provider.
OpenFeatureAPI.setProviderAndWait(provider)
// Create a client.
val client = OpenFeatureAPI.getClient()
// Evaluate feature flag.
val isAwesomeFeatureEnabled = client.getBooleanValue("isAwesomeFeatureEnabled", false)
}For more information about all the configuration options, see the Kotlin SDK documentation.
Contributions are welcome. For more info please read the Contribution Guideline.
ConfigCat is a feature flag and configuration management service that lets you separate releases from deployments. You can turn your features ON/OFF using ConfigCat Dashboard even after they are deployed. ConfigCat lets you target specific groups of users based on region, email or any other custom user attribute.
ConfigCat is a hosted feature flag service. Manage feature toggles across frontend, backend, mobile, desktop apps. Alternative to LaunchDarkly. Management app + feature flag SDKs.
This repository contains an OpenFeature provider that allows ConfigCat to be used with the OpenFeature Kotlin SDK.
dependencies {
implementation("com.configcat:configcat-openfeature-provider:$providerVersion")
}The ConfigCatProvider function takes the SDK key and an optional ConfigCatOptions
argument containing the additional configuration options for
the ConfigCat Kotlin SDK:
import com.configcat.*
import dev.openfeature.kotlin.sdk.*
coroutineScope.launch(Dispatchers.IO) {
// Configure the provider.
val provider = ConfigCatProvider("<YOUR-CONFIGCAT-SDK-KEY>") {
pollingMode = autoPoll { pollingInterval = 60.seconds }
}
// Configure the OpenFeature API with the ConfigCat provider.
OpenFeatureAPI.setProviderAndWait(provider)
// Create a client.
val client = OpenFeatureAPI.getClient()
// Evaluate feature flag.
val isAwesomeFeatureEnabled = client.getBooleanValue("isAwesomeFeatureEnabled", false)
}For more information about all the configuration options, see the Kotlin SDK documentation.
Contributions are welcome. For more info please read the Contribution Guideline.
ConfigCat is a feature flag and configuration management service that lets you separate releases from deployments. You can turn your features ON/OFF using ConfigCat Dashboard even after they are deployed. ConfigCat lets you target specific groups of users based on region, email or any other custom user attribute.
ConfigCat is a hosted feature flag service. Manage feature toggles across frontend, backend, mobile, desktop apps. Alternative to LaunchDarkly. Management app + feature flag SDKs.