Improve RemoteConfig conditions documentation
Documentation about conditions for iOS and Android is lacking proper description for semver logic on parameter 'AppVersion'
It seems that the condition properly evaluate operators
>
>=
<
<=
when the app version is a semver string i.e. 1.18.10 > 1.18.2
but the documentation states that above operators are only working with numeric values :
"...
For string values:
exactly matches,
contains,
does not contain,
contains regex
For numeric values:
<, <=, =, !=, >, >=
..."
The logic behind semver is very important and specific.
To use it safetly we really need to be sure that the comparison is implemented as intended and documentation should describe it properly the implementation details.
We really need semver comparison, otherwise simple matching on string is not useful to provide conditions based on AppVersion.
At the same time we don't want to use because it works now with the risk it may change in the future because is not described in the docs.
Please describe if the semver is implemented as intended to clear doubts.
🙏