You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while downloading APK from Google Play or Website will have values like:
versionCode: 23032902
versionName: 3.6.0
and it will be changed for each version.
static versionCode is problematic cause:
won't enable manual apk update of locally built apks (will need to remove apk and then install it again) as all built APKs will have the same version.
fdroid will detect it as error and for workaround will use other assigned number for it that they manage unless it will be specified in the recipe which wont be automatic (but can be if values are updated in the repo and are accurate for each git tag)
thus it make sense to update this value in repo to the correct one used in upcoming version before releasing new app, so for each git checkout of git tag, the values will be accurate for that version.
same apply for versionName to change it from 99.99.99 to the currently release like 3.6.0 and in every new git tag change it again
The text was updated successfully, but these errors were encountered:
in AndroidManifest.xml file of generated APK that is locally built the versionCode is 21000000 and versionName is 99.99.99
cause of:
edge-react-gui/android/app/build.gradle
Lines 135 to 136 in 67e9597
while downloading APK from Google Play or Website will have values like:
versionCode: 23032902
versionName: 3.6.0
and it will be changed for each version.
static versionCode is problematic cause:
thus it make sense to update this value in repo to the correct one used in upcoming version before releasing new app, so for each git checkout of git tag, the values will be accurate for that version.
same apply for versionName to change it from 99.99.99 to the currently release like 3.6.0 and in every new git tag change it again
The text was updated successfully, but these errors were encountered: