Reputation: 1811
How can I generate a signed bundle?
I want to upload a signed app bundle of Flutter project to Google Play.
Environment
What I did
Upvotes: 5
Views: 7193
Reputation: 994
You should open android
folder of your flutter project in android studio. Not root directory.
Upvotes: 6
Reputation: 671
In order to sign Android apps written in Flutter, you can follow Flutter's signing method which can be used with flutter
command line interface. If build.gradle
is configured correctly, you can use flutter build appbundle
(considering you want to generate an appbundle, not an apk) to generate an appbundle. Take a look at this page for detailed information.
Upvotes: 1
Reputation: 1234
You need to click on Build->Generate
Signed APK/Bundle in the android studio. Even the DEBUG
applications get signed with a DEBUG Key
for the purpose for testing by the developers on emulators or real devices by installing it through ADB.
Upvotes: -4