I am currently working on cordova project and I tried to generate key with the set of lines
keytool -genkey -v -keystore <myappname.keystore> -alias <myappname> -keyalg RSA -keysize 2048 -validity 10000
I also generated a keystore after that I used the below line
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore <myappname.keystore> app-release-unsigned.apk <myappname>
but I get this issue
jarsigner: unable to open jar file: app-release-unsigned.apk
Can anyone help me with the solution. Thanks in advance.