microscopic-pager-74768
08/21/2024, 8:03 PM"$or"
in the advanced mode as follows:
{
"$or": [
{
"client_type": "iOS",
"version_major": {
"$gte": 2
},
"version_minor": {
"$gte": 3
}
},
{
"client_type": "Android",
"version_major": {
"$gte": 4
},
"version_minor": {
"$gte": 5
}
}
]
}
☝️ However the above just doesnt work.
The experiment is run on eg iOS versions < 2.3.0 or Android < 4.5.0. Had we removed the "$or"
everything seems to work, well at that point we loose the ability to target only users using specific app versions across both mobile platforms.
==
Q: Did anybody got through similar struggle in the past? Could somebody help me here?
I found this older issue on the GH repo, well that exact solution doesn't work for us.rhythmic-agent-34208
08/21/2024, 8:36 PM