Android app update using eclipse

I am making a new version of my Android application.

I just changed versionCode (in androidmanifest.xml) from 1.0 to 1.1. and now it gives me an error - Float types are not allowed (in "versioneCode" with a value of "1.1").

Also, if I rewrite 1.0, this will not work.

It is completely incomprehensible.

+5
source share
2 answers

versionCodeshould only be numbers, not decimals. You can assign decimals to versionNamewhich are displayed in the PlayStore and in the application details on the device.

For example, if you installed versionCodeas 1 in your first version, it should now be 2.

set it as versionCode="2"

+8
source

, .. 1,2.... .., .

+4

All Articles