In the mobile-config.js I have specified following
App.info({
.....
version: '1.0.8',
....
});
App.setPreference('android-versionCode', '9');
Accordingly when I build apk it should have versionCode set to 9 and version name to "1.0.8', but in my case versionCode is being set to "10008" while version name is correctly shown as "1.0.8".
Is there something wrong in my config? Is there different method to version Code?