Phonegap - Error - Keystore alias not recognized

I am trying to sign an Android application using Phonegap Build

I get the following error:

Error - Keystore alias not recognized 

I use this to create a keystore in my terminal:

 keytool -genkey -v -keystore name.keystore 

-alias alias -keyalg RSA -keysize 2048 -validity 10000-password password

What should I use for "name" and "alias", did I miss something?

Thanks.

+6
source share
1 answer

Try this way. https://github.com/amirudin/build/wiki/Android-Signing

If the alias is not recognized, the alias field that you provided is not found in the keystore file that you downloaded. If the keystore format is invalid, you may not have downloaded the correct files. If the password was incorrect, you may enter it incorrectly.

enter image description here

+23
source

Source: https://habr.com/ru/post/953443/


All Articles