Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter not building aab file

Tags:

apk

flutter

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

like image 507
Ben Ajax Avatar asked Dec 22 '22 17:12

Ben Ajax


1 Answers

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

The command should be: flutter build appbundle

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

like image 166
Phuc Tran Avatar answered Jan 22 '23 15:01

Phuc Tran