1

Getting Error generating final archive: java.io.IOException: Invalid keystore format while running my android application project i tried everything like update my adt and changed my jdk nothing seems to work.

user3086518
  • 71
  • 1
  • 6

1 Answers1

0

Regenerate your keystore for your appsign process in your ide. That should help.

$ keytool -genkey -v -keystore my-release-key.keystore
-alias alias_name -keyalg RSA -keysize 2048 -validity 10000

for more information pleas visit that page.

RMachnik
  • 3,598
  • 1
  • 34
  • 51
  • 1
    The same as for unix, because keytool is provided by java or android sdk. So you have to go into your java jdk or android sdk to see it in windows console. By default it shoudl be on "c:\Program Files\Java\jdk1.7.0_45\bin\" – RMachnik Mar 04 '14 at 09:53