Skip to content Skip to sidebar Skip to footer

Invalid Keystore Format

I recently updated an app to the market, I generated the keystore and the corresponding password. Now I updated the app and intend to update it on the market too, I have published

Solution 1:

Are you positive that you are opening the same keystore as before and using the right password? There may be a possibility that the keystore somehow got corrupted; perhaps you have a backup?

Solution 2:

I used unity to export the game to android studio. I had the same problem where it said invalid key format. I exported the project from unity once again to a different folder and used android studio to build it and generate a signed bundle. That solved the problem for me

Solution 3:

The easiest way to sort this out is to go close your Android Studio then go to your Users Directory and Delete the .android Folder and Launch your Android Studio Again(Make sure you have an Internet connection, so that it can build properly)

Solution 4:

Solution 5:

You definitely need to create a new keystore file. But you need to add some properties while creating the keystore file.

keytool -genkey -v -keystore C:/Users/Username/key.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -aliaskey

Post a Comment for "Invalid Keystore Format"