Browse Source

Merge pull request #7928 from DonLakeFlyer/GooglePlay

Google play updates
QGC4.4
Don Gagne 6 years ago committed by GitHub
parent
commit
d5227b879c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. BIN
      android/GooglePlayDailyIcon.png
  2. BIN
      android/GooglePlayFeatureGraphic.png
  3. BIN
      android/GooglePlayScreenShot1.jpg
  4. BIN
      android/GooglePlayScreenShot2.jpg
  5. 6
      tools/update_android_version.sh

BIN
android/GooglePlayDailyIcon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

BIN
android/GooglePlayFeatureGraphic.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 787 KiB

BIN
android/GooglePlayScreenShot1.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

BIN
android/GooglePlayScreenShot2.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

6
tools/update_android_version.sh

@ -9,12 +9,6 @@ VERSIONCODE=$(($(($minor*10000)) + $VERSIONCODE)) @@ -9,12 +9,6 @@ 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

Loading…
Cancel
Save