Search results for

dsym file

77,666 results found

Post

Replies

Boosts

Views

Activity

Reply to ModelEntity position values are stale after world recenter (Crown long press)
@MayankGR thank you for your question! Thank you @JosephSimpson , onWorldRecenter does indeed sound like the event the OP is looking for. This doesn't sound like expected behavior, although more context about your exact use case would help us get to the bottom of this. In case this is a bug, could you please file a bug report using Feedback Assistant? Include as much context as you can, a simple project that reproduces the issue would be perfect. And then could you share the ticket number with us in the thread? Thank you!
Topic: Spatial Computing SubTopic: General Tags:
2w
Reply to CPContactTemplate does not display buttons iOS26
Thank you so much for this! Yes this is a known bug that the CarPlay team is currently fixing. Please do submit a bug and this way you'll be informed when is fixed. Thanks again for doing this! Once you open the bug report, please post the FB number here for my reference. This is very important :-) If you have any questions about filing a bug report, take a look at Bug Reporting: How and Why? Albert Pascual
  Worldwide Developer Relations.
Topic: Design SubTopic: General Tags:
2w
Error generating domain certificate
I’m having an issue verifying a domain for a Merchant ID. I’m implementing Apple Pay on the web for a demo, and I’ve configured the Azure server to match Apple’s requirements for domain verification, such as the TLS configuration, not requiring client certificates, and ensuring there are no redirects. I’ve run tests with OpenSSL and PowerShell and all responses return HTTP/1.1 200 OK. I also tested the URL Apple says it uses to validate the file under .well-known, and it does show the expected result. I already have the Apple Pay Payment Processing Certificate and the Apple Pay Merchant Identity Certificate approved; the only thing missing is the domain verification. I’m not sure what else to test—if you could help me with a possible solution, I’d really appreciate it. (The project is built in .NET 8 and hosted on Azure App Service.)
0
0
127
2w
Reply to [FB21797091] Regression: Universal Links/AASA Fetching Fails for IDN on iOS 16+
Thank you, Albert. I have already filed this issue as FB21797091 at the beginning of this thread. I have now added additional diagnostic information to that existing report, including: Detailed swcutil_show.txt comparison between IDN and ASCII domains Entitlement configurations tested over 3 years Testing timeline across iOS 16, 17, and 18 Please reference FB21797091 for the complete bug report. Thank you for your assistance in escalating this issue.
Topic: App & System Services SubTopic: General Tags:
2w
All notarization submissions stuck "In Progress" for 24+ hours — first-time Electron app
I'm submitting my first macOS app (an Electron app, signed with Developer ID Application certificate and hardened runtime) for notarization using xcrun notarytool submit with App Store Connect API key authentication. All 6 of my submissions have been stuck at In Progress for over 24 hours now. The oldest submission is 27+ hours old. None have transitioned to Accepted or Invalid. Here's what I've verified: Code signing is valid: codesign --verify --deep --strict passes Hardened runtime is enabled Uploads succeed: Each submission receives a valid submission ID and the file uploads successfully to Apple's servers API key auth is working: Using App Store Connect API key (.p8 file), Key ID, and Issuer ID Tried both locally and via GitHub Actions CI — same result Polling Apple's status endpoint eventually times out with NSURLErrorDomain Code=-1001 The request timed out when checking https://appstoreconnect.apple.com/notary/v2/submissions/ Logs are not available (notarytool log returns not yet avai
11
0
784
2w
Reply to filecopy fails with errno 34 "Result too large" when copying from NAS
I'm confused. Earlier you wrote the resource fork should only exist on compressed files, and cp DOES copy those but in your last reply Use the Finder to do the copy, not cp and cp decompressed the file, which ended up stripping the xattrs This doesn't make sense to me... I tried creating a file with a resource fork as you suggested, but again I wasn't able to reproduce the Result too large issue. The file, an empty .txt file on my Mac (macOS 26.2) which I added a 14.1 MB resource fork to, now displays as 14’136’946 bytes (14.1 MB on disk) in the Finder. Copying it to the FAT volume (inserted in my router and connected via SMB to my Mac) with the Finder, the cp command, or the test app I showed at the beginning which uses copyfile: they all worked, and the Finder displays the destination file as 14.1 MB. The only error I got was when trying to add the resource fork to an empty file created on the SMB volume: cat: stdout: Operation not permitted So
Topic: App & System Services SubTopic: Core OS Tags:
2w
Frameworks and library dependencies
I have a framework, which depends on a library (GPGME) to do its actual encryption. As a consequence of using this external library, there are header files which have GPGME types in them... @interface E3Gpgme : NSObject ... /***************************************************************************** |* Call GPGME to sign *****************************************************************************/ - (int) signWithMode:(gpgme_sig_mode_t)mode userId:(NSString *)signingKeyOrEmail srcStream:(E3Stream *)src dstStream:(E3Stream *)dst error:(NSError **)error; ... @end . This means the E3Gpgme class header file has to #import to get those type definitions. That is then proving problematic because the framework modularisation fails, with obviously not being a part of the framework, so the project refuses to build. I can see a few ways around this: Just don't run the modularisation check. That doesn't sound like a fantastic option import the GPGME headers (there's only 2) into the project and bun
0
0
22
2w
Reply to My app seems to cause Time Machine errors
If there are unsaved changes, then the app should ask to save; and that's not happening. It doesn't seem like I'm doing anything particularly wrong, or omitting something that I ought to be doing; and it only affects a small number of files, and only occasionally. I'll keep an eye on in and see if I can investigate next time it happens. Thanks
Topic: App & System Services SubTopic: Core OS Tags:
2w
Reply to Virtual Machine UDID Changes in macOS 15: Looking for Guidance on Development Workflow
[quote='874968022, Shay39, /thread/810932?answerId=874968022#874968022, /profile/Shay39'] I believe the behavior we're seeing is explained in the documentation … [/quote] That’s my interpretation as well, but I’m still not 100% certain that it matches the behaviour that ArthurValiev is reporting up thread. I have a reminder to spend some more time digging into this, but I haven’t yet had a chance. [quote='874968022, Shay39, /thread/810932?answerId=874968022#874968022, /profile/Shay39'] as it's currently the only practical method I'm aware of for preserving UDIDs. [/quote] It’s certainly a useful option, yes. Another option is to start with a template VM, then clone it twice [1] for each ‘runner’ Mac, start each one, and then stop it cleanly. Each one should pick up a new provisioning UDID during its startup sequence and you can then assign that provisioning UDID to your account. This is quite fiddly to manage, and it won’t work for organisations that have a large number of runners, but it’s an option worth ex
Topic: App & System Services SubTopic: Core OS Tags:
2w
File Download Support in SwiftUI Native WebView (iOS 26+)
I am using the native SwiftUI WebView and WebPage APIs (iOS 26+) and would like to implement file download functionality using the native SwiftUI WebView. However, I have not been able to find any APIs equivalent to WKDownload. In WKWebView, the WKDownload API can be used to handle downloads. I am looking for a similar API or recommended approach in the native SwiftUI WebView that would allow downloading files. If anyone has guidance or suggestions on how to implement this, I would appreciate your help.
0
0
438
2w
Use iTMSTransporter to upload the ipa file on Windows. ERROR: Client configuration failed
Use iTMSTransporter to upload the ipa file on Windows. ERROR: Client configuration failed [2026-02-05 16:35:17 CST] INFO: iTMSTransporter Correlation Key: a97add20-898c-4d66-81c8-a1e313f2807e-0001 [2026-02-05 16:35:17 CST] DEBUG: DataCenter: contentdelivery01.itunes.apple.com [2026-02-05 16:35:18 CST] DBG-X: Apple's web service operation return value: [2026-02-05 16:35:18 CST] DBG-X: parameter DSToken = hidden value [2026-02-05 16:35:18 CST] DBG-X: parameter DSTokenCookieName = myacinfo [2026-02-05 16:35:18 CST] ERROR: Client configuration failed Here is the error message. Package Summary: 1 package(s) were not uploaded because they had problems: C:UsersAdministratorDesktopbaggsl222.ipa - Error Messages: Client configuration failed [2026-02-05 16:35:18 CST] DBG-X: Returning 1
0
0
33
2w
Avoid creating dsyms for test targets in Xcode Cloud
Hi, our Xcode Cloud runs produce dsyms for test targets that massively increase the artifacts size, more specifically the Test Products for zip, that slows down the build due to the upload artifacts phase. These dsyms are useless, so we would like to stop producing them on Xcode Cloud builds. Consider that the workflow uses the autogenerated scheme for a package that's part of the Xcode project. How can we tell Xcode Cloud to not produce dsyms?
0
0
69
2w
Reply to Xcode 16 Doesn't Display "Swift Compiler" Build Settings Sections
I figured this out, at least for me. The whole internet says you need a swift file in your project and then you'll see the Swift settings! .... That's a little too obvious. I have swift in my project and I STILL don't see the settings. The real problem for me is that the project contained an ancient build setting that appears perfectly safe: This is actually: GCC_VERSION = com.apple.compilers.llvm.clang.1_0 If that's in there, I don't see Swift Compiler sections. If I remove that (or explicitly change it to the default which is the correct value, and builds in an identical way), they instantly show up.
2w
NSItemProvider.registeredTypeIdentifiers(fileOptions: [.openInPlace]) is empty until performDrop
I am building an app for iOS and MacCatalyst that indexes files by storing their local paths. Because the app relies on the file remaining at its original location, I only want to accept items that can be opened in place. I am struggling to determine if an item is Open In Place compatible early in the drag-and-drop lifecycle. Specifically: In dropInteraction(_:canHandle:) and dropInteraction(_:sessionDidUpdate:), calling itemProvider.registeredTypeIdentifiers(fileOptions: [.openInPlace]) returns an empty array. Only once the drop is actually committed in dropInteraction(_:performDrop:) does that same call return the expected type identifiers. This creates a poor user experience. I want to validate the In Place capability at the very start of the session so the drop target only activates for valid files. If an item is ephemeral (like a dragged photo from the Photos app or a temporary export), the drop zone should not react at all. How can I reliably detect if an NSItemProvider suppor
2
0
110
2w