Jarsigner is not recognized internal or external command

后端 未结 4 1284
野的像风
野的像风 2021-02-12 18:41

i\'m trying to check if my signed release apk is really signed. But following some tutorials, or the single i\'ve found .

$ jarsigner -verify -verbose -certs my_         


        
4条回答
  •  南笙
    南笙 (楼主)
    2021-02-12 19:27

    1. Go to My computer -> right click -> system properties ->select environmental variables ->Edit Path -> add your jdk/bin path and select ok. The sample jdk path is as shown below.

    C:\Program Files\Java\jdk1.8.0_211\bin

    *if this not work then

    1. In command prompt set the path by using the below command

    set PATH=C:\Program Files\Java\jdk1.8.0_211\bin

    now the path is set now you can use the jarsigner

提交回复
热议问题