apksigner not accepting password

前端 未结 5 1186
无人及你
无人及你 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:37

    Here's what worked for me, I changed this:

    --ks-pass "MyPassword"

    To this:

    --ks-pass pass:"MyPassword"

    A weird API to work with... but it worked!

提交回复
热议问题