When deploying a Xamarin.Forms app to a physical iOS device running iOS 12.1.4, I encounter this error: resource fork, Finder information, or similar detritus not allowed
Thus the app cannot be deployed onto the device.
When deploying a Xamarin.Forms app to a physical iOS device running iOS 12.1.4, I encounter this error: resource fork, Finder information, or similar detritus not allowed
Thus the app cannot be deployed onto the device.
Although this question already has answers at
I'd like to add in the specific steps for Visual Studio 2019 (Preview) that have worked for me consistently on Mac OS:
bin
and obj
folders (from all your projects, e.g. from the common folder, and from each platform-specific folder).find . | xargs -0 xattr -c
.Check if any image or resource files without extension. One of the possible cause is, in any of the iOS project in the visual studio have image resources without extension (Ex: sample instead of sample.png)
After correcting the file extension, clean and build.