Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple popup for codesign wants to access key "access" in your keychain

Tags:

xcode

keychain

After build my app, I got error with codesign wants to access key "access" in your keychain and multiple popup as shown in screenshot attached:

enter image description here

I would like to ask how to fix this error? After entering all the password didn't solve the issue. Clicking "Always Allow" didn't solve the issue either. Many thanks.

like image 765
Victor Leung Avatar asked Nov 08 '17 02:11

Victor Leung


2 Answers

You have to allow codesign in the access list:

security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k keychainPass

like image 86
Stefan Jauker Avatar answered Oct 19 '22 03:10

Stefan Jauker


Enter your password and then Click on Always Allow. That did the job for me.

like image 3
KPS250 Avatar answered Oct 19 '22 03:10

KPS250