'Why will this variable value not update?

Building a PowerApp and layering in functionality for an MVP. I'm manually setting a variable, "appVersion", in the App OnStart as...

Set(appVersion, 0.07);

And I display this value on the bottom left of every screen. I've been updating this number as I fold in new features.

Now, for some reason, the displayed value of appVersion remains at 0.06. Even in the OnStart window, if I hover over the variable name in the Set statement, it shows 0.06 even though, right next to it is 0.07.

This happens in the editor as well as the published app. Even closing the editor and re-opening doesn't work. I've saved and published repeatedly, to no avail. It's like it's caching a variable that hasn't been declared yet.

A: How do I fix this? B: What else is this app caching that it shouldn't be?

Any help/guidance would be greatly appreciated.

C



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source