Skip to main content

Build and Release Applications

In this section you will be redirected to the official flutter guide to build and release applications for both android and iOS.

The application should be built using the flutter build command. However due to the application's functionality, you will need to use an additional flag --no-tree-shake-icons with this command to indicate flutter how to build your app.

Please use the following commands to build the applications for your platform

Android#

For app bundle

flutter build appbundle --no-tree-shake-icons

For apk

flutter build apk --no-tree-shake-icons

Most of the signing steps have been completed for you in the application. Just follow the build process.

Follow the link to build the application for android: Build the app for release

iOS#

flutter build ipa --no-tree-shake-icons

For iOS you will have to follow all the steps mentioned in the official flutter guide to build and release an application for iOS.

Follow the link to build the application for iOS: Build and release an iOS app