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