I have an Android app which used Firebase Remote Config. Old versions of my app references a parameter, let's call it parameterA, which has a string type. I would like to create another derived parameter, parameterB, which uses the value of parameterA to set its own value.
Is this possible? If not, what is my best option?
I want to make the least amount of client-side changes possible in order to ensure backwards compatibility with older versions of my app.