java - Must versionCode in the manifest change with every little update? -
when want make small change line of code in android project published, should change both of android:verioncode , android:versionname?
android:versioncode requires increased users can see there's update , decide if want download or not.
android:versionname showing displayed.
in small update can have
android:versioncode="2" android:versionname="1.1" for complete info please read https://developer.android.com/tools/publishing/versioning.html
Comments
Post a Comment