Codesign returned unknown error -1=ffffffffffffffff

后端 未结 8 1427
傲寒
傲寒 2020-12-02 23:43

I tried to code sign an iOS application, These are the steps that i followed

    security create-keychain -p password ${KEYCHAIN}
    security set-keychain-s         


        
8条回答
  •  醉梦人生
    2020-12-03 00:14

    Had the same problem a while ago, adding

    security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k password ${KEYCHAIN}

    solved it for me.

提交回复
热议问题