For Android we generate the version code from the project version. Using the sum (((((MAJOR * 100) + MINOR) * 100) + MAINTENANCE) * 100) + BUILD
where the format of the project version is MAJOR.MINOR.MAINTENANCE.BUILD
. If you don't use all 4 values, then the omitted values are treated as 0.