ERROR ITMS-90045: Invalid Code Signing Entitlements. Xamarin Studio

随声附和 提交于 2020-01-07 03:51:09

问题


This error popped up when I tried to upload my .ipa to the App Store. I tried to Clean the project in Xamarin and regenerate all the provision files but still, doesn't solve the issues.


回答1:


change Entitlements.plist to this

<plist version="1.0">
  <dict>
    <key>aps-environment</key>
    <string>production</string>
  </dict>
</plist>



回答2:


This fix worked for me using Visual Studio for Mac v7.7 Your provisioning profile and signing identity must be set up on IDE correctly:

  1. Go to Project Options -> iOS Bundle Signing.
  2. Choose Release on Configuration spinner. iPhone for Platform spinner too.
  3. Change Info.plist option by Entitlements.plist on Custom Entitlements field.

Build iPA.



来源:https://stackoverflow.com/questions/43053859/error-itms-90045-invalid-code-signing-entitlements-xamarin-studio

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