frrahat / Quran-For-My-Android

"Quran For My Android" is a simple app that gives quick access to the verses of The Quran with different translation texts and word by word translation.
Apache License 2.0
26 stars 12 forks source link

Tags and Manifest mismatch #1

Closed ghost closed 9 years ago

ghost commented 9 years ago

A version 1.0.1 has been tagged, but the versionCode and versionName in AndroidManifest.xml are still at "1.0" and "1". At least the versionCode should always be updated, since this is the value that gets tested on updatechecks.

ghost commented 9 years ago

Thanks for the quick response, however

android:versionCode="1.0.2"
android:versionName="1.0" >

should be something like

android:versionCode="1.0.2"
android:versionName="102" >

The versionCode is a simple integer value. It's common practice to mimic the version name, but actually it doesn't matter as long as the new VC is higher than the last version. Have a look at https://developer.android.com/tools/publishing/versioning.html for further reference.

frrahat commented 9 years ago

Thanks a lot for your help. I will update the manifest file.