Hi,
I do have a strange behavior in my development environment on a Mac mini (M4) running 26.2 and Xcode 26.3.
Everything was working as expected. My project had a stable state and I wanted to enable iCloud support. As result
I could not run the app any more because code signing failed
with the message that my profile does not include the above entitlement.
On my notebook (M2) with XCode 26.3 everything is working.
Im am using GIT and both computers have identical code. The code compiling and running on my notebook will not run any more on my Max mini.
Any help to find what might have broken the code signing and how it could be fixed?
Thanks in advance.
Finally I found the problem. In the entitlements file, I had 2 entries
iCloud Container Identifier
iCloud Services
with an empty array of values. These must have been left over from previous edits.
After removing the above entries, building completes without any error.
😉