I am trying to limit my A/B test to the versions of my iOS app starting from 11.3.10. The reason is that older versions would behave identically for all variants as they contain no knowledge of parameters involved. This, in turn, would introduce noise which would make my experiment less conclusive.
So, I was adding the following regex to my app version property:
1[1-9]\.[3-9]\.[1-9][0-9]
Unfortunately, it didn't work. No users were taking part in my experiment. I then decided to try 1[1-9]\.[3-9]\.[1-9][0-9].*
. But still, no luck. If I omit this setting and run my experiment, I immediately see the data for users taking part in it. 138 in 30 minutes to be precise.
My latest version (11.3.10) has roughly 30% adoption, so clearly I would see some users if the setting was correct.
I will be grateful if you could let me know what I am doing wrong here.