Mac OSX asking for keychain access when building MonoDevelop iOS App

社会主义新天地 提交于 2019-12-01 21:40:49

In my case I went to Keychain Access, selected "system" in "Keychains" (top left). Then for each item: right click, "Get Info", "Access Control" and added Xcode in "Always allow acces by these applications:" list.

(I'm not using MonoDevelop, but guess the problem reason is similar)

Danny Schoemann

Hat tip: https://forums.developer.apple.com/thread/25092

Since El Capitan, you can no longer click on "Allow" or "Always allow" programmatically.

This includes from Screen Sharing!

Supposedly you can just plug in a mouse to your headless Mac and click "Always Allow". This didn't work by me until I closed all active Screen Sharing sessions.

Then I plugged in a monitor, mouse & keyboard, clicked "Alway Allow" and life is good; until i have to deal with a new certificate.

Fix for El Capitan:

  1. export certificate to .p12
  2. open terminal
  3. run: security import <pathToP12> -k <keychain_name>.keychain -t priv -f pkcs12 -A

You will be asked to enter keychain password and that's all.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!