Reputation: 452
I added Keychain support for my mobile app in Entitlement plist But unable to prepare release build in xamarin
Below is the error I am facing after I add Entitlement into iOS Project Properties
Error: error MT1006: Could not install the application '/Users/MyUser/Library/Caches/Xamarin/mtbs/builds/ValuD.MobilD.IWMS.iOS/251d0141d24521bb61666d94057028a9/bin/iPhone/Release/ProjectNamespace.app' on the device 'iPhone 6s Plus': Your code signing/provisioning profiles are not correctly configured. Probably you have an entitlement not supported by your current provisioning profile, or your device is not part of the current provisioning profile.
Please Find Attached screenshots for more help.
Upvotes: 3
Views: 2660
Reputation: 452
**
**
Whenever you need Entitlement plist to be added as part of your build it must be provided in custom entitlement section, you will find it in iOS project properties where we select the Provisioning Profile.
To find appropriate Entitlement Plist for your provisioning profile just follow below steps and done:-
Ex :- <dict> <key> keychain-access-groups </key> <array> </dict>
Copy and replace the TAG code to your plist
Done
Enjoy ... :)
Upvotes: 5
Reputation: 71
Try to check the provisioning profile services enabled for the app id
Upvotes: 1