Hexacom

View Categories

App build & release

Build for Android #

For debug build you can run the command:

Flutter build apkrelease

You will get a larger merged apk with this. But you can split them with this command:

flutter build apk --release

Build file location: <project>/build/app/outputs/flutter-apk/ For deploying it please follow this documentation: https://docs.flutter.dev/deployment/android

TIP

Recommended tutorial is below 👇

Build for iOS #

There are no general way to generate app for iOS. Apple doesn’t allow to install app like this debug way. If you want to install it on your iOS device then you have to deploy it on TestFlight or AppStore. For deploying it please follow this documentation: https://docs.flutter.dev/deployment/ios

Build for Web #

For debug build you can run the command:

Flutter build webrelease