gearsBuilding and Releasing

For Android

To build release version of Android application you need run following commands.

flutter build apk
circle-info

You can test the application in release mode with this command, However you can’t submit this build to Playstore publishment.

To build a Play Store publishable application you need to sign the application and generate aab file.

Visit this Official Flutter Documentation to sign the app

Once you sign the app, you can run the following command to generate aab.

circle-check

For iOS

Before beginning the process of releasing your app, ensure that it meets Apple's App Review Guidelines.

Please refer to this Official Flutter Documentation page for building an IOS application.

Last updated