Reputation: 5135
i sell the application into android market with the version 1. i upgrade the application with version 2.in that version 2 i found one bug after upgrading.now i resolved that bug
is it possible to upgrade application ith version2
Thanks in advance
Aswan
Upvotes: 0
Views: 414
Reputation: 11
It's friendlier to increase both your versionCode & your versionName. In most of the development shops I've worked at, we used a minimum of 2 digits to signify a release. The first is the major release number 1.0, 2.0, 3.0, etc. The second or minor release (small features added or fixed). A third can be for very small bug fixes or emergency point releases. So in this case you could have a 2.1 release or 2.0.1 since it was a minor bug fix to existing functionality.
Upvotes: 1
Reputation: 55714
I'm not sure what you're asking. If you mean that:
If that's the case then you have to post a new version as version 3. However, remember that there are two things you control when posting new versions. There's the versionName which can be anything you want and then the versionCode which must be a number and each release must have a higher number than the previous one. The versionCode is how the Android Market knows if the version in the Market is more up to date than the version on someone's phone. The version name is just the name people see when looking at the app in the market. So in your case you must change the versionCode to 3, but you could keep the version name as "version 2".
Upvotes: 1