Hi there!
I'm having an issue with Xamarin.Forms with iOS with the application loader.
ERROR ITMS-90046: "Invalid Code SigningEntitlments. Your application bundle's signature contains code signing that are not supporte on iOS. Specifically, value 'Development' for key 'com.apple.developer.icloud-container-environment' in 'Payload/MyAppiOS.app/MyAppiOS' is not supported."
My Enititlements have no such key actually it looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.application-groups</key>
<array>
<string>Game Center</string>
<string>iCloud</string>
<string>In-App Purchase</string>
<string>Push Notifications</string>
</array>
<key>com.apple.developer.icloud-services</key>
<array>
<string>CloudKit</string>
</array>
</dict>
</plist>
Any ideas?