Reputation: 165
I have an old app (Android Studio java) on the google play store now I finished designing it Flutter and use package name now How do I extract a file apk To update the old version?
Upvotes: 0
Views: 110
Reputation: 6510
If you want to generate an application bundle from your Flutter project, you need to do the following:
flutter build appbundle
your_project_name/build/app/outputs/bundle/release/app.aab
.If you prefer to build an APK, there are others steps you need to follow.
You can see them here.
Upvotes: 2