Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tianhaoz95/33b14245febfb5ef451157fdeba7022d to your computer and use it in GitHub Desktop.
Save tianhaoz95/33b14245febfb5ef451157fdeba7022d to your computer and use it in GitHub Desktop.
why manual version sync is bad
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