Unverified Commit 19d59fde authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #8143 from DonLakeFlyer/StoreUpload

Switch to v3 google play upload
parents 89851280 14ff0643
......@@ -211,7 +211,7 @@ after_success:
pip install --user --upgrade oauth2client &&
pip install --user google-api-python-client pyopenssl ndg-httpsclient pyasn1 &&
openssl aes-256-cbc -K $encrypted_25db6eb7c3fd_key -iv $encrypted_25db6eb7c3fd_iv -in android/Google_Play_Android_Developer-4432a3c4f5d1.json.enc -out android/Google_Play_Android_Developer-4432a3c4f5d1.json -d &&
./deploy/google_play_upload.py ${GOOGLE_PLAY_PKG} ${SHADOW_BUILD_DIR}/release/package/QGroundControl${BITNESS}.apk;
./tools/google_play_upload.py production ${GOOGLE_PLAY_PKG} ${SHADOW_BUILD_DIR}/release/package/QGroundControl${BITNESS}.apk;
fi
before_deploy:
......
......@@ -47,7 +47,7 @@ def main():
http = httplib2.Http()
http = credentials.authorize(http)
service = build('androidpublisher', 'v2', http=http)
service = build('androidpublisher', 'v3', http=http)
# Process flags and read their values.
flags = argparser.parse_args()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment