How to sign flutter applications

I am starting to work with trepidation, and I would like to know how to sign applications for publication in stores. I work with MacOS and IntelliJ IDEA.

+8
intellij-idea dart flutter
source share
2 answers

I have already decided this. The technical problem can be solved by writing a command inside the project directory:

$ flutter build apk --release --keystore /Users/user/Desktop/Sign/my-key-release.keystore --keystore-password=p@$$w0rd --keystore-key-alias=name-alias 
+4
source share

Follow the instructions below to make your application ready for publication.

For iOS → Instructions here .

For Android → Instructions here .

0
source share

All Articles