How to sign flutter's apps

3,234

I have already solved it. The technical issue can be solved by writing the command inside the project´s directory:

$ flutter build apk --release --keystore /Users/user/Desktop/Sign/my-key-release.keystore --keystore-password=p@$$w0rd --keystore-key-alias=name-alias
Share:
3,234
Jorge Morán
Author by

Jorge Morán

Updated on December 01, 2022

Comments

  • Jorge Morán
    Jorge Morán over 1 year

    I'm starting to work with flutter and I would like to know how to sign apps to publish in stores. I work with MacOS and IntelliJ IDEA.

  • CiriousJoker
    CiriousJoker over 4 years
    This doesn't work with the newest version of the flutter command. It always complains that --keystore doesn't exist
  • CiriousJoker
    CiriousJoker over 4 years
    Here's an issue I created for this: github.com/flutter/flutter/issues/39764