0

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.

3
  • 1
    There's no way to make the value of a parameter depend on the value of another parameter. I'd probably just store the underlying values of the calculation, and perform the calculation client-side. Commented yesterday
  • @FrankvanPuffelen I suspected as much. I am open to workarounds, so any suggestions that would bring me a little bit closer are welcome. Some conditional magic or whatever it may be. Commented yesterday
  • I'd probably just store the underlying values of the calculation, and perform the calculation client-side. Commented 13 hours ago

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.