Я не могу получить keytool для развертывания - PullRequest
0 голосов
/ 29 апреля 2020

Я пытаюсь заставить keytool развернуть мое приложение Flutter, но когда я запускаю код в командной строке, я получаю следующую ошибку:

keytool : The term 'keytool' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a 
path was included, verify that the path is correct and try again.
At line:1 char:1
+ keytool -genkey -v -keystore "C:/Users/albat/hello_world.jks" -storet ...
+ ~~~~~~~
    + CategoryInfo          : ObjectNotFound: (keytool:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

Код, который я запускаю, следующий:

keytool -genkey -v -keystore "C:/Users/albat/hello_world.jks" -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias key

Спасибо.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...