Search results for

build disappears

49,264 results found

Post

Replies

Boosts

Views

Activity

Question about SpeechTranscriber availability on specific iPad models
Hello, I am a developer planning to build an application using Apple's new SpeechTranscriber technology. I am facing an issue where SpeechTranscriber is not available on my iPad Pro (11-inch, 2nd generation, model number: MXDC2J/A), even though I have updated it to iPadOS 26. I was under the impression that SpeechTranscriber would be available on any device running iPadOS 26. Could you please clarify if this is incorrect? Furthermore, I am planning to purchase a new iPad with an A16 chip for the development and deployment of this application. Can you confirm if SpeechTranscriber will be fully functional on an iPad equipped with the A16 chip? Thank you for your assistance.
2
0
102
Sep ’25
IAP Section Missing from Main Binary Screen After Rejection
My app was initially rejected and is now in Prepare for Submission status after fixing all issues. The IAPs were subsequently rejected and are now in Developer Action Needed status. All IAP issues have been resolved and Submit for Review is enabled for both the app and IAPs, however: 1- IAP status remains Developer Action Needed despite being ready. 2- The In-App Purchases and Subscriptions section is missing from the main binary screen. 3- Cannot link IAPs to the current build since this is the first IAP submission for the app.
0
0
96
Sep ’25
Reply to ITMS-90429: Invalid Swift Support – Swift libraries not at expected location in iOS app submission
minimum deployment target set to 1 That sounds like your app's version number or maybe its build number. The deployment target is the minimum iOS version your app supports. It should be at least iOS 15, if not something more recent. If it's something older (like iOS 12), then you should raise it and expect to see the libswift files disappear from your app, since they aren't needed for recent iOS versions. How can I integrate a static library (.a file) into an iOS app so that it does not appear in the final app bundle? It should appear in the Link Binary with Libraries build phase, and not subsequently appear in any build phases that copy files into the built app. Cocoapods is a third-party tool, so you'll want to check that they aren't doing anything to copy the file and seek their support if you need help with configuring their tool. — Ed Ford,  DTS Engineer
Sep ’25
iOS 26 SwiftData crash does not happen in iOS 16
I have a simple app that makes an HTTPS call to gather some JSON which I then parse and add to my SwiftData database. The app then uses a simple @Query in a view to get the data into a list. on iOS 16 this works fine. No problems. But the same code on iOS 26 (targeting iOS 18.5) crashes after about 15 seconds of idle time after the list is populated. The error message is: Could not cast value of type '__NSCFNumber' (0x1f31ee568) to 'NSString' (0x1f31ec718). and occurs when trying to access ANY property of the list. I have a stripped down version of the app that shows the crash available. To replicate the issue: open the project in Xcode 26 target any iOS 26 device or simulator compile and run the project. after the list is displayed, wait about 15 seconds and the app crashes. It is also of note that if you try to run the app again, it will crash immediately, unless you delete the app from the device. Any help on this would be appreciated. Feedback number FB20295815 includes .zip file Below is the basic code (
4
0
167
Sep ’25
Xcode Devices "Download Container" no longer works on latest Xcode 26.0 (24228) (Build 17A324)
After updating my Xcode to the latest, I am unable to download an installed app container from the Xcode Devices screen. This currently works with older versions of Xcode with the same app on the same iPad. This worked with older versions of Xcode on the same MacBook as well (including the Xcode 26 beta before updating to the official release yesterday) The specified file could not be transferred. Domain: com.apple.dt.CoreDeviceError Code: 7000 User Info: { DVTErrorCreationDateKey = 2025-09-18 20:31:01 +0000; NSURL = file:///Users/thomsk2/Desktop/com.test.polarisdev%202025-09-18%2015:30.53.744.xcappdata/AppData/Library/Caches/; } The specified file could not be transferred. Domain: com.apple.dt.CoreDeviceError Code: 7000 User Info: { NSURL = file:///Users/thomsk2/Desktop/com.test.polarisdev%202025-09-18%2015:30.53.744.xcappdata/AppData/Library/Caches/; } Failed to perform I/O operations. Domain: com.apple.dt.remoteservices.error Code: 11001 Failure Reason: Cannot open destination file /Users/thomsk2/Desktop/c
2
0
132
Sep ’25
CI - Warning: unable to build chain to self-signed root for signer
I am able to sign my application when logged in to the machine, however when build is running in CI (Jenkins), I get this: Warning: unable to build chain to self-signed root for signer.. We just renewed or certificates, so I am not sure about previous procedure, but it used to work without temporary keychain and stuff, I believe. What should be the recommended way to sign an application on CI? What keychain should we use? system? temporary? other method? Thanks, Itay
3
0
294
Sep ’25
Reply to Novice SwiftUI developer can't make network call
I have wrapped the (if let banjo) block in a dummy function and it builds. Only issue is where to run the function. I'd be happy with it running first in the program. As soon as I boot up. I suppose I could put a button in the content view that runs the function, which I assume would make the network call. Is that ok?
Topic: Design SubTopic: General
Sep ’25
Reply to No profiles for 'xxx.xxx.xxx.xxx' were found
Here's some things to try: login to developer.apple.com and check and see if com.os.hub.mth2 inadvertently was registered in your personal account instead of your developer account. If it was, delete it from your personal account. Login to developer.apple.com and check and see if you have a wildcard app id registered in your account. If you do, delete it. If you're using automatic code signing you can delete the invalid certificates in the Keychain Access app. Xcode will download the correct certificates next time you run a build. If that doesn't help, consider opening a support incident so I can take a look at the settings on your machine. https://developer.apple.com/support/technical/
Sep ’25
Reply to Can´t find a DLL in a VisionOS app with Unity
Hello @pablo_figueroa , thank you for your question! Because you are using Unity to build your project, it's difficult for us to know exactly what might be breaking. I highly recommend sending feedback using Feedback Assistant with your attached project, and then including the ticket number here, so we can look more closely. Additionally, I recommend reaching out to Unity on their developer forums in case anyone there has experienced a similar issue. In the Frameworks, Libraries and Embedded Content section of your Xcode project, do you see your framework listed there? It should be set to Embed & Sign. If I recall correctly there is a checkbox in Unity in the inspector for your plugin under the visionOS tab at the bottom, Add to Embedded Binaries, that may help. You can check out our documentation here. Let me know if you have any more questions! Thank you!
Topic: Spatial Computing SubTopic: General Tags:
Sep ’25
Reply to Blocking USB Devices on macOS – DriverKit or Other Recommended Approach
We are working on a general USB device management solution on macOS for enterprise security. Our goal is to enforce policy-based restrictions on USB devices, such as: For USB storage devices: block mount, read, or write access. For other peripherals (e.g., USB headsets or microphones, Raspberry Pi, etc.): block usage entirely. We know in the past, kernel extensions would be the way to go, but as kext has been deprecated. And DriverKit is the new advertised framework. At first, DriverKit looked like the right direction. However, after reviewing the documentation more closely, we noticed that using DriverKit for USB requires specific entitlements: DriverKit USB Transport – VendorID DriverKit USB Transport – VendorID and ProductID This raises a challenge: if our solution is meant to cover all types of USB devices, we would theoretically need entitlements for every VendorID/ProductID in existence. My questions are: Is DriverKit actually the right framework for this kind of general-purpose USB device control? No.
Topic: App & System Services SubTopic: Drivers Tags:
Sep ’25
iOS 26 NavigationStack Title Rendering Issue
Is anyone else experiencing NavigationStack title disappearing in iOS 26? Hey everyone, I just updated to iOS 26 and I'm running into a really frustrating issue with my app. Wondering if anyone else is seeing this or if I'm missing something obvious. What's happening: My navigation titles are completely blank when the app first loads, but then magically appear when I scroll down. It's super weird and makes my app look broken at first glance. My setup: I'm using NavigationStack with some pretty standard stuff: Navigation title with .navigationTitle() A toolbar with a settings button ScrollView content with a gradient background Here's basically what I have: NavigationStack { ScrollView { VStack(spacing: 24) { // My app content here - cards, etc. ForEach(myItems) { item in // Content cards } } .padding() } .background( LinearGradient( gradient: Gradient(colors: [ Color.surfacePrimary, Color.surfacePrimary.opacity(0.95), Color.surfaceSecondary.opacity(0.3) ]), startPoint: .top, endPoint: .bottom ) ) .na
0
0
125
Sep ’25
Reply to Novice SwiftUI developer can't make network call
I am not having trouble deciding what to do in my code if I get a non URL value in banjo. I'm using the same URL that I think I will always use, and that won't change. And that I'm checking is valid. That being the case I've tried pasting the code you gave me into xcode and it still won't build. Here's what I put in xcode let myString = https://www.alphavantage.co/query?function=TIME_SERIES_DAILY&symbol=AAPL&apikey= ********* if let banjo = URL(string: myString) { let Lulah = URLSession.shared.dataTask(with:banjo ) { myDatastring , response , error in} Lulah.resume() } else { myDatastring=nil url } I'm getting a build error on the line starting if let banjo. The build error is: Statements are not allowed at the top level and is tied to the first word, if. Thank you for your generous help.
Topic: Design SubTopic: General
Sep ’25
Document title/proxy shifts left when adding an empty SwiftUI/AppKit toolbar - how to keep it centered?
I’m building a document-based macOS app using SwiftUI with an AppKit NSDocument. By default, when the window has no toolbar, the document title and proxy icon (with the edited state dot and standard saving controls) appear nicely centered in the title bar. However, as soon as I attach a toolbar - even an empty one - the document proxy moves to the leading edge of the title bar. Is there a way to keep the document proxy/title centered in a document-based SwiftUI app while also using a toolbar? Or is the left-alignment now the only supported behavior when a toolbar is present? Thanks in advance for any guidance.
2
0
80
Sep ’25
Reply to Using MetricKit for Hangs on macOS
I have exactly the same problem, and would appreciate some guidance on whether hang diagnostics on macOS actually work. The same as the original poster above, the Simulate MetricKit Payload debug option works fine, and a crash is delivered immediately on restarting the app. No sign of any real hang reports though, even after deliberately causing hangs in the app. It’s my understanding that they should be delivered immediately, but even after waiting several days there’s still nothing. I’ve tried debug, release, and TestFlight builds. Any guidance as to what I could possibly be missing would be great! Thank you.
Topic: App & System Services SubTopic: General Tags:
Sep ’25