I’m doing a new version of my android app.
I only changed the versionCode (in the androidmanifest.xml) from 1.0 to 1.1. and now it gives me the error – Float types not allowed (at “versioneCode” with value “1.1”).
Also if I rewrite 1.0, it does not work.
Quite baffling.
versionCodeshould be only numbers only and not decimals. You can assign decimals forversionNamewhich is displayed on PlayStore and in App details in the device.For Example, if you have set
versionCodeas 1 in your first version it should be now 2.set it as
versionCode="2"