Posts

Post not yet marked as solved
9 Replies
632 Views
NSFileProvider Extension based on Xamarin.Mac constantly crashes starting on MacOS 14.4 Beta Steps to Reproduce: Create simple Xamarin.Mac solution and add FileProviderExtension project Storage appears in Locations section in Finder Expected Behavior: Cloud storage shows folders content Actual Behavior: Cloud storage doesn't show folder content, just infinite running spinner FileProviderExtension process constantly crashes. It occurs only in OSX starting from 14.4 beta. Please review crash report and help me understand whats wrong and how to fix it. Simple project written with Swift and Xcode works without any issues. May be it’s related to issue described here https://forums.macrumors.com/threads/fileproviderctl-on-sonoma-14-4-here-we-f-ng-go-again.2418353. Thanks in advance! Environment-Info.log CrashReport.txt
Posted Last updated
.
Post not yet marked as solved
2 Replies
1.1k Views
i have one problem with creating universal libraries via Swift Package Manager. I am trying do it with next command: swift build -c release --arch arm64 --arch x86_64 --package-path "package-path" -Xcc -DFUSE_USE_VERSION=26 -Xcc -D_FILE_OFFSET_BITS=64 -Xswiftc -I"headers-include-path" -Xlinker -L"linker-path" I get errors related to unfound header files. Seems build options don't applied. But if i execute separately with --arch arm64 or --arch x86_64, it works. May be anyone know how to fix it?
Posted Last updated
.
Post not yet marked as solved
1 Replies
448 Views
Hi, i have very annoying issue. I have single UrlSession for Post method requests sending to server. In URLSessionConfiguration i set timeoutIntervalForRequest = 4h and expect that my request will fail only after this timeout, but it always fails after 4-5 min with error kCFErrorHTTPParseFailure = 303. Ok, tried to create new UrlSession for each request, currently it fails again after 4-5 min with Code=-1005 "The network connection was lost." Tried to make some workarounds founded in different forums. Tried to turn off HTTP keep alive on server side. Doesn't help. Is this some kind of system limitation or can I increase the time in some way still?
Posted Last updated
.