I have been using iCloud sync without issue but have started having issues recently.
First I have done some successful iOS builds within a sync folder (something I’ve been told never to do…)
And today I started getting signing problems.
I tried using the “Keep downloaded” option but that doesn’t seem to resolve it.
I copied the project to another folder with .nosysnc after it.
Still no good.
Deleted caches, restarted.
Any tips?
Every file in the sync folder gets metadata about the sync.
Which code sign app doesn’t like.
See in Terminal:
xattr -lx path
so list the metadata. usually we use xattr -cr path
in a script to cleanup.
I’ve tried moving to a non-synced folder, and running that script.
Getting different errors now:
Error signing application:/var/folders/zr/mp7szfxd4h10lgswmgcnkn_c0000gn/T//XojoTempSigning: No such file or directory
I did copy the file to an external drive and it can be loaded and run from there without issue.
That looks like an issue with Xojo though.
Not sure how to recover from this.
Solution: Moved all my development folders to my home folder (outside of iCloud sync) so I didn’t need to use a .nosync
and it’s all good.
Thanks for the response, Christian.