Ok I am starting to get into the Flutter programming. I am in the process of implementing Flutter in Android Studio.
My question is when publishing a Kotlin app you have to publish with a .aab file for uploading to Google Play.
My question is that when I get to the publishing aspect of Flutter. Is the publishing straight forward, or do I need to convert anything to the .aab file to upload to the Play Store?
Will Android Studio convert everything needed for it to be .aab file?
CodePudding user response:
You can open the Android module of your Flutter app in Android Studio and then generate a signed bundle like for a native Android app.
- Tools -> Flutter -> Open for Editing in Android Studio
- Build -> Generate Signed Bundle / APK ...
The docs also describe how to do this manually via command line.
CodePudding user response:
I would highly recommend reading the deployment document https://docs.flutter.dev/deployment/android
also before publishing you need a generate a signing key, and use that key to sign the app.
also don't forget to change version In pubspec.yaml file
and you can read it more on the link or just youtube "Flutter deployment "