mhs
mhs

Reputation: 165

I extract a file apk To update the old version java to Flutter

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

Answers (1)

tomerpacific
tomerpacific

Reputation: 6510

If you want to generate an application bundle from your Flutter project, you need to do the following:

  • Open the terminal and cd into the directory of your project
  • Run flutter build appbundle
  • The release bundle for your app will be created at 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

Related Questions