Search results for

dsym file

77,692 results found

Post

Replies

Boosts

Views

Activity

Reply to Provisioning profile missing entitlement
[quote='873516022, DTS Engineer, /thread/811382?answerId=873516022#873516022'] I’m going to research this further and get back to you. [/quote] I reached out to a colleague about this and they confirmed that my guess was correct. Better yet, they pointed me at App Store Connect Help > Transfer an app > Overview of app transfer > Apps using iCloud, which covers this topic specifically. It says this: If your app uses any of the following, it will be transferred to the transfer recipient after they accept the app transfer. … KVS identifiers associated with the app which confirms that iCloud key-value store preferences are expected to transfer, and this: If your app uses iCloud Key-Value Storage (KVS), the full KVS value will be embedded in any new provisioning profiles you create for the transferred app. Update your entitlements plist with the full KVS value in your provisioning profile. My interpretation of this is that you it’s telling you to do what we’ve done in this thread, that is, set the value i
4w
tvOS - how to stop OS from backgrounding my app
I have an Apple TV photo slideshow app (Objective-C, Storyboard based, transitioned to scenes and UIKit from old Appdelegate model) which is trivial but exhibits a problem I can't fix. The app has 2 UIImageViews, pulls photos from iCloud, replaces the back view, fades between them, swaps front and back images. I cannot for the life of me work out how to tell tvOS / UIKit that I need to stay in the foreground. Other slideshow apps manage it, clearly movie viewing apps like Netflix, Disney+ and BBC iPlayer manage to stay on top without the user needing to interact with the UI, but I keep getting pushed out. The pushing out happens only if I am playing music on the Apple TV, either using the built-in music app or AirPlaying music to the Apple TV from an iPad or phone. The issue is reproducible in an app that does nothing except load up a photo from the main bundle into a UIImageView. It's as if the OS thinks I'm idle and I need to nudge it to remind it I'm still here, but I can find no hints in Apple's documenta
Topic: UI Frameworks SubTopic: UIKit
1
0
105
4w
Reply to Apple Notes API
[quote='813810021, iRIG, /thread/813810, /profile/iRIG'] I’m wondering if there is [an] API for Apple Notes? [/quote] No. [quote='813810021, iRIG, /thread/813810, /profile/iRIG'] I just saw once that it’s possible through a Apple Script on Mac. [/quote] Correct. [quote='813810021, iRIG, /thread/813810, /profile/iRIG'] But the problem for me is that the app should also run on iOS. [/quote] My advice is that you file an enhancement request for a Notes API, similar to the APIs we have for Calendar (EventKit), Contacts (Contacts framework), and so on. Please post your bug number, just for the record. Using an AppleScript interface as an API is less than ideal for many reasons. One big one, as you’ve discovered, is that it’s limited to macOS. And your can’t use the equivalent technology on iOS, Shortcuts, to make progress on this. With AppleScript it’s possible to both be an AppleScript target and target other apps. With Shortcuts, you can only do the former. So, if you want to allow the user to integrate
Topic: App & System Services SubTopic: General Tags:
4w
Reply to Notarization taking 3.5–4.5 hours for large macOS apps — is this expected?
Notarising very large products can take a while. I usually advise folks to approach this in two steps. The first step is to separate upload time from notarisation time. This is relatively straightforward: Use notarytool, without the --wait option, to upload your product. Make a note of when that finishes. Wait for the notarisation to complete. Compare the upload time to the overall notarisation time. I regularly see situations where the upload time dominates the notarisation time. If that’s the case then there’s a different path to follow. However, in this case it sounds like you’ve already done this test and determined that the bulk of the delay is after the upload. Given that, there’s a couple of things to do. The first is to file a bug against the notary service. I’ve seen cases where there’s something specific about the product that’s causing the notary service to enter a pathological state. In your bug report, make sure to include: A request UUID showing the problem. The evidence you have confir
Topic: Code Signing SubTopic: Notarization Tags:
4w
Reply to URL(fileURLWithPath:) behavior change in iOS 26 - Tilde (~) in filename causes unexpected path resolution
I’m gonna second Ziqiao’s advice here: You should file a bug about this. When you’re done, please post your bug number. [quote='873717022, dileepachandrasekara, /thread/813571?answerId=873717022#873717022, /profile/dileepachandrasekara'] Solution - Adding leading slash with new URL API: [/quote] That’s not really a solution, in that it produces a different URL. ~TestFile.irfd should produce a relative URL, relative to the current working directory [1]. OTOH, /~TestFile.irfd produces an absolute URL. You can’t reasonably substitute one for the other. And if you’re doing that, it suggests that you’re not properly tracking the difference between a URL and a URL path component. Honestly, creating a file URL from ~TestFile.irfd is weird on iOS, because you generally can’t assume anything useful about the current working directory [2]. So, how did you bump into this problem? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com [1l Whi
Topic: App & System Services SubTopic: General Tags:
4w
Reply to nesessionmanager “Resetting VPN On Demand” after sleep/wake
[quote='813735021, Catonian, /thread/813735, /profile/Catonian'] with Always-On / On-Demand VPN [/quote] To be clear, Always-on VPN is a very specific thing that’s not supported with third-party VPN products (r. 21363342) [1]. My experience, based on the number of problems I’ve seen here on the forums, is that folks who try to use VPN On Demand to simulate Always-on VPN are invariably disappointed )-: Given that, I’m not sure how much I can help you here. My general advice: If you would like to track the state of the above-mentioned enhancement request, file your own ER and ask that it be dup’d to problem 21363342. If you’re able to reproduce the problem you’ve described on macOS 26, you should consider filing a bug about that. And there’s nothing stopping you from doing both (-: If you do file a bug for the problem you’re seeing: Make sure you can reproduce it on macOS 26. You mentioned that you’re seeing this on macOS 14 and 15, and there’s probably not much point filing
4w
Reply to Behavior of Bookmark URLs and Files App Recently Deleted – Clarification and Potential Bug
Hello, Thanks for your detailed explanation. ...yes, please file a bug on this and post the bug number back here. Sharing your bug number regarding this topic which I previously filed. FB21561068 https://feedbackassistant.apple.com/feedback/21561068 What's the scenario it's failing at? When determining whether the URL is in “trash” location by using API with the following steps, we are seeing a failure. Precondition: Download the attached sample project (TrashedFileURL.zip) in the feedback which I shared with you in above and build the TrashedFileURL.app from the project inside the zip folder. 1.Create a file in NSDocumentDirectory by TrashedFileURL.app. a.file:///private/var/mobile/Containers/Data/Application/{Application UUID}/Documents/{File UUID}.txt 2.Save the Bookmark of the file created in 1. in TrashedFileURL.app. 3.Delete the file by Files.app. 4.Get URL of the file from the Bookmark which is saved on TrashedFileURL.app. a.URL is referrin
Topic: App & System Services SubTopic: Core OS Tags:
4w
XCode26.2 ld: Assertion failed: ((ct == Atom::ContentType::objcConst) || (ct == Atom::ContentType::objcData) || (ct == Atom::ContentType::constData) || (ct == Atom::ContentType::constText)), function ObjCClassReadOnlyDataRef, file Atom.cpp, line 329
Dear Apple engineers: My previous project was successfully compiled using Xcode 16.2. Now, I need to adapt it to Xcode 26. I know that the linker in Xcode 26 has undergone significant changes. So, in the 'Other Linker Flags' configuration of the Build Settings in the project engineering of Xcode 26.2, I deleted '-ld64' and added '-Xlinker -dead_strip -Xlinker -dead_strip -allow_dead_duplicates' to adapt to the new linker of Xcode 26. After the modification, when I compiled my project engineering using Xcode 26.2 compiler, I encountered a new linker error. The error log is attached. Regarding this error, how should we solve it? Thank you. XCode26.2BuildErrorLog.txt
3
0
179
4w
How to prevent the popup "The disk you attached was not readable by the computer" from appearing?
Hello! We develop a SAS driver and a service application for DAS devices. When users in our application create a RAID array on the device: On the 1st step, our dext driver mounts a new volume. At this step DiskUtil automatically tries to mount it. As there is no file system on the new volume - the MacOS system popup appears The disk you attached was not readable by the computer On the 2nd step our application creates the file system on this new volume. So we do not need this MacOS system popup to appear (as it may frustrate our users). We found a way to disable the global auto mount but this solution also impacts on other devices (which is not good). Are there any other possibilities to prevent the popup The disk you attached was not readable by the computer from appearing?
3
0
199
4w
Mac Studio: Continuity Camera unavailable after reboot unless USB camera is connected
Summary On Mac Studio systems (no built-in camera), macOS does not initialize camera services after a normal reboot if no physical camera is present. As a result, Continuity Camera does not appear anywhere in the system. Observed behavior System Information → Camera reports “No video capture devices were found.” Continuity Camera (iPhone) is completely absent from camera lists. Plugging in any USB UVC webcam immediately initializes camera services and causes both the USB camera and the iPhone (Continuity Camera) to appear. The USB camera can then be unplugged and Continuity Camera continues working until the next reboot. Reproduction steps Use a Mac Studio (no built-in camera) on recent macOS. Ensure no USB webcam or external camera is connected. Reboot the Mac normally. After login, open System Information → Camera. Expected Camera services should initialize even when no physical camera is present, allowing Continuity Camera to be available as the primary camera. Actual No camera devices are present unless a
1
0
115
4w
Reply to URL(fileURLWithPath:) behavior change in iOS 26 - Tilde (~) in filename causes unexpected path resolution
Solution - Adding leading slash with new URL API: func getFileName(from fileNameWithExtension: String) -> String { let url = URL( filePath: / + fileNameWithExtension, directoryHint: .notDirectory, relativeTo: nil ) // Debug logging print(Input: (fileNameWithExtension)) print(URL created: (url)) print(URL.path: (url.path)) print(URL.lastPathComponent: (url.lastPathComponent)) return url.lastPathComponent } // Usage let result = getFileName(from: ~TestFile.irfd) Debug Output (iOS 26): Input: ~TestFile.irfd URL created: file:///~TestFile.irfd URL.path: /~TestFile.irfd URL.lastPathComponent: ~TestFile.irfd By prefixing with /, the filename becomes an absolute path, preventing the ~ from being interpreted as the home directory symbol. This approach: Uses the modern URL(filePath:directoryHint:relativeTo:) API (not deprecated) Works correctly on both iOS 18 and iOS 26 Follows the valid pathname rule you mentioned Btw, i could not find the official Apple documentation that explains this path resolution be
Topic: App & System Services SubTopic: General Tags:
4w
- (BOOL) contentsAreFlipped needs to be true for .nib layouts
I have an odd bug, if I use initWithFrame as the init routine for NSView subclass that uses layers I don't see this bug. But if I embedded this view into a storyboard with a .nib file and use initWithCoder, I need to return true on (BOOL) contentsAreFlipped From the NSView subclass If I don't the CALayer actually renders from 0,0 from the view upwards and off the window. The frame sizes for the NSView and the CALayer are good.. when I see them in updateLayer. Obviously I have a fix.. but I would like to understand why.
0
0
250
4w