Sun
Sun

Reputation: 6888

Google Maps V2 Release Key Generating Issue

I am trying to generate release key for Google Maps V2 and for that i am following this article, but i am getting:

keytool error: java.lang.RuntimeException: Usage error, APP.keystore is not a legal command

java.lang.RuntimeException: Usage error, APP.keystore is not a legal command
    at sun.security.tools.KeyTool.parseArgs(KeyTool.java:402)
    at sun.security.tools.KeyTool.run(KeyTool.java:193)
    at sun.security.tools.KeyTool.main(KeyTool.java:188)

this is how i am trying to generate release key:

keytool -list -v -keystore /home/system/APKs/Field APP.keystore -alias Field APP

Upvotes: 0

Views: 56

Answers (1)

Divers
Divers

Reputation: 9569

Go ahead with this:

keytool -list -v -keystore "/home/system/APKs/Field APP.keystore" -alias Field APP

Upvotes: 1

Related Questions