method for our feature flag AB test in Android, but we are not sure we are doing right.
Copy code
forcedExperiment.isNotEmpty().let {
setForcedVariations(mapOf("experimentKey" to 1))
}
where 1 is variation ID that has to be forced
Well, it doesn't work, it still does randomization 😕
Can anyone tell us if we are doing something wrong?
thanks