I have an app that allows the user to enter a name and other relevant information to be used in submitting a request to a web service. I'd like to store that and use it to pre-fill the form the next time the app runs.
Entity variables would be great for this, except that in most cases I want the data to persist longer than just one session. It's not really a problem for them to enter it again every time, since the data is simple and not sensitive. But it would be nice to be able to hold on to that data as long as possible.
In a regular web app, I would just set a cookie with an expiration date of 3 months or something. Is there a way to use entity variables in this way (i.e., longer than one session)?