Search code examples
flutterapk

Flutter not building aab file


Am trying to build a release bundle for my app. It doesn't work at all as it just exits. What could be wrong?

enter image description here


Solution

  • Follow the instruction here: https://flutter.dev/docs/deployment/android#building-the-app-for-release

    The command should be: flutter build appbundle --release

    (Of course, you need to setup keystore info in your build.gradle first)