Created
March 9, 2020 03:28
-
-
Save tianhaoz95/33b14245febfb5ef451157fdeba7022d to your computer and use it in GitHub Desktop.
why manual version sync is bad
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| upload_to_play_store( | |
| track: 'alpha', | |
| # This is bad because it's trivial to match the version number in the pubspec.yml | |
| # and it's easily forgotten. Once mismatched, the user will exprience an outdated | |
| # app and the developer team will struggle to get the versioning back to the right | |
| # track. | |
| version_code: 8, | |
| aab: '../build/app/outputs/bundle/release/app-release.aab', | |
| skip_upload_screenshots: true, | |
| skip_upload_images: true | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment