notifications - Android App Versioning -
i have android app published in google play following version:
android:versioncode="1" android:versionname="1.0"
i think that's default version when creating android app in eclipse ide. made minor changes in app. want publish updated app. recommended versioncode
, versionname
updated app?
what want users installed app notified google play new version available. im new android development. in device, received notification installed app there new version available. want functionality.
i'm thinking of having:
android:versioncode="2" android:versionname="1.0.1"
is ok?
thanks
yes thats perfect.
typically, release first version of application versioncode set 1, monotonically increase value each release, regardless whether release constitutes major or minor release. means android:versioncode value not have strong resemblance application release version visible user (see android:versionname, below). applications , publishing services should not display version value users.
as android:versioncode, system not use value internal purpose, other enable applications display users. publishing services may extract android:versionname value display users.
ref : versioning applications , versioncode vs versionname in android manifest
Comments
Post a Comment