Home > Blockchain >  I have deleted my .android keystore but I didn't use it, how do I generate a new one?
I have deleted my .android keystore but I didn't use it, how do I generate a new one?

Time:10-01

I used keystore for the first time in a random app I made to as my first ever flutter app but now I am making an actual app and I would like to sign it with the keystone. I could not remember the password and so I just deleted the file hoping I could make a new one but now I cannot find instructions on how to generate an android flutter keystore.

Does anyone know how I could make one?

CodePudding user response:

Use this command

keytool -genkey -v -keystore C:\upload-keystore.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias upload

You can find your keystore in C directory. Or change the location as your wish.

Refer Here

  • Related