Issue
How to publish the Apk file with signed key for Map, Am Getting Error as Follows in CMD
C:\Program Files\Java\jdk1.7.0_21\jre\bin>keytool -list -v -keystore D:\Shankar Completed Project\Mandate Project\keystore -alias mandatehandbook Illegal option: Completed keytool -list [OPTION]...
Lists entries in a keystore
Options:
Use "keytool -help" for all available commands
Solution
Put quotes around the keystore path. Your shell is confused by the space in the pathname.
keytool -list -v -keystore "D:\Shankar Completed Project\Mandate Project\keystore" -alias mandatehandbook
Answered By - Gabe Sechan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.