Looks like today's release got its versionCode messed up:
package: name='com.puutaro.commandclick' versionCode='14' versionName='1.1.14'
14 < 50, so no update – and downgrades are not allowed. I assume some typo happened, with 14 also being the "patch" part of versionname? Could you please fix?
Looking at the previous versions:
package: name='com.puutaro.commandclick' versionCode='53' versionName='0.0.53'
package: name='com.puutaro.commandclick' versionCode='50' versionName='0.0.50'
… seems to confirm something's wrong with the setup there.
defaultConfig {
applicationId = "com.puutaro.commandclick"
minSdk = 27
targetSdk = 33
versionCode = 14
versionName = "${versionMajor}.${versionMinor}.${versionCode}"
Oof. versionCode must ALWAYS be INCREASED – and can NEVER be DECREASED. Which is why my repo still shows v0.0.53 from September as latest version (all releases after that are considered "older" as they have a lower versionCode). Those having installed that (or any previous one) won't be able to update before you reach some x.x.54 with your current setup.
Looks like today's release got its
versionCodemessed up:14 < 50, so no update – and downgrades are not allowed. I assume some typo happened, with 14 also being the "patch" part of
versionname? Could you please fix?Looking at the previous versions:
… seems to confirm something's wrong with the setup there.
Oof.
versionCodemust ALWAYS be INCREASED – and can NEVER be DECREASED. Which is why my repo still showsv0.0.53from September as latest version (all releases after that are considered "older" as they have a lowerversionCode). Those having installed that (or any previous one) won't be able to update before you reach somex.x.54with your current setup.