Search results for

build disappears

49,241 results found

Post

Replies

Boosts

Views

Activity

Reply to CarPlay Image Issue on iPhone 17?
Thank you for your post. For help with the CarPlay , please post in the Apple Support Community. The Apple Developer Forums are for questions about APIs and features intended specifically for developers. https://discussions.apple.com/welcome If you are using a beta version of iOS (please provide the version and build) with CarPlay , please file bug reports through Feedback Assistant. https://feedbackassistant.apple.com/ Hope this helps and you find the solution quickly. Albert Pascual
  Worldwide Developer Relations.
Topic: Community SubTopic: Apple Developers Tags:
2w
Xcode Code coverage shows zero; even after 245 successful tests
I have a project inside the project structure. I have around 300 unit tests in the project. I see that for some of the subprojects, the coverage numbers show up correctly, but for other subprojects and the main project, the coverage number shows zero, even though the tests are running successfully. The log I get is: Aggregation tool emitted warnings: warning: /Users/ABC/Library/Developer/Xcode/DerivedData/projectABC-hfzmkbdgpiswoxfvvnvhrafaiqyb/Build/ProfileData/A8EEC1FB-1699-4C29-A88C-D3DDA226DBC0/0A416494-A393-4319-AA47-502D72084C9C-43351.profraw: raw profile version mismatch: Profile uses raw profile format version = 8; expected version = 10 PLEASE update this tool to the version in the raw profile, or regenerate the raw profile with the expected version. I only have one Xcode (26.0.1) on my machine. I tried cleaning the derived data, the cleaning project, and rerunning the tests, but it hasn't helped. Please help me get the coverage number back. Thank you.
0
0
57
2w
Background GPU access in iOS 26 for iPhones
We build mobile apps for creators to edit their videos. Post editing the video, the creator has to export the video so that it can be uploaded to Youtube. The export is a time consuming and GPU intensive process. The creator can exit the app due to various reasons like receiving the call, putting the app in background etc. This causes the export to fail :( Keeping this limitation in mind there was an announcement from Apple that with the IOS 26 launch would start to support background GPU access. Here is the official documentation: https://developer.apple.com/documentation/BundleResources/Entitlements/com.apple.developer.background-tasks.continued-processing.gpu When we tried using this feature, we were not able to get it to work on IOS 26. We stumbled upon this ticket(https://developer.apple.com/forums/thread/797538?answerId=854825022#854825022) in the Apple Developer forum, in which possibly an Apple engineer claims it is supported ONLY for iPadOS 26. This is a very big bummer for us. 96% of the us
1
0
170
2w
Reply to Instructions for debugging recent macos kernel versions?
OK, so this is the part I haven't explained as well as I should. You don't actually need to build the kernel, as you already have a development build of the kernel in the KDK. That's what kernel.development.t6020 and kernel.kasan.t6020 installed by the KDK in /System/Library/Kernels are That was it - I built a kext collection using this pre-shipped kernels in the KDK and I was then able to boot this custom kext collection without any issues. I used the kernel.development variant for my test. Upon boot I even verified that it was indeed using the development variant of the kernel: $> sysctl kern.osbuildconfig kern.osbuildconfig: development Thank you very much Kevin for this very valuable help. I have several other things to read and try out (including hopefully building a trivially modified kernel version from xnu sources and booting it), but this initial step had blocked me for several months to even think of these additional experiments. For now, I will just write up these step
Topic: App & System Services SubTopic: Core OS Tags:
2w
Reply to How can I cancel my TestFlight build subscription purchase?
Hello - For the situation you describe, the only possible mechanism for cancelling the subscription purchased in a TestFlight build using a production user account is to have your app call and present the App Store manage subscriptions sheet within the app itself, as documented here. Without that in-app capability, you must wait for the Sandbox subscription to cycle through its expected six (6) renewals before automatically cancelling, as documented here. If the Sandbox subscription purchased through your TestFlight app is not automatically cancelling after 6 renewals as expected, you can provide us with more details (the app name/id, a Sandbox transaction ID, etc.) and we can investigate further to see if the renewals and cancellations are not behaving as expected. Thank you.
2w
Reply to Enterprise account
Is there a better mechanism for this? We have been trying for 6 months to get an Enterprise Account - We have less than 100 employees, but we are contracting for a company that has a few thousand employees, who wants to MDM the app internally. The web pages to sign up keep kicking the application back, and every time we get an email from a person, it is obvious that no one is actually reading the application. The company we are contracting for logistical reasons CAN NOT USE TESTFLIGHT. They absolutely need it to be an enterprise build. Is there a better link than the one provided, because it’s very frustrating.
Topic: Business & Education SubTopic: General Tags:
2w
XIB Files line seperator = none not be respected in iOS 26.1 ONLY
Hey All, Curious if you guys are seeing the same thing for those who are using Interface Builder Files (Xib) i set the line seperator to none and on my app (built against ios 18 on the app store, but doesnt matter if i build it against ios 26, or ios 26.1) when running on iOS 26.1 the line seperator will show even when i set it to None. Funny enough if i just play around with the XIB file and set it to single line and maybe RED color the IB file will show it but when running it its the same old default dark greyish color. BUT if i set the line seperator in CODE either to be none or with single line + red it looks good when running on sim / device. So it seems to be an issue with XIB files not being respected in iOS 26.1 (only) i have submitted a feed back FB20466783, hope this helps any xcode devs / uikit devs. thank you !
1
0
89
2w
"Build input file cannot be found" error occurs in Archive.
Build input file cannot be found error occurs in Archive. When running Archive to generate a build file, the build file generation fails with a Build input file cannot be found: ... error. When debugging, the build runs fine on the actual device without any errors. Comparing and modifying the Build Settings with other projects doesn't fix the issue. Deleting the Swift file and attempting to Archive results in a crash due to the missing file. Even after deleting and adding the Swift file, the same error persists when attempting to Archive. Even after deleting and re-adding the Swift file, the issue persists even after deleting all DerivedData file space on my Mac and restarting Xcode. Can you help me with this issue? It worked fine before the recent macOS update, and I successfully archived and published it to the App Store a few days ago. I believe this issue occurred after updating macOS to 26.0.1. My Xcode version is 26.0.1.
1
0
57
2w
Embed/Do Not Embed & Mach-O type
My Xcode project has the following configuration: 1 iOS app target 1 Xcode framework target (mach-o-type Dynamic Library) 5 static libraries Dependencies: All the static libraries are target dependencies of the framework. The framework is the only target dependency of the iOS app. For the iOS app target, within the General tab > Frameworks, Libraries & Embedded content, I've set the framework as Do not embed So now I have a dynamic framework which won't be copied to the .app bundle in the build output. As per my understanding, this should result in a runtime error, dyld should not be able to find the framework files as they were not embedded in the final .app bundle. But regardless, my app runs without any errors, using all the methods exposed by the framework. What is the correct understanding here? What exactly does Embed/Do not embed mean (apart from excluding the files from .app bundle) When both settings are specified, is there any priority or precedence of one setting over the other?
3
0
138
2w
Reply to Safe areas ignored after navigating a WebView/WebPage back in a NavigationStack
I filed a bug report (FB20465338) but I also want to note some more details here in case this is useful to someone: When navigating back/forward in a WebView or WKWebView, the page suddenly jumps up. The reason appears to be that WebKit automatically adds some padding to the top of the webpage to account for the unsafe nav bar area, but it then forgets to account for this padding when navigating back/forward. The effect is especially pronounced if you swipe back/forward. When swiping you see a static preview of the incoming page, but when you release the swipe, the page suddenly jumps up. As far as I can tell, this has always been an issue, but before iOS 26 it wasn't really a problem because the WebView would usually be flush against a solid nav bar. However, in iOS 26, this bug is problematic because Apple is asking us to flow the web content behind the nav bar; indeed, this is the default behavior of a WebView. There's effectively no good solution in iOS 26 because you basically have two choices: Adopt the
Topic: Safari & Web SubTopic: General Tags:
2w
Reply to Effect liquid glass on app icon
It will only work if you're building the app using Xcode 26. You also need to add the .icon file to your app. I was able to just drag and drop the file next to me assets bundle and it deployed it to my asset bundle in the next build.
Topic: Design SubTopic: General
2w
Reply to codesign stubbornly failing
[quote='860620022, dreisicht, /thread/802464?answerId=860620022#860620022, /profile/dreisicht'] the project is open source anyway. [/quote] Yeah, but if you send me a binary then I don’t have to mess around with build systems (-: [quote='860620022, dreisicht, /thread/802464?answerId=860620022#860620022, /profile/dreisicht'] Here is the zipped .app [/quote] Thank you! This layout is much what I’d expected: mach-o-images.txt Note I’m using the FindMachO.sh script from here. Or, as a hierarchy: hierarchy.txt That is, you have a vast array of code embedded within the Contents/Resources directory. It’s feasible to sign and distribute this. It doesn’t follow the rules in Placing content in a bundle, but this particular structure is tolerable, at least for the moment [1]. So, to sign this you need to generate a list of these code items, sort them in dependency order, and sign each one in that order. This is pretty much the process described in Creating distribution-signed code for macOS. Share and Enjoy — Q
2w
Suddenly being asked for export compliance, even with ITSAppUsesNonExemptEncryption set to NO
Hello everyone, I've encountered an issue with export compliance on App Store Connect that I haven't seen before. In my Info.plist, I have always set the ITSAppUsesNonExemptEncryption key (formerly App Uses Non-Exempt Encryption) to NO. In the past, this was sufficient to bypass the export compliance questions when submitting a build. However, with my most recent submission, I am now being prompted to answer these questions. Nothing has changed in my app's encryption usage. Has there been a recent change in policy or a system-wide issue that would cause this change in behavior? Is anyone else experiencing this? Thank you for your help.
3
0
141
2w
Reply to App Attest – DCAppAttestService.isSupported == false on some devices (~0.23%)
@Engineer Hi Argun, Thanks for the follow-up. Behavior: On affected devices, DCAppAttestService.isSupported appears to be stuck false permanently (not intermittent). Current impact is small (~0.23%), but persistent for those users. Tried: We haven’t yet asked users to restart or delete & reinstall the app. We will do that next and report back. Devices: All affected devices are customer devices; we don’t have any of them on hand. Could you advise what remote logs would be most useful for you? For example: specific Console.app subsystems/keywords to capture (e.g., com.apple.devicecheck, DCAppAttestService), and whether a sysdiagnose from an affected device would help (and which components to focus on). If there are any known system/SEP conditions that can keep isSupported false until a DFU restore, please let us know so we can guide users appropriately. Happy to provide any additional app details you need (Bundle ID / Team ID / build type). Thanks again.
Topic: Privacy & Security SubTopic: General Tags:
2w