It's time to finish our app for Android.
- Open the folder
android/
in Android Studio. - Look for the
build.gradle
file in theApp
folder and define your settings such as your desired packageId. - In the
res/mipmap
folder, right click and selectNew Image Asset
, pick theicon.png
file from the downloaded assets, preview it, add margins and when you are ready save it asic_launch.png
replacing the default available one. - Create the final APK/AAB from
Build Bundle/APK
menu from Android Studio or use the Flutter CLI usingflutter build appbundle
for AAB files (Play Store) orflutter build apk
for APK files (for other installation purposes).
Check official docs for more insight on publishing Flutter apps for Android.
Voilá! Your app is ready! 🥳
Congratulations