Generate signing key
If you want to upload your application on Google Play you must sign it before uploading, to generate a signing key run the following command
keytool -genkey -v -keystore c:\Users\USER_NAME\upload-keystore.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias uploadEnter your details and be sure to remember the password.
Once completed, an
upload-keystore.jksKeystore file will be generated. Locate this file and move it to theandroid/appfolder.Afterward, navigate to the
android/key.propertiesfile and replace the password with the one you used during the Keystore file generation.
Last updated