12. Releasing the Android App

at Google Play Store

Make sure that you have done all the things that are required for the android release.

To test the released android app, run the following command on the terminal:

flutter build apk --split-per-abi

You will get 3 apk files from the build/app/output/apk/release folder. You can test the app-armeabi-v7a-release.apk file on your android device.

To generate an appbundle, run the following command on the terminal:

flutter build appbundle

After that, you will get a .aab file in the build/app/output/appbundle/release folder.

Last updated