Page 1 of 1

Showing iOS App Version

Posted: Fri Oct 27, 2023 1:00 am
by ace16vitamine
Hi all,

If I remember right it is possible to put the app and build version from standalone settings into a variable. But I forgot how.. I need this to transfer the running version of the app to my server to see which version is installed from the user.

Any Ideas?
Stefan

Re: Showing iOS App Version

Posted: Fri Oct 27, 2023 9:25 am
by Klaus
Moin Stefan,

Code: Select all

put the cRevStandaloneSettings["ios,bundle build"] of stack "your stack here"
Best

Klaus

Re: Showing iOS App Version

Posted: Fri Oct 27, 2023 10:40 am
by ace16vitamine
Perfect !

Thanks Klaus

Re: Showing iOS App Version

Posted: Fri Oct 27, 2023 10:50 am
by Klaus
All the settings of the "Standalone Application Settings" are stored in this custom property set of a stack.

Re: Showing iOS App Version

Posted: Fri Oct 27, 2023 5:32 pm
by jacque
The standalone settings aren't included in a built standalone. The solution is to create a custom property that stores the version so it can be retrieved. You can automate that by setting the value in a standaloneSaving handler if you want.

Re: Showing iOS App Version

Posted: Fri Oct 27, 2023 6:14 pm
by Klaus
jacque wrote:
Fri Oct 27, 2023 5:32 pm
The standalone settings aren't included in a built standalone.
Oh, thank you, didn't know that!