Does Ionic Pro have a way of inserting build numbers or version numbers in the builds it generates?
Hi there!
Assuming that you are working with an Ionic Cordova project versioning is handled in the config.xml
file. You can change your version number by editing the version number in the second line, here’s an anonymized snippet from my project:
<widget defaultLocale="en-US" id="com.##.###" version="1.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
When you build your package in Ionic Pro, the binary created will have the version that you specify here.