Why does "ionic cordova build" only generate unsigned APKs?

Viewed 3206

I use the below command in order to generate a signed APK, I'm pretty sure this worked a few months ago:

$ ionic cordova build android --prod --release --keystore="./my-keystore-file.keystore" --storePassword=mypass --alias=mymail@gmail.com --password=mypass

However, only an unsigned APK is generated. How can I generate a signed APK using ionic?

2 Answers
Related