문제

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

도움이 되었습니까?

해결책

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 

다른 팁

debug keytool example:

keytool -list -v -keystore "D:\Users\%your name%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top