Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
f5daa144
Unverified
Commit
f5daa144
authored
Dec 22, 2019
by
Don Gagne
Committed by
GitHub
Dec 22, 2019
Browse files
Merge pull request #8160 from DonLakeFlyer/AndroidPackage
Version code fix
parents
5f54f4cb
e0b92425
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/update_android_version.sh
View file @
f5daa144
...
...
@@ -9,6 +9,12 @@ VERSIONCODE=$(($(($minor*10000)) + $VERSIONCODE))
VERSIONCODE
=
$(($((
$patch
*
1000
))
+
$VERSIONCODE
))
VERSIONCODE
=
$(($((
$dev
))
+
$VERSIONCODE
))
# The android versionCode is for the entire package. It is the same for the 32 and 64 bit APKs.
# At one point it was thought the versionCode was specific to APK. Hence the 32/64 bitness was
# included as a prefix. That was incorrect. But now we are stuck with version codes starting with
# a prefix of 64.
VERSIONCODE
=
64
$VERSIONCODE
MANIFEST_FILE
=
android/AndroidManifest.xml
# manifest package
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment