I've published an app on the playstore and accidentally used version number 9999999 for testing purposes on my gradle build. So now my application is published with that version and I cannot decrement it, otherwise the google play developer console will complain. Also, I cannot remove the app from the play store because it has already been published. So I'd have to either use a different package name and create a new app (which I don't really want) or I'd have to somehow reset the version number.
Is this possible at all? Are there other alternatives for me here?
YYYYmmmddXX
format) for my apps. One day it stopped working because the version code was to big to be parsed as an Int by cordova. I have made a pull request (github.com/apache/cordova-android/pull/298) to change it to Biginteger, but it's been months and I fear it will never land. – Methylnaphthalene