Cat-Printer
Cat-Printer copied to clipboard
versioncodes messed up
Please take care to always increase (and never decrease) versionCode
, as that's what Android uses internally to decide whether an APK is an update to the already installed app or not. Currently, there's an issue:
- v0.6.0.1 used
versioncode
12160001 - v0.6.0.2 used
versioncode
12160002 - now v6.0.1 uses
1021601
, which is lower (1021601 < 12160002) – so users having one of the two previous versions installed will never receive an update.
Al future versions must have a versionCode > 12160002
to be accepted by existing installations. Can you please take care for that? Thanks in advance!