I found this solution on how to set Android app version right from the package.json:
defaultConfig {
versionCode project.versionCode.toInteger()
versionName project.versionName
[...]
}
Is there a way to make the same with iOS? I don't want to update each time before release the iOS app version in Xcode.
Thank you mates in advance!