[SOLVED] How to change build version of app release?

Hello!
Please suggest how to change build number of application for release update on appstore/play market.

Basically on cordova i was changing only config.xml
but in capactior i dont know how

Thank you for answers!

You change it in the native project, in the App’s module build.gradle file.

versionName field is for the visible name of the version (it’s a string)
versionCode is the number you should always increment when uploading to the play store to determine that is newer than the previous one (it’s an integer)

2 Likes

Thank you
Also i found this package for convinient set version

1 Like