apksigner not accepting password

前端 未结 5 1189
无人及你
无人及你 2021-02-19 03:09

Up until now I had been signing my apks with the following method:

jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore {keystore-file} {apk-file} {key

5条回答
  •  既然无缘
    2021-02-19 03:52

    Wow, I didn't know you could change passwords in the keystore.

    Anyway I had this exact problem and it turns out you don't need to change your password. The trick is to set options

    --ks-pass stdin --key-pass stdin
    

    This is supposedly default behavior but in my case it only worked if I specifically included these.

    Execute the command, you'll be asked to enter passwords, and it works even with characters such as !.

提交回复
热议问题