Config.xml ios project in Xcode settings

I’ve noticed in my config.xml following :

version=“0.0.3”

When I compile my project and open the xcode project in Xcode I see

version : 0.0.3
build : 0.0.3

So I can assume the entry I made in my xml prefilled the version AND the build. Is there a way to specify the version and build separately?

Also … in Xcode I can check “portrait” mode, but everytime I compile my project (with ionic build), the checkbox gets unchecked. Is there a way to specify this in my config.xml?

You can change the version and build manually in Xcode build settings. Also add this to your config.xml:

<preference name="orientation" value="portrait" />

1 Like

Yeah … but each time I do ionic build ios … the version and build changes back to what I defined in the config.xml … for example

version="0.0.3"

I’ve tried something like

build="0.0.4"

but no luck … the orientation work perfectly … thanx

Yeah I basically had to manually change it on Xcode every time I wanted to deploy a new build.