Using ionic app I have released my first version. So its crossed ore than 10,000 downloads and user are using my app. Now I want to release some update with my app. So I release the unsigned apk, but when I do this step :
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore HelloWorld-release-unsigned.apk alias_name
it was asking the password for my-release-key.keystore
but I forgot the password. Please give me some solution.
I tried to create new
keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
But when I release the update and upload in app store, I am getting the error last update certificate is not match with this build. When I Google it, it's because of the newly generated my-release-key.keystore
.