Flutter - How to sign your android app
I recently published my first Flutter app, and one of the hard parts as a newbie was signing and creating the app bundle from Android studio. There is a good link here walking you through it but it didn't help with the details if you were having any issues. Here is my walkthrough on how to do create your app bundle and what to do if you had issues like me. This walkthrough is applicable to Windows. Once you're happy with your app and created a nice app icon, you're ready to sign it. Copy and paste this command into the terminal, replacing USER_NAME with your particular username. This will create a key file. You do not need to store the key in that particular folder but just for ease of use and for finding it later. keytool -genkey -v -keystore c:\Users\USER_NAME\key.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias key Now for me, when I input that command, it did not recognise keytool as a command. The way I fixed it was to download the new...