Skip to main content

How to change App Version

How to change App Version

1. Go to pubspec.yaml

  1. EX.Update version:A.B.C+X in pubspec.yaml.
    • For Android: A.B.C sets the versionName (e.g., 1.0.0), and X (the number after the +) sets the versionCode (e.g., 1, 2, 3, etc.).
  2. Do not forget to execute flutter packages get.

eShop

4. Go to android -> app -> build.gradle file and change your app version code and app version name like below image.

eShop

5. For iOS:

  • A.B.C represents the CFBundleShortVersionString such as 1.0.0.
  • X (the number after the +) represents the CFBundleVersion such as 1, 2, 3, etc.
  1. Do not forget to execute flutter packages get.